mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add samtools-1.9.
* gnu/packages/bioinformatics.scm (samtools-1.9): New variable.
This commit is contained in:
parent
3ede804f6d
commit
da4a38edad
1 changed files with 25 additions and 0 deletions
|
@ -5699,6 +5699,31 @@ (define-public samtools
|
||||||
viewer.")
|
viewer.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public samtools-1.9
|
||||||
|
(package (inherit samtools)
|
||||||
|
(name "samtools")
|
||||||
|
(version "1.9")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "mirror://sourceforge/samtools/samtools/"
|
||||||
|
version "/samtools-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"10ilqbmm7ri8z431sn90lvbjwizd0hhkf9rcqw8j823hf26nhgq8"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet '(begin
|
||||||
|
;; Delete bundled htslib.
|
||||||
|
(delete-file-recursively "htslib-1.9")
|
||||||
|
#t))))
|
||||||
|
(inputs
|
||||||
|
`(("htslib" ,htslib-1.9)
|
||||||
|
("ncurses" ,ncurses)
|
||||||
|
("perl" ,perl)
|
||||||
|
("python" ,python)
|
||||||
|
("zlib" ,zlib)))))
|
||||||
|
|
||||||
(define-public samtools-0.1
|
(define-public samtools-0.1
|
||||||
;; This is the most recent version of the 0.1 line of samtools. The input
|
;; This is the most recent version of the 0.1 line of samtools. The input
|
||||||
;; and output formats differ greatly from that used and produced by samtools
|
;; and output formats differ greatly from that used and produced by samtools
|
||||||
|
|
Loading…
Reference in a new issue