[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: Add r-bigmelon.
From: |
guix-commits |
Subject: |
05/05: gnu: Add r-bigmelon. |
Date: |
Thu, 5 Sep 2019 05:46:37 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 6b5f59c7a6a6dfc8298b83a5bd9ac65fec7a09d6
Author: Ricardo Wurmus <address@hidden>
Date: Thu Sep 5 11:46:13 2019 +0200
gnu: Add r-bigmelon.
* gnu/packages/bioconductor.scm (r-bigmelon): New variable.
---
gnu/packages/bioconductor.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 8c57bd5..3ba5415 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -5413,3 +5413,31 @@ byte. Data compression and decompression are available
with relatively
efficient random access. It is also allowed to read a GDS file in parallel
with multiple R processes supported by the package @code{parallel}.")
(license license:lgpl3)))
+
+(define-public r-bigmelon
+ (package
+ (name "r-bigmelon")
+ (version "1.10.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "bigmelon" version))
+ (sha256
+ (base32
+ "0269kf3d34dbng3swk7pclpk02vy4k3askygmzi5my3fqyfzdkj9"))))
+ (properties `((upstream-name . "bigmelon")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-biobase" ,r-biobase)
+ ("r-biocgenerics" ,r-biocgenerics)
+ ("r-gdsfmt" ,r-gdsfmt)
+ ("r-geoquery" ,r-geoquery)
+ ("r-methylumi" ,r-methylumi)
+ ("r-minfi" ,r-minfi)
+ ("r-watermelon" ,r-watermelon)))
+ (home-page "https://bioconductor.org/packages/bigmelon/")
+ (synopsis "Illumina methylation array analysis for large experiments")
+ (description
+ "This package provides methods for working with Illumina arrays using the
+@code{gdsfmt} package.")
+ (license license:gpl3)))