[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
41/54: gnu: python-hicexplorer: Make compatible with latest scipy.
|
From: |
guix-commits |
|
Subject: |
41/54: gnu: python-hicexplorer: Make compatible with latest scipy. |
|
Date: |
Thu, 11 Jan 2024 17:36:16 -0500 (EST) |
rekado pushed a commit to branch wip-python-science
in repository guix.
commit 1bbbd048c32fd8359e8d38bf585bd962209703a0
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Jan 10 14:39:12 2024 +0100
gnu: python-hicexplorer: Make compatible with latest scipy.
* gnu/packages/bioinformatics.scm (python-hicexplorer)[arguments]: Add
'scipy-compatibility phase.
Change-Id: I31e9058b7fd4ff9245837d5f1cd145b569ec35ad
---
gnu/packages/bioinformatics.scm | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 7aed014a52..1df76d4d55 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17088,7 +17088,18 @@ the HiCExplorer and pyGenomeTracks packages.")
"general/test_hicHyperoptDetectLoopsHiCCUPS.py"
"general/test_hicAggregateContacts.py"
"general/test_hicInterIntraTAD.py")
- (("^memory =.*") "memory = 1\n"))))))))
+ (("^memory =.*") "memory = 1\n")))))
+ ;; This is fixed in version 3.7.3, but we cannot upgrade yet as we
+ ;; don't have Pandas 2.
+ (add-after 'unpack 'scipy-compatibility
+ (lambda _
+ (substitute* "hicexplorer/hicAverageRegions.py"
+ (("from scipy.sparse import csr_matrix, save_npz, lil_matrix")
+ "from scipy.sparse import csr_matrix, save_npz, lil_matrix,
coo_matrix")
+ (("summed_matrix = np.array\\(summed_matrix\\)")
+ "summed_matrix = coo_matrix(summed_matrix)")
+ (("data = summed_matrix\\[np.nonzero\\(summed_matrix\\)\\]")
+ "data =
summed_matrix.toarray()[np.nonzero(summed_matrix)]")))))))
(propagated-inputs
(list python-biopython
python-cleanlab-1
- 21/54: gnu: python-seaborn: Update to 0.13.1., (continued)
- 21/54: gnu: python-seaborn: Update to 0.13.1., guix-commits, 2024/01/11
- 26/54: gnu: python-captum: Update to 0.7.0., guix-commits, 2024/01/11
- 07/54: gnu: python-scipy: Update to 1.11.4., guix-commits, 2024/01/11
- 11/54: gnu: python-scikit-image: Update to 0.22.0., guix-commits, 2024/01/11
- 13/54: gnu: python-matplotx: Disable test_png test., guix-commits, 2024/01/11
- 17/54: gnu: Add python-cppy., guix-commits, 2024/01/11
- 19/54: gnu: Add python-contourpy., guix-commits, 2024/01/11
- 37/54: gnu: scvelo: Make compatible with latest matplotlib., guix-commits, 2024/01/11
- 28/54: gnu: python-pyani: Disable tests., guix-commits, 2024/01/11
- 50/54: gnu: python-mysql-connector-python: Defuse time bomb., guix-commits, 2024/01/11
- 41/54: gnu: python-hicexplorer: Make compatible with latest scipy.,
guix-commits <=
- 43/54: gnu: python-metpy: Update to 1.6.0., guix-commits, 2024/01/11
- 47/54: gnu: python-pandas: Update to 1.5.3., guix-commits, 2024/01/11
- 31/54: gnu: cnvkit: Update to 0.9.10., guix-commits, 2024/01/11
- 54/54: gnu: python-geopandas: Update to 0.14.2., guix-commits, 2024/01/11
- 30/54: gnu: python-reportlab: Update to 4.0.8., guix-commits, 2024/01/11
- 53/54: gnu: python-dask: Propagate click., guix-commits, 2024/01/11
- 33/54: gnu: python-cooler: Update to 0.9.1., guix-commits, 2024/01/11
- 15/54: gnu: python-pynndescent: Update to 0.5.11., guix-commits, 2024/01/11
- 29/54: gnu: python-pegasusio: Disable tests., guix-commits, 2024/01/11
- 27/54: gnu: tadbit: Add missing input., guix-commits, 2024/01/11