gnu: Add python-mudata.

* gnu/packages/bioinformatics.scm (python-mudata): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Navid Afkhami 2023-06-09 16:56:34 +02:00 committed by Ricardo Wurmus
parent c348b1be38
commit 74443c30f3
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3357,6 +3357,32 @@ (define-public python-mofax
with MOFA+ in Python.")
(license license:expat))))
(define-public python-mudata
(package
(name "python-mudata")
(version "0.2.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/scverse/mudata")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"02h0k1q57589r0hdv8nwg1vk7g2ljvn5g66c47fy5gdilbm3gjws"))))
(build-system pyproject-build-system)
(propagated-inputs
(list python-anndata python-h5py python-pandas))
(native-inputs
(list python-flit-core python-numpy python-pytest python-zarr))
(home-page "https://github.com/scverse/mudata")
(synopsis "Python package for multi-omics data analysis")
(description
"Mudata is a Python package for multi-omics data analysis.
It is designed to provide functionality to load, process, and store multimodal
omics data.")
(license license:bsd-3)))
(define-public python-pyega3
(package
(name "python-pyega3")