mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: Add bedtools-2.18.
* gnu/packages/bioinformatics.scm (bedtools-2.18): New variable.
This commit is contained in:
parent
34c553b07e
commit
9a8f309cf1
1 changed files with 15 additions and 0 deletions
|
@ -258,6 +258,21 @@ (define-public bedtools
|
|||
BED, GFF/GTF, VCF.")
|
||||
(license license:gpl2)))
|
||||
|
||||
;; Later releases of bedtools produce files with more columns than
|
||||
;; what Ribotaper expects.
|
||||
(define-public bedtools-2.18
|
||||
(package (inherit bedtools)
|
||||
(name "bedtools")
|
||||
(version "2.18.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/arq5x/bedtools2/"
|
||||
"archive/v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"05vrnr8yp7swfagshzpgqmzk1blnwnq8pq5pckzi1m26w98d63vf"))))))
|
||||
|
||||
(define-public bioawk
|
||||
(package
|
||||
(name "bioawk")
|
||||
|
|
Loading…
Reference in a new issue