diff options
author | Roel Janssen <roel@gnu.org> | 2018-04-24 14:11:19 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2018-04-24 14:11:19 +0200 |
commit | 164502d819c610553823fa63567e55b3a323721f (patch) | |
tree | 66bc36eeabf3624ef945e4f979773be20e225059 /gnu | |
parent | fdc3a05d1bcef69223ce8f776c16dd5a51f6baa0 (diff) | |
download | patches-164502d819c610553823fa63567e55b3a323721f.tar patches-164502d819c610553823fa63567e55b3a323721f.tar.gz |
gnu: Add r-marray.
* gnu/packages/bioconductor.scm (r-marray): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 9a00baa89b..b8498b74d7 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -235,3 +235,23 @@ for finding the peaks with bi-directional promoters with summary statistics (summarizePatternInPeaks) and for adding other IDs to annotated peaks or enrichedGO (addGeneIDs).") (license license:gpl2+))) + +(define-public r-marray + (package + (name "r-marray") + (version "1.56.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "marray" version)) + (sha256 + (base32 "14c93i86yc7jn4ax8p4l0z6v9xisw1bv7gzb4a0gbxhxn7mddaic")))) + (build-system r-build-system) + (propagated-inputs + `(("r-biobase" ,r-biobase) + ("r-limma" ,r-limma))) + (home-page "http://bioconductor.org/packages/marray") + (synopsis "Exploratory analysis for two-color spotted microarray data") + (description "This package contains class definitions for two-color spotted +microarray data. It also includes fuctions for data input, diagnostic plots, +normalization and quality checking.") + (license license:lgpl2.0+))) |