diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-18 15:24:27 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-18 15:29:07 +0100 |
commit | 21afe920f13d8bdebb25759be0b3decb48e4a9d2 (patch) | |
tree | d59df9c3f752cbaaed772647c90abefbf4a8f7a3 | |
parent | f388834e1152e18463d64d9b3d2499c4f939bdda (diff) | |
download | guix-21afe920f13d8bdebb25759be0b3decb48e4a9d2.tar.gz |
gnu: Add r-ebarrays.
* gnu/packages/bioconductor.scm (r-ebarrays): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 25481d5b1d..5ae80f0502 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -7068,3 +7068,27 @@ symbols).") REACTOME pathway database. It implements enrichment analysis, gene set enrichment analysis and several functions for visualization.") (license license:gpl2))) + +(define-public r-ebarrays + (package + (name "r-ebarrays") + (version "2.50.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "EBarrays" version)) + (sha256 + (base32 + "063rhsdp8x0f881kslq06zxfp6b2qabrz4vmfrn8a4v3pd3n7s13")))) + (properties `((upstream-name . "EBarrays"))) + (build-system r-build-system) + (propagated-inputs + `(("r-biobase" ,r-biobase) + ("r-cluster" ,r-cluster) + ("r-lattice" ,r-lattice))) + (home-page "https://bioconductor.org/packages/EBarrays/") + (synopsis "Gene clustering and differential expression identification") + (description + "EBarrays provides tools for the analysis of replicated/unreplicated +microarray data.") + (license license:gpl2+))) |