diff options
author | nafkhamdc <navid.afkhami@mdc-berlin.de> | 2024-01-10 13:02:35 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-01-10 18:39:13 +0100 |
commit | feab3943c1248be20034bb068169ea836155b364 (patch) | |
tree | b4129ef8ef8776ac52239795523d1d4a80cd41d9 /gnu/packages | |
parent | db75afb4c5e99db75c5f1e83830b2b2ad5c3d4ee (diff) | |
download | guix-feab3943c1248be20034bb068169ea836155b364.tar.gz guix-feab3943c1248be20034bb068169ea836155b364.zip |
gnu: Add r-dsb.
* gnu/packages/bioconductor.scm (r-dsb): New variable.
Change-Id: I34b91da1ae177bd37cfa548c5f6fede453f29bcd
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioconductor.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 8ad4a197d6..326b5b4ab2 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -5639,6 +5639,35 @@ identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix.") (license license:gpl3))) +;; This is a CRAN package, but it depends on r-limma from Bioconductor. +(define-public r-dsb + (package + (name "r-dsb") + (version "1.0.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "dsb" version)) + (sha256 + (base32 "1xzhd4q04c1vql49r6m4zskpx7f5hkl5hmdgr3gsbxb73xfs51v2")))) + (properties `((upstream-name . "dsb"))) + (build-system r-build-system) + (propagated-inputs (list r-limma r-magrittr r-mclust)) + (native-inputs (list r-knitr r-rmarkdown)) + (home-page "https://github.com/niaid/dsb") + (synopsis + "Normalize & denoise droplet single cell protein data (CITE-Seq)") + (description + "R-dsb improves protein expression analysis in droplet-based single-cell +studies. The package specifically addresses noise in raw protein UMI counts +from methods like CITE-seq. It identifies and removes two main sources of +noise—protein-specific noise from unbound antibodies and droplet/cell-specific +noise. The package is applicable to various methods, including CITE-seq, +REAP-seq, ASAP-seq, TEA-seq, and Mission Bioplatform data. Check the vignette +for tutorials on integrating dsb with Seurat and Bioconductor, and using dsb +in Python.") + (license license:cc0))) + (define-public r-dss (package (name "r-dss") |