diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-11-21 10:24:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-09 12:12:46 +0100 |
commit | 5e719988f2718397440719b76161f4217a6ff223 (patch) | |
tree | 07bd5c559510f956786ff5df3030f81e2e955e4a | |
parent | a23310ffc24f077dac9c1bd6c93d57791f583b55 (diff) |
gnu: Add r-sparsematrixstats.
* gnu/packages/bioconductor.scm (r-sparsematrixstats): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 78ad278893..bec37aa1d6 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -8917,6 +8917,34 @@ cell-specific biases, assignment of cell cycle phase, and detection of highly variable and significantly correlated genes.") (license license:gpl3))) +(define-public r-sparsematrixstats + (package + (name "r-sparsematrixstats") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "sparseMatrixStats" version)) + (sha256 + (base32 + "0d1idbda1pzhdam9m0i5rn0c6pl7gwv0v3mcrv4wi5760v9qd5qh")))) + (properties + `((upstream-name . "sparseMatrixStats"))) + (build-system r-build-system) + (propagated-inputs + `(("r-matrix" ,r-matrix) + ("r-matrixgenerics" ,r-matrixgenerics) + ("r-matrixstats" ,r-matrixstats) + ("r-rcpp" ,r-rcpp))) + (native-inputs `(("r-knitr" ,r-knitr))) + (home-page "https://bioconductor.org/packages/sparseMatrixStats/") + (synopsis "Summary statistics for rows and columns of sparse matrices") + (description + "This package provides high performance functions for row and column +operations on sparse matrices. Currently, the optimizations are limited to +data in the column sparse format.") + (license license:expat))) + (define-public r-delayedmatrixstats (package (name "r-delayedmatrixstats") |