guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

47/54: gnu: Add r-biclust.


From: guix-commits
Subject: 47/54: gnu: Add r-biclust.
Date: Sat, 14 Dec 2019 07:36:43 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 86a760cc67170331abcb1f0bdf73af4716effad5
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Dec 14 13:31:40 2019 +0100

    gnu: Add r-biclust.
    
    * gnu/packages/cran.scm (r-biclust): New variable.
---
 gnu/packages/cran.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3cd12d1..3548378 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -18455,3 +18455,34 @@ methods for cluster results (neighborhood graphs, 
convex cluster hulls,
 barcharts of centroids, ...), and bootstrap methods for the analysis of
 cluster stability.")
     (license license:gpl2)))
+
+(define-public r-biclust
+  (package
+    (name "r-biclust")
+    (version "2.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "biclust" version))
+       (sha256
+        (base32
+         "1y5n6wfa1lx88ck3x09rcg0dh3pw89225h85hmq2la1s1fpa48i0"))))
+    (properties `((upstream-name . "biclust")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-additivitytests" ,r-additivitytests)
+       ("r-colorspace" ,r-colorspace)
+       ("r-flexclust" ,r-flexclust)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-lattice" ,r-lattice)
+       ("r-mass" ,r-mass)
+       ("r-tidyr" ,r-tidyr)))
+    (home-page "https://cran.r-project.org/web/packages/biclust/";)
+    (synopsis "BiCluster algorithms")
+    (description
+     "The main function @code{biclust()} provides several algorithms to find
+biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
+In addition, the package provides methods for data
+preprocessing (normalization and discretization), visualization, and
+validation of bicluster solutions.")
+    (license license:gpl3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]