Archived
1
0
Fork 0

gnu: Add r-ebarrays.

* gnu/packages/bioconductor.scm (r-ebarrays): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-18 15:24:27 +01:00
parent f388834e11
commit 21afe920f1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7068,3 +7068,27 @@ symbols).")
REACTOME pathway database. It implements enrichment analysis, gene set REACTOME pathway database. It implements enrichment analysis, gene set
enrichment analysis and several functions for visualization.") enrichment analysis and several functions for visualization.")
(license license:gpl2))) (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+)))