gnu: Add r-seuratobject.

* gnu/packages/cran.scm (r-seuratobject): New variable.
This commit is contained in:
Ricardo Wurmus 2021-02-11 00:35:38 +01:00
parent f3d511cc91
commit 213ee65742
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -25857,6 +25857,35 @@ as allowing spectra with different resolutions.")
data to rasters. It speeds up plotting of data with millions of points.") data to rasters. It speeds up plotting of data with millions of points.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public r-seuratobject
(package
(name "r-seuratobject")
(version "4.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "SeuratObject" version))
(sha256
(base32
"03k27z7g76wy7mfja2cpxq183xk0906k9gxb2j6p1zw341gv4gii"))))
(properties `((upstream-name . "SeuratObject")))
(build-system r-build-system)
(propagated-inputs
`(("r-matrix" ,r-matrix)
("r-rcpp" ,r-rcpp)
("r-rcppeigen" ,r-rcppeigen)
("r-rlang" ,r-rlang)
("r-sctransform" ,r-sctransform)))
(home-page "https://satijalab.org/seurat")
(synopsis "Data structures for single cell data")
(description
"This package defines S4 classes for single-cell genomic data and
associated information, such as dimensionality reduction embeddings,
nearest-neighbor graphs, and spatially-resolved coordinates. It provides data
access methods and R-native hooks to ensure the Seurat object is familiar to
other R users.")
(license license:gpl3)))
(define-public r-seurat (define-public r-seurat
(package (package
(name "r-seurat") (name "r-seurat")