diff options
author | zimoun <zimon.toutoune@gmail.com> | 2022-03-08 20:06:17 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-03-15 22:55:37 +0100 |
commit | 8a0713aef2a8d709551d51fefff45f4611d05c66 (patch) | |
tree | a112562823a39f4bbe1e9253e882b062f9984d7f /gnu | |
parent | 69af58e9a1e9886e774c598533c6e30241abc8f2 (diff) | |
download | guix-8a0713aef2a8d709551d51fefff45f4611d05c66.tar.gz |
gnu: Add r-diffcyt.
* gnu/packages/bioconductor.scm (r-diffcyt): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 2161a162ab..55d397e5cf 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -3004,6 +3004,44 @@ testing. The package also provides functions for the visualization and exploration of the results.") (license license:gpl3+))) +(define-public r-diffcyt + (package + (name "r-diffcyt") + (version "1.14.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "diffcyt" version)) + (sha256 + (base32 "1yc9mlc0ifb7h6rzskq97bsdq1kwdp5qq9l9mciwyxf6yjkmv5ni")))) + (properties `((upstream-name . "diffcyt"))) + (build-system r-build-system) + (propagated-inputs + (list r-circlize + r-complexheatmap + r-dplyr + r-edger + r-flowcore + r-flowsom + r-limma + r-lme4 + r-magrittr + r-multcomp + r-reshape2 + r-s4vectors + r-summarizedexperiment + r-tidyr)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/lmweber/diffcyt") + (synopsis "Differential discovery in high-dimensional cytometry") + (description + "This package provides statistical methods for differential discovery +analyses in high-dimensional cytometry data (including flow cytometry, mass +cytometry or CyTOF, and oligonucleotide-tagged cytometry), based on a +combination of high-resolution clustering and empirical Bayes moderated tests +adapted from transcriptomics.") + (license license:expat))) + (define-public r-dirichletmultinomial (package (name "r-dirichletmultinomial") |