mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05:00
gnu: Add bamtools.
* gnu/packages/bioinformatics.scm (bamtools): New variable.
This commit is contained in:
parent
dbf4ed7c91
commit
9794180d5e
1 changed files with 23 additions and 0 deletions
|
@ -46,6 +46,29 @@ (define-module (gnu packages bioinformatics)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (gnu packages zip))
|
#:use-module (gnu packages zip))
|
||||||
|
|
||||||
|
(define-public bamtools
|
||||||
|
(package
|
||||||
|
(name "bamtools")
|
||||||
|
(version "2.3.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/pezmaster31/bamtools/archive/v"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1brry29bw2xr2l9pqn240rkqwayg85b8qq78zk2zs6nlspk4d018"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments `(#:tests? #f)) ;no "check" target
|
||||||
|
(inputs `(("zlib" ,zlib)))
|
||||||
|
(home-page "https://github.com/pezmaster31/bamtools")
|
||||||
|
(synopsis "C++ API and command-line toolkit for working with BAM data")
|
||||||
|
(description
|
||||||
|
"BamTools provides both a C++ API and a command-line toolkit for handling
|
||||||
|
BAM files.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public bedops
|
(define-public bedops
|
||||||
(package
|
(package
|
||||||
(name "bedops")
|
(name "bedops")
|
||||||
|
|
Loading…
Reference in a new issue