diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 19:47:11 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 20:02:17 +0100 |
commit | de9374b73cc14245d41d4944c0632a804fe52efb (patch) | |
tree | 189acc15a682a53cd0636ecfc05838864549d4bd | |
parent | 6bd50acf41ef0a44703e7f7cb0d6065696ade69d (diff) | |
download | patches-de9374b73cc14245d41d4944c0632a804fe52efb.tar patches-de9374b73cc14245d41d4944c0632a804fe52efb.tar.gz |
gnu: Add r-bicare.
* gnu/packages/bioconductor.scm (r-bicare): 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 f84b609f56..896d451bac 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -6626,3 +6626,27 @@ metric. This implementation accepts multinomial (i.e. discrete, with 2+ categories) or time-series data. This version also includes a randomised algorithm which is more efficient for larger data sets.") (license license:gpl3))) + +(define-public r-bicare + (package + (name "r-bicare") + (version "1.44.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "BicARE" version)) + (sha256 + (base32 + "1gia5vzmvbk4k1vx3bh9nld1ws9s3c0y11qfbzqhfnfjbd7n8qcs")))) + (properties `((upstream-name . "BicARE"))) + (build-system r-build-system) + (propagated-inputs + `(("r-biobase" ,r-biobase) + ("r-gseabase" ,r-gseabase) + ("r-multtest" ,r-multtest))) + (home-page "http://bioinfo.curie.fr") + (synopsis "Biclustering analysis and results exploration") + (description + "This is a package for biclustering analysis and exploration of +results.") + (license license:gpl2))) |