summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-sparsematrixstats/package.py
blob: ab20069edbfbe3b5ef1c771bf0d49f2274b43063 (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
# Copyright 2013-2022 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 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.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:')