mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-circe.
* gnu/packages/bioinformatics.scm (python-circe): New variable. Change-Id: Ie250a044da02d2a2c8d2113d2331e37c6b3e46b0
This commit is contained in:
parent
c6db3916fa
commit
49b0066100
1 changed files with 46 additions and 0 deletions
|
@ -4868,6 +4868,52 @@ consensus sequences.")
|
||||||
long-read sequencing data.")
|
long-read sequencing data.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-circe
|
||||||
|
(package
|
||||||
|
(name "python-circe")
|
||||||
|
(version "0.3.8")
|
||||||
|
(home-page "https://github.com/cantinilab/circe")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"050zwg6qvd6sa4xd41sn4gigwmyfn0v6r93j5kvpbxklq4144q15"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-anndata
|
||||||
|
python-dask
|
||||||
|
python-distributed
|
||||||
|
python-joblib
|
||||||
|
python-numpy
|
||||||
|
python-pandas
|
||||||
|
python-rich
|
||||||
|
python-scanpy
|
||||||
|
python-scikit-learn))
|
||||||
|
(inputs
|
||||||
|
(list lapack openblas))
|
||||||
|
(native-inputs
|
||||||
|
(list python-cython
|
||||||
|
python-setuptools
|
||||||
|
python-pybiomart
|
||||||
|
python-wheel))
|
||||||
|
(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"))))))
|
||||||
|
(synopsis "Cis-regulatory interactions between chromatin regions")
|
||||||
|
(description "Circe is a Python package for inferring co-accessibility
|
||||||
|
networks from single-cell ATAC-seq data, using skggm for the graphical lasso
|
||||||
|
and python-scanpy for data processing.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public qtltools
|
(define-public qtltools
|
||||||
(package
|
(package
|
||||||
(name "qtltools")
|
(name "qtltools")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue