summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Oli Agustsson <kjartanoli@outlook.com>2025-06-18 21:00:10 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-22 12:54:10 +0100
commit002d6e4109f43d38d09bfdfc91711fdab31c3d4e (patch)
tree33563daa14914e3648d773f503afa727b5e7e2d2
parent5853163fbf9ce1279c6faf1a9283c4aa7093becb (diff)
gnu: python-velocyto: Run guix style
* gnu/packages/bioinformatics.scm (python-velocyto): Run guix style. Change-Id: Ieda2b56cf13ae519e539ecef286ef63595532a7a Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/bioinformatics.scm46
1 files changed, 20 insertions, 26 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5d39e3729f5..1b0cd9221d6 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -21483,36 +21483,30 @@ deleted.")
(method url-fetch)
(uri (pypi-uri "velocyto" version))
(sha256
- (base32
- "0fgygyzqgrq32dv6a00biq1p1cwi6kbl5iqblxq1kklj6b2mzmhs"))
+ (base32 "0fgygyzqgrq32dv6a00biq1p1cwi6kbl5iqblxq1kklj6b2mzmhs"))
(modules '((guix build utils)))
;; Delete generated C files.
- (snippet
- '(for-each delete-file (find-files "." "\\.c")))))
+ (snippet '(for-each delete-file
+ (find-files "." "\\.c")))))
(build-system pyproject-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- ;; Numba needs a writable dir to cache functions.
- (add-before 'check 'set-numba-cache-dir
- (lambda _
- (setenv "NUMBA_CACHE_DIR" "/tmp"))))))
- (native-inputs
- (list python-joblib
- python-setuptools
- python-wheel))
- (propagated-inputs
- (list python-click
- python-cython
- python-h5py
- python-loompy
- python-matplotlib
- python-numba
- python-numpy
- python-pandas
- python-pysam
- python-scikit-learn
- python-scipy))
+ '(#:phases (modify-phases %standard-phases
+ ;; Numba needs a writable dir to cache functions.
+ (add-before 'check 'set-numba-cache-dir
+ (lambda _
+ (setenv "NUMBA_CACHE_DIR" "/tmp"))))))
+ (native-inputs (list python-joblib python-setuptools python-wheel))
+ (propagated-inputs (list python-click
+ python-cython
+ python-h5py
+ python-loompy
+ python-matplotlib
+ python-numba
+ python-numpy
+ python-pandas
+ python-pysam
+ python-scikit-learn
+ python-scipy))
(home-page "https://github.com/velocyto-team/velocyto.py")
(synopsis "RNA velocity analysis for single cell RNA-seq data")
(description