gnu: Add r-snpstats.

* gnu/packages/bioinformatics.scm (r-snpstats): New variable.
This commit is contained in:
Ricardo Wurmus 2017-11-07 15:43:53 +01:00
parent e2b927993e
commit dd5fc8b78e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -9827,6 +9827,33 @@ (define-public r-gqtlbase
and more.")
(license license:artistic2.0)))
(define-public r-snpstats
(package
(name "r-snpstats")
(version "1.28.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "snpStats" version))
(sha256
(base32
"1x9qwynh2hwl24vq02naf4mchpch7xi2pkdrlgw896k28kx0lvir"))))
(properties `((upstream-name . "snpStats")))
(build-system r-build-system)
(inputs `(("zlib" ,zlib)))
(propagated-inputs
`(("r-biocgenerics" ,r-biocgenerics)
("r-matrix" ,r-matrix)
("r-survival" ,r-survival)
("r-zlibbioc" ,r-zlibbioc)))
(home-page "https://bioconductor.org/packages/snpStats")
(synopsis "Methods for SNP association studies")
(description
"This package provides classes and statistical methods for large
@dfn{single-nucleotide polymorphism} (SNP) association studies. This extends
the earlier snpMatrix package, allowing for uncertainty in genotypes.")
(license license:gpl3)))
(define-public r-qvalue
(package
(name "r-qvalue")