summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorzimoun <zimon.toutoune@gmail.com>2022-03-08 20:06:17 +0100
committerRicardo Wurmus <rekado@elephly.net>2022-03-15 22:55:37 +0100
commit8a0713aef2a8d709551d51fefff45f4611d05c66 (patch)
treea112562823a39f4bbe1e9253e882b062f9984d7f /gnu/packages
parent69af58e9a1e9886e774c598533c6e30241abc8f2 (diff)
gnu: Add r-diffcyt.
* gnu/packages/bioconductor.scm (r-diffcyt): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/bioconductor.scm38
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 2161a162ab2..55d397e5cf0 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
3004exploration of the results.") 3004exploration of the results.")
3005 (license license:gpl3+))) 3005 (license license:gpl3+)))
3006 3006
3007(define-public r-diffcyt
3008 (package
3009 (name "r-diffcyt")
3010 (version "1.14.0")
3011 (source
3012 (origin
3013 (method url-fetch)
3014 (uri (bioconductor-uri "diffcyt" version))
3015 (sha256
3016 (base32 "1yc9mlc0ifb7h6rzskq97bsdq1kwdp5qq9l9mciwyxf6yjkmv5ni"))))
3017 (properties `((upstream-name . "diffcyt")))
3018 (build-system r-build-system)
3019 (propagated-inputs
3020 (list r-circlize
3021 r-complexheatmap
3022 r-dplyr
3023 r-edger
3024 r-flowcore
3025 r-flowsom
3026 r-limma
3027 r-lme4
3028 r-magrittr
3029 r-multcomp
3030 r-reshape2
3031 r-s4vectors
3032 r-summarizedexperiment
3033 r-tidyr))
3034 (native-inputs (list r-knitr))
3035 (home-page "https://github.com/lmweber/diffcyt")
3036 (synopsis "Differential discovery in high-dimensional cytometry")
3037 (description
3038 "This package provides statistical methods for differential discovery
3039analyses in high-dimensional cytometry data (including flow cytometry, mass
3040cytometry or CyTOF, and oligonucleotide-tagged cytometry), based on a
3041combination of high-resolution clustering and empirical Bayes moderated tests
3042adapted from transcriptomics.")
3043 (license license:expat)))
3044
3007(define-public r-dirichletmultinomial 3045(define-public r-dirichletmultinomial
3008 (package 3046 (package
3009 (name "r-dirichletmultinomial") 3047 (name "r-dirichletmultinomial")