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:
parent
c31d8adcb0
commit
072f605c12
1 changed files with 29 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2021 Hong Li <hli@mdc-berlin.de>
|
;;; Copyright © 2021 Hong Li <hli@mdc-berlin.de>
|
||||||
;;; Copyright © 2021 Tim Howes <timhowes@lavabit.com>
|
;;; Copyright © 2021 Tim Howes <timhowes@lavabit.com>
|
||||||
;;; Copyright © 2021 Nicolas Vallet <nls.vallet@gmail.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.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -7782,6 +7783,34 @@ includes a function to create a cluster-level minimum spanning tree and data
|
||||||
structures to hold pseudotime inference results.")
|
structures to hold pseudotime inference results.")
|
||||||
(license license:gpl3)))
|
(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
|
(define-public r-slingshot
|
||||||
(package
|
(package
|
||||||
(name "r-slingshot")
|
(name "r-slingshot")
|
||||||
|
|
Reference in a new issue