mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ivar.
* gnu/packages/bioinformatics.scm (ivar): New variable.
This commit is contained in:
parent
ae3e6ba506
commit
f66759e0b2
1 changed files with 26 additions and 0 deletions
|
@ -14272,6 +14272,32 @@ (define-public lofreq
|
|||
usually ignored by other methods or only used for filtering.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ivar
|
||||
(package
|
||||
(name "ivar")
|
||||
(version "1.3.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/andersen-lab/ivar")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"044xa0hm3b8fga64csrdx05ih8w7kwmvcdrdrhkg8j11ml4bi4xv"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("htslib" ,htslib)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)))
|
||||
(home-page "https://andersen-lab.github.io/ivar/html/")
|
||||
(synopsis "Tools for amplicon-based sequencing")
|
||||
(description "iVar is a computational package that contains functions
|
||||
broadly useful for viral amplicon-based sequencing. ")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-pyliftover
|
||||
(package
|
||||
(name "python-pyliftover")
|
||||
|
|
Loading…
Reference in a new issue