mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: Add python-biofluff.
* gnu/packages/bioinformatics.scm (python-biofluff): New variable.
This commit is contained in:
parent
0b5088a2a3
commit
931650212a
1 changed files with 48 additions and 0 deletions
|
@ -1251,6 +1251,54 @@ (define-public python-bcbio-gff/biopython-1.73
|
|||
(modify-inputs (package-propagated-inputs python-bcbio-gff)
|
||||
(replace "python-biopython" python-biopython-1.73)))))
|
||||
|
||||
;; Note: the name on PyPi is "biofluff".
|
||||
(define-public python-biofluff
|
||||
(package
|
||||
(name "python-biofluff")
|
||||
(version "3.0.4")
|
||||
;; PyPi tarball does not contain test data.
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/simonvh/fluff")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"12yvhgp72s2ygf3h07rrc852zd6q8swc41hm28mcczpsyprggxyz"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags
|
||||
;; Theses tests require internet access
|
||||
'(list "--ignore=tests/test_mirror.py"
|
||||
"-k" "not test_plots_big")
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'matplotlib-compatibility
|
||||
(lambda _
|
||||
(substitute* "fluff/plot.py"
|
||||
(("beginarrow=False, endarrow=True,") "")))))))
|
||||
(propagated-inputs
|
||||
(list htseq
|
||||
python-matplotlib
|
||||
python-numpy
|
||||
python-palettable
|
||||
python-pybedtools
|
||||
python-pybigwig
|
||||
python-pysam
|
||||
python-scikit-learn
|
||||
python-scipy))
|
||||
(native-inputs
|
||||
(list python-pytest))
|
||||
(home-page "https://github.com/simonvh/fluff/")
|
||||
(synopsis "Analysis and visualization of high-throughput sequencing data")
|
||||
(description
|
||||
"Fluff is a Python package that contains several scripts to produce
|
||||
pretty, publication-quality figures for next-generation sequencing
|
||||
experiments.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-cellbender
|
||||
(package
|
||||
(name "python-cellbender")
|
||||
|
|
Loading…
Reference in a new issue