mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add python-pyfaidx.
* gnu/packages/bioinformatics.scm (python-pyfaidx): New variable.
This commit is contained in:
parent
1f41f01c14
commit
80f4db91b1
1 changed files with 22 additions and 0 deletions
|
@ -13556,3 +13556,25 @@ (define-public python-pypairix
|
||||||
"Pypairix is a Python module for fast querying on a pairix-indexed
|
"Pypairix is a Python module for fast querying on a pairix-indexed
|
||||||
bgzipped text file that contains a pair of genomic coordinates per line.")
|
bgzipped text file that contains a pair of genomic coordinates per line.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pyfaidx
|
||||||
|
(package
|
||||||
|
(name "python-pyfaidx")
|
||||||
|
(version "0.5.4.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pyfaidx" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0y5zyjksj1rdglj601xd2bbni5abhdh622y3ck76chyzxz9z4rx8"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-setuptools" ,python-setuptools)
|
||||||
|
("python-six" ,python-six)))
|
||||||
|
(home-page "http://mattshirley.com")
|
||||||
|
(synopsis "Random access to fasta subsequences")
|
||||||
|
(description
|
||||||
|
"This package provides procedures for efficient pythonic random access to
|
||||||
|
fasta subsequences.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue