gnu: Add python-fastalite.

* gnu/packages/bioinformatics.scm (python-fastalite, python2-fastalite):
New variables.
This commit is contained in:
Ben Woodcroft 2018-07-29 21:57:51 +10:00
parent 10d5315361
commit 5d5a02dd4c
No known key found for this signature in database
GPG Key ID: 2A6AD9F4AAC20DF6
1 changed files with 23 additions and 0 deletions

View File

@ -767,6 +767,29 @@ into separate processes; and more.")
(define-public python2-biopython (define-public python2-biopython
(package-with-python2 python-biopython)) (package-with-python2 python-biopython))
(define-public python-fastalite
(package
(name "python-fastalite")
(version "0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "fastalite" version))
(sha256
(base32
"1qli6pxp77i9xn2wfciq2zaxhl82bdxb33cpzqzj1z25yd036wqj"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ; Test data is not distributed.
(home-page "https://github.com/nhoffman/fastalite")
(synopsis "Simplest possible FASTA parser")
(description "This library implements a FASTA and a FASTQ parser without
relying on a complex dependency tree.")
(license license:expat)))
(define-public python2-fastalite
(package-with-python2 python-fastalite))
(define-public bpp-core (define-public bpp-core
;; The last release was in 2014 and the recommended way to install from source ;; The last release was in 2014 and the recommended way to install from source
;; is to clone the git repository, so we do this. ;; is to clone the git repository, so we do this.