[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add r-anndata.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add r-anndata. |
Date: |
Mon, 03 Jan 2022 09:02:11 -0500 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 98d93f9769 gnu: Add r-anndata.
98d93f9769 is described below
commit 98d93f97696b503f5e0e414295ddaf4013df1d56
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 3 14:55:41 2022 +0100
gnu: Add r-anndata.
* gnu/packages/cran.scm (r-anndata): New variable.
---
gnu/packages/cran.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index bcfe9a2848..b9b1171496 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22513,6 +22513,29 @@ They are based on clustering, the statistical concept
of data depth,
statistical shape analysis and archetypal analysis.")
(license license:gpl2+)))
+(define-public r-anndata
+ (package
+ (name "r-anndata")
+ (version "0.7.5.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "anndata" version))
+ (sha256
+ (base32 "115v7gdilayd18hd519vzkixp2s6rvvrd1inc1i6amn7d0spy8r1"))))
+ (properties `((upstream-name . "anndata")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-assertthat r-matrix r-r6 r-reticulate))
+ (native-inputs (list r-knitr))
+ (home-page "https://anndata.dynverse.org";)
+ (synopsis "Anndata for R")
+ (description
+ "This package provides a reticulate wrapper for the Python package
+@code{anndata}. It provides a scalable way of keeping track of data and
+learned annotations. It is used to read from and write to the h5ad file
+format.")
+ (license license:expat)))
+
(define-public r-adamethods
(package
(name "r-adamethods")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add r-anndata.,
guix-commits <=