[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
235/377: gnu: Add python-pybbi.
From: |
guix-commits |
Subject: |
235/377: gnu: Add python-pybbi. |
Date: |
Thu, 2 Sep 2021 17:55:42 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit e85b35070caa41926b52625ef0fa828d6acc8271
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Aug 27 14:28:28 2021 +0200
gnu: Add python-pybbi.
* gnu/packages/bioinformatics.scm (python-pybbi): New variable.
---
gnu/packages/bioinformatics.scm | 47 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0979a86..5d4b4e1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14795,6 +14795,53 @@ instruments, or Pacific Biosciences RSII or Sequel
sequencers.")
data from @file{.hic} files. This package provides Python bindings.")
(license license:expat)))
+(define-public python-pybbi
+ (package
+ (name "python-pybbi")
+ (version "0.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pybbi" version))
+ (sha256
+ (base32
+ "1hvy2f28i2b41l1pq15vciqbj538n0lichp8yr6413jmgg06xdsk"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #false ; tests require network access
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'set-cc
+ (lambda _ (setenv "CC" "gcc")))
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (copy-recursively "tests" "/tmp/tests")
+ (with-directory-excursion "/tmp/tests"
+ (invoke "python" "-m" "pytest" "-v"))))))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("python-pkgconfig" ,python-pkgconfig)
+ ("python-pytest" ,python-pytest)))
+ (inputs
+ `(("libpng" ,libpng)
+ ("openssl" ,openssl)
+ ("zlib" ,zlib)))
+ (propagated-inputs
+ `(("python-cython" ,python-cython)
+ ("python-numpy" ,python-numpy)
+ ("python-pandas" ,python-pandas)
+ ("python-six" ,python-six)))
+ (home-page "https://github.com/nvictus/pybbi")
+ (synopsis "Python bindings to UCSC Big Binary file library")
+ (description
+ "This package provides Python bindings to the UCSC Big
+Binary (bigWig/bigBed) file library. This provides read-level access to local
+and remote bigWig and bigBed files but no write capabilitites. The main
+feature is fast retrieval of range queries into numpy arrays.")
+ (license license:expat)))
+
(define-public r-ascat
(package
(name "r-ascat")
- 193/377: gnu: bootloader: Support multiple targets., (continued)
- 193/377: gnu: bootloader: Support multiple targets., guix-commits, 2021/09/02
- 199/377: gnu: Add python-pyspnego., guix-commits, 2021/09/02
- 200/377: gnu: python-pytest-6: Update to 6.2.4 and propagate iniconfig., guix-commits, 2021/09/02
- 202/377: gnu: python-rope: Update to 0.19.0 and remove python2-rope., guix-commits, 2021/09/02
- 205/377: gnu: python-pytest-forked: Update to 1.3.0 and run test suite., guix-commits, 2021/09/02
- 204/377: gnu: python-py-next: Update to 1.10.0., guix-commits, 2021/09/02
- 211/377: gnu: ansible: Update to 4.4.0., guix-commits, 2021/09/02
- 209/377: gnu: Add python-pytest-xdist-next., guix-commits, 2021/09/02
- 207/377: gnu: python-pytest-mock: Update to 3.6.1 and run test suite., guix-commits, 2021/09/02
- 214/377: services: base: Honor file-system-create-mount-point? at all times., guix-commits, 2021/09/02
- 235/377: gnu: Add python-pybbi.,
guix-commits <=
- 228/377: build: Build (gnu packages rocm)., guix-commits, 2021/09/02
- 220/377: gnu: mu: Update to 1.6.5., guix-commits, 2021/09/02
- 217/377: gnu: rofi: Update to 1.7.0., guix-commits, 2021/09/02
- 226/377: bootloader: Report location of the deprecated 'target' field., guix-commits, 2021/09/02
- 222/377: gnu: guile-websocket: Update to 0.1-d17878f6., guix-commits, 2021/09/02
- 213/377: gnu: python-pytest-django: Update to 4.4.0., guix-commits, 2021/09/02
- 224/377: gnu: extra-cmake-modules: Avoid dependency on qtbase when on armhf., guix-commits, 2021/09/02
- 225/377: build: Build (gnu system setuid)., guix-commits, 2021/09/02
- 236/377: gnu: Add python-svgutils., guix-commits, 2021/09/02
- 245/377: gnu: python-scikit-learn: Update to 0.24.2., guix-commits, 2021/09/02