diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-28 18:22:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-28 18:23:23 +0100 |
commit | b8d13e2c0ee082b16f43930385cc34ce09ae4ef3 (patch) | |
tree | 591b4236719bc930873d2e760d79e3ec9fc1d0c6 | |
parent | 9ae37581e095c03b62a6b4231c3c26cca0e8fad6 (diff) |
gnu: Add r-a4preproc.
* gnu/packages/bioconductor.scm (r-a4preproc): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index db691bcd88..f7191d2d4e 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -3010,3 +3010,25 @@ arrays.") "This is the classification package for the automated analysis of Affymetrix arrays.") (license license:gpl3))) + +(define-public r-a4preproc + (package + (name "r-a4preproc") + (version "1.30.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "a4Preproc" version)) + (sha256 + (base32 + "1dd3fqcc7nr2zbi46k0mnqkh42mfxk894ixfpqg7i9np2523p5gp")))) + (properties `((upstream-name . "a4Preproc"))) + (build-system r-build-system) + (propagated-inputs + `(("r-annotationdbi" ,r-annotationdbi))) + (home-page "https://bioconductor.org/packages/a4Preproc/") + (synopsis "Automated Affymetrix array analysis preprocessing package") + (description + "This is a package for the automated analysis of Affymetrix arrays. It +is used for preprocessing the arrays.") + (license license:gpl3))) |