diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-11-24 15:08:22 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-28 22:43:16 +0100 |
commit | c4708783eec4cf0d312b6401949b15e76407b724 (patch) | |
tree | fb578cbadbac4be52f10b39efdb0bf1e34617f2d /gnu | |
parent | c9a6671490c4f415cdd17691fc6585baff892db7 (diff) | |
download | patches-c4708783eec4cf0d312b6401949b15e76407b724.tar patches-c4708783eec4cf0d312b6401949b15e76407b724.tar.gz |
gnu: Add r-preprocesscore.
* gnu/packages/statistics.scm (r-preprocesscore): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index c48620895c..d2ca35ef6b 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -3518,6 +3518,27 @@ framework, with additional code inspection and report generation tools.") hierarchical clustering dendrograms.") (license license:gpl2+))) +(define-public r-preprocesscore + (package + (name "r-preprocesscore") + (version "1.36.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "preprocessCore" version)) + (sha256 + (base32 + "1n8y12q7145f385gm2k3c6y3vwvin7jlb47la4mnl7mar6pq9kmp")))) + (properties + `((upstream-name . "preprocessCore"))) + (build-system r-build-system) + (home-page "https://github.com/bmbolstad/preprocessCore") + (synopsis "Collection of pre-processing functions") + (description + "This package provides a library of core pre-processing and normalization +routines.") + (license license:lgpl2.0+))) + (define-public r-kernsmooth (package (name "r-kernsmooth") |