summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-sparsematrixstats/package.py
blob: 4b513cd2f411201aeb92cf867aaad6428650185e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class RSparsematrixstats(RPackage):
    """Summary Statistics for Rows and Columns of Sparse Matrices.

    High performance functions for row and column operations on sparse
    matrices.  For example: col / rowMeans2, col / rowMedians, col / rowVars
    etc. Currently, the optimizations are limited to data in the column sparse
    format.  This package is inspired by the matrixStats package by Henrik
    Bengtsson."""

    bioc = "sparseMatrixStats"

    version("1.12.0", commit="054bf939cd7220deaf8e768ff7029d0d38483c91")
    version("1.10.0", commit="75d85ba2c9c4c36887fef1a007883167aa85bd94")
    version("1.8.0", commit="4f1e2213e5b0d6b3d817c2c9129b7566288916f6")
    version("1.6.0", commit="78627a842790af42b6634893087b2bb1f4ac0392")
    version("1.2.1", commit="9726f3d5e0f03b50c332d85d5e4c339c18b0494c")

    depends_on("r-matrixgenerics", type=("build", "run"))
    depends_on("r-matrixgenerics@1.5.3:", type=("build", "run"), when="@1.6.0:")
    depends_on("r-rcpp", type=("build", "run"))
    depends_on("r-matrix", type=("build", "run"))
    depends_on("r-matrixstats", type=("build", "run"))
    depends_on("r-matrixstats@0.60.0:", type=("build", "run"), when="@1.6.0:")