GNU bug report logs -
#71670
[PATCH 0/2] bioinformatics: Add python-muon
Previous Next
Reported by: guix <at> mawumag.com
Date: Thu, 20 Jun 2024 08:46:02 UTC
Severity: normal
Tags: patch
Done: Ricardo Wurmus <rekado <at> elephly.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 71670 in the body.
You can then email your comments to 71670 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#71670
; Package
guix-patches
.
(Thu, 20 Jun 2024 08:46:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
guix <at> mawumag.com
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 20 Jun 2024 08:46:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
I am adding the packages python-muon and python-mofapy2 (as a muon
dependency).
Muon is a multi-omics analysis framework and is part of the scverse.
I had to modify a couple of tests slightly (explained in the comments).
Marco Baggio (2):
bioinformatics: Add python-mofapy2
bioinformatics: Add python-muon
gnu/packages/bioinformatics.scm | 93 +++++++++++++++++++++++++++++++++
1 file changed, 93 insertions(+)
base-commit: e32e3d0a03dc17c4c54a91aad053c9036998b601
--
2.45.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#71670
; Package
guix-patches
.
(Thu, 20 Jun 2024 08:51:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 71670 <at> debbugs.gnu.org (full text, mbox):
Change-Id: Ide92878258511b3daf4e56d5faa94d190fdee62f
---
gnu/packages/bioinformatics.scm | 38 +++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index cdda029809..37fa1727cb 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4443,6 +4443,44 @@ (define-public python-mudata
omics data.")
(license license:bsd-3)))
+(define-public python-mofapy2
+ (package
+ (name "python-mofapy2")
+ (version "0.7.1")
+ (source
+ (origin
+ ;; The tarball from PyPi doesn't include tests.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bioFAM/mofapy2")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0ahhnqk6gjrhyq286mrd5n7mxcv8l6040ffsawbjx9maqx8wbam0"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'disable-failing-tests
+ (lambda _
+ ;; cupy is an optional dependency, which
+ ;; itself has nonfree dependencies (CUDA)
+ (delete-file "mofapy2/notebooks/test_cupy.py"))))))
+ (propagated-inputs (list python-anndata
+ python-pandas
+ python-scipy
+ python-numpy
+ python-scikit-learn
+ python-h5py))
+ (native-inputs (list python-poetry-core
+ python-pytest))
+ (home-page "https:/biofam.github.io/MOFA2/")
+ (synopsis "Multi-omics factor analysis")
+ (description "Multi-omics factor analysis.")
+ (license license:lgpl3)))
+
(define-public python-pyega3
(deprecated-package "python-pyega3" python-ega-download-client))
--
2.45.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#71670
; Package
guix-patches
.
(Thu, 20 Jun 2024 08:52:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 71670 <at> debbugs.gnu.org (full text, mbox):
Change-Id: I21431b089d1f404828b78d79124d96e7d36d5a2d
---
gnu/packages/bioinformatics.scm | 55 +++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 37fa1727cb..b3fe67cae7 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4481,6 +4481,61 @@ (define-public python-mofapy2
(description "Multi-omics factor analysis.")
(license license:lgpl3)))
+(define-public python-muon
+ (package
+ (name "python-muon")
+ (version "0.1.6")
+ (source
+ (origin
+ ;; The tarball from PyPi doesn't include tests.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/scverse/muon")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1kd3flgy41dc0sc71wfnirh8vk1psxgyjxkbx1zx9yskkh6anbgw"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ ;; Numba needs a writable dir to cache functions.
+ (add-before 'build 'set-numba-cache-dir
+ (lambda _
+ (setenv "NUMBA_CACHE_DIR" "/tmp")))
+ (add-before 'check 'disable-failing-tests
+ (lambda _
+ ;; even providing a random seed, scipy.sparse.rand
+ ;; produces inconsistent results across scipy versions
+ (substitute* "tests/test_atac_preproc.py"
+ (("^class TestTFIDFSparse.*" m)
+ (string-append "@unittest.skip(reason=\"\")\n" m))))))))
+ (propagated-inputs (list python-anndata
+ python-h5py
+ python-matplotlib
+ python-mofapy2
+ python-mudata
+ python-numba
+ python-numpy
+ python-pandas
+ python-protobuf
+ python-pybedtools
+ python-pysam
+ python-scanpy
+ python-scikit-learn
+ python-seaborn
+ python-tqdm
+ python-umap-learn))
+ (native-inputs (list python-flit-core-bootstrap
+ python-pytest
+ python-pytest-flake8))
+ (home-page "https://github.com/scverse/muon")
+ (synopsis "Multimodal omics analysis framework")
+ (description "Multimodal omics analysis framework.")
+ (license license:bsd-3)))
+
(define-public python-pyega3
(deprecated-package "python-pyega3" python-ega-download-client))
--
2.45.1
Reply sent
to
Ricardo Wurmus <rekado <at> elephly.net>
:
You have taken responsibility.
(Mon, 01 Jul 2024 14:22:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
guix <at> mawumag.com
:
bug acknowledged by developer.
(Mon, 01 Jul 2024 14:22:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 71670-done <at> debbugs.gnu.org (full text, mbox):
guix <at> mawumag.com writes:
> +(define-public python-muon
Thank you for the patches! I've applied them with minor changes.
(Commit ddce6b2303dc6064ca50b4fbd53389e50faa115d.)
--
Ricardo
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 30 Jul 2024 11:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 226 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.