gnu: Add impute.

* gnu/packages/bioinformatics.scm (r-impute): New variable.
master
Ricardo Wurmus 2015-12-23 17:34:27 +01:00
parent c63cef6699
commit c43a011de3
1 changed files with 20 additions and 0 deletions

View File

@ -3866,6 +3866,26 @@ dependencies between GO terms can be implemented and applied.")
genome data packages and support for efficient SNP representation.")
(license license:artistic2.0)))
(define-public r-impute
(package
(name "r-impute")
(version "1.44.0")
(source (origin
(method url-fetch)
(uri (bioconductor-uri "impute" version))
(sha256
(base32
"0y4x5jk7gsf4xn56jrkdcdnxpcfll4h6ivncd7n4snmzixldvmvw"))))
(inputs
`(("gfortran" ,gfortran)))
(build-system r-build-system)
(home-page "http://bioconductor.org/packages/impute")
(synopsis "Imputation for microarray data")
(description
"This package provides a function to impute missing gene expression
microarray data, using nearest neighbor averaging.")
(license license:gpl2+)))
(define-public r-qtl
(package
(name "r-qtl")