mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add r-biclust.
* gnu/packages/cran.scm (r-biclust): New variable.
This commit is contained in:
parent
9906cb80de
commit
86a760cc67
1 changed files with 31 additions and 0 deletions
|
@ -18455,3 +18455,34 @@ (define-public r-flexclust
|
|||
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)))
|
||||
|
|
Loading…
Reference in a new issue