mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add perl-bio-db-hts.
* gnu/packages/bioinformatics.scm (perl-bio-db-hts): New variable.
This commit is contained in:
parent
317da145c9
commit
ce7b202f9b
1 changed files with 25 additions and 0 deletions
|
@ -1154,6 +1154,31 @@ (define-public bioperl-minimal
|
|||
provide a coordinated and extensible framework to do computational biology.")
|
||||
(license license:perl-license))))
|
||||
|
||||
(define-public perl-bio-db-hts
|
||||
(package
|
||||
(name "perl-bio-db-hts")
|
||||
(version "3.01")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/A/AV/AVULLO/Bio-DB-HTS-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0hjg0igfkpvh27zdkdr6pa7cqm9n6r7cwz0np74cl4wmawgvr9hj"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-module-build" ,perl-module-build)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs
|
||||
`(("bioperl-minimal" ,bioperl-minimal)
|
||||
("htslib" ,htslib-1.9)))
|
||||
(home-page "https://metacpan.org/release/Bio-DB-HTS")
|
||||
(synopsis "Perl interface to HTS library for DNA sequencing")
|
||||
(description "This is a Perl interface to the HTS library for DNA
|
||||
sequencing.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-biopython
|
||||
(package
|
||||
(name "python-biopython")
|
||||
|
|
Loading…
Reference in a new issue