me
/
guix
Archived
1
0
Fork 0

gnu: Add variant-tools.

* gnu/packages/bioinformatics.scm (variant-tools): New variable.
master
Ricardo Wurmus 2020-04-28 12:23:13 +02:00
parent 0b2c883828
commit 545e12f40d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 40 additions and 0 deletions

View File

@ -9158,6 +9158,46 @@ samples into a single report. It contains modules for a large number of
common bioinformatics tools.")
(license license:gpl3+)))
(define-public variant-tools
(package
(name "variant-tools")
(version "3.1.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/vatlab/varianttools.git")
;; There is no tag corresponding to version 3.1.2
(commit "813ae4a90d25b69abc8a40f4f70441fe09015249")))
(file-name (git-file-name name version))
(sha256
(base32
"12ibdmksj7icyqhks4xyvd61bygk4pjmxn618kp6vgk1af01y34g"))))
(build-system python-build-system)
(inputs
`(("boost" ,boost)
("c-blosc" ,c-blosc)
("gsl" ,gsl)
("hdf5" ,hdf5)
("hdf5-blosc" ,hdf5-blosc)
("python-cython" ,python-cython)
("zlib" ,zlib)))
(propagated-inputs
`(("python-numpy" ,python-numpy)
("python-pycurl" ,python-pycurl)
("python-pyzmq" ,python-pyzmq)
("python-scipy" ,python-scipy)
("python-tables" ,python-tables)))
(home-page "https://vatlab.github.io/vat-docs/")
(synopsis "Analyze genetic variants from Next-Gen sequencing studies")
(description
"Variant tools is a tool for the manipulation, annotation,
selection, simulation, and analysis of variants in the context of next-gen
sequencing analysis. Unlike some other tools used for next-gen sequencing
analysis, variant tools is project based and provides a whole set of tools to
manipulate and analyze genetic variants.")
(license license:gpl3+)))
(define-public r-chipseq
(package
(name "r-chipseq")