diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2019-08-28 00:38:46 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2019-08-29 11:38:12 +0200 |
| commit | 711cec9d154786e995ba104bceb39a2564d5c72f (patch) | |
| tree | cfe2803d6e35abda8e6e4d7f119546595d29c50a /gnu | |
| parent | ad553ec4b12f24a0bbd25b547bac885ddb84776a (diff) | |
gnu: Add r-harmony.
* gnu/packages/cran.scm (r-harmony): New variable.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ae8e9c5a476..458b141f912 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm | |||
| @@ -15097,3 +15097,42 @@ datasets, developed and maintained by the Macosko lab. It relies on | |||
| 15097 | integrative non-negative matrix factorization to identify shared and | 15097 | integrative non-negative matrix factorization to identify shared and |
| 15098 | dataset-specific factors.") | 15098 | dataset-specific factors.") |
| 15099 | (license license:gpl3))) | 15099 | (license license:gpl3))) |
| 15100 | |||
| 15101 | (define-public r-harmony | ||
| 15102 | ;; There are no tagged commits | ||
| 15103 | (let ((commit "4d1653870d4dd70fff1807c182882db1fbf9af5a") | ||
| 15104 | (revision "1")) | ||
| 15105 | (package | ||
| 15106 | (name "r-harmony") | ||
| 15107 | (version (git-version "1.0" revision commit)) | ||
| 15108 | (source | ||
| 15109 | (origin | ||
| 15110 | (method git-fetch) | ||
| 15111 | (uri (git-reference | ||
| 15112 | (url "https://github.com/immunogenomics/harmony") | ||
| 15113 | (commit commit))) | ||
| 15114 | (file-name (git-file-name name version)) | ||
| 15115 | (sha256 | ||
| 15116 | (base32 | ||
| 15117 | "1gasdldr4aalr9h2q9kmm3y4i7azkgnhdn4bmvsszs7lg9xacw85")))) | ||
| 15118 | (build-system r-build-system) | ||
| 15119 | (propagated-inputs | ||
| 15120 | `(("r-cowplot" ,r-cowplot) | ||
| 15121 | ("r-dplyr" ,r-dplyr) | ||
| 15122 | ("r-ggplot2" ,r-ggplot2) | ||
| 15123 | ("r-irlba" ,r-irlba) | ||
| 15124 | ("r-matrix" ,r-matrix) | ||
| 15125 | ("r-rcpp" ,r-rcpp) | ||
| 15126 | ("r-rcpparmadillo" ,r-rcpparmadillo) | ||
| 15127 | ("r-rcppprogress" ,r-rcppprogress) | ||
| 15128 | ("r-rlang" ,r-rlang) | ||
| 15129 | ("r-tibble" ,r-tibble) | ||
| 15130 | ("r-tidyr" ,r-tidyr))) | ||
| 15131 | (home-page "https://github.com/immunogenomics/harmony") | ||
| 15132 | (synopsis "Integration of single cell sequencing data") | ||
| 15133 | (description | ||
| 15134 | "This package provides an implementation of the Harmony algorithm for | ||
| 15135 | single cell integration, described in Korsunsky et al | ||
| 15136 | @url{doi.org/10.1101/461954}. The package includes a standalone Harmony | ||
| 15137 | function and interfaces to external frameworks.") | ||
| 15138 | (license license:gpl3)))) | ||
