diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-05-08 11:37:01 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-05-08 11:53:29 +0200 |
commit | c2a2d40e6d9f0cac3ae9496a6a1b5fb15346b947 (patch) | |
tree | e85129bfd7c85f28b19acb1d6a4da89d1dee9e69 | |
parent | 12c529c071762dc80ef0439a1c94422cfa26af57 (diff) | |
download | guix-c2a2d40e6d9f0cac3ae9496a6a1b5fb15346b947.tar.gz guix-c2a2d40e6d9f0cac3ae9496a6a1b5fb15346b947.zip |
gnu: Add r-seurat5object.
* gnu/packages/cran.scm (r-seurat5object): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3c7236581b..53cab3adad 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -34316,6 +34316,37 @@ access methods and R-native hooks to ensure the Seurat object is familiar to other R users.") (license license:gpl3))) +;; This is for r-seurat5 +(define-public r-seurat5object + (let ((commit "185884ae527d6ce71cb51d2e84a630030e8439a3") + (revision "1")) + (package + (inherit r-seuratobject) + (name "r-seurat5object") + (version (git-version "4.9.9.9084" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mojaveazure/seurat-object") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1nbai31gjsgiaazb4jhpqw8h04nm8xd131fng7zcw11kspj54n9z")) + ;; This file triggers renv, which we don't want to use. + (snippet '(delete-file ".Rprofile")))) + (propagated-inputs (list r-future + r-future-apply + r-generics + r-lifecycle + r-matrix + r-progressr + r-rcpp + r-rcppeigen + r-rlang + r-sp + r-spam))))) + (define-public r-seurat (package (name "r-seurat") |