gnu: Add r-scds.

* gnu/packages/bioconductor.scm (r-scds): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Navid Afkhami 2023-01-20 09:58:00 +01:00 committed by Ricardo Wurmus
parent c31d8adcb0
commit 072f605c12
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -12,6 +12,7 @@
;;; Copyright © 2021 Hong Li <hli@mdc-berlin.de>
;;; Copyright © 2021 Tim Howes <timhowes@lavabit.com>
;;; Copyright © 2021 Nicolas Vallet <nls.vallet@gmail.com>
;;; Copyright © 2023 Navid Afkhami <Navid.Afkhami@mdc-berlin.de>
;;;
;;; This file is part of GNU Guix.
;;;
@ -7782,6 +7783,34 @@ (define-public r-trajectoryutils
structures to hold pseudotime inference results.")
(license license:gpl3)))
(define-public r-scds
(package
(name "r-scds")
(version "1.14.0")
(source (origin
(method url-fetch)
(uri (bioconductor-uri "scds" version))
(sha256
(base32
"0zdf9yf5s0l8ma7d8yhi7bjd964yj84f5h6aq2p0sypjlnc515hd"))))
(properties `((upstream-name . "scds")))
(build-system r-build-system)
(propagated-inputs (list r-dplyr
r-matrix
r-proc
r-s4vectors
r-singlecellexperiment
r-summarizedexperiment
r-xgboost))
(native-inputs (list r-knitr))
(home-page "https://bioconductor.org/packages/scds")
(synopsis "In-silico doublet annotation for single cell RNA sequencing data")
(description
"This is an R package for doublet annotation of single cell RNA
sequencing data. @code{scds} provides methods to annotate doublets in
scRNA-seq data computationally.")
(license license:expat)))
(define-public r-slingshot
(package
(name "r-slingshot")