diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2023-02-23 00:56:33 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-02 00:08:11 +0100 |
commit | 8e5a6b35fdc1aa02b772fa57e37fadc303a45df4 (patch) | |
tree | 44012634a8693817af6dbd077b4e9b911f623b09 | |
parent | b9be025b0ed50aa363d1955d43ccb76b3f48df4e (diff) | |
download | guix-8e5a6b35fdc1aa02b772fa57e37fadc303a45df4.tar.gz |
gnu: Add r-som.
* gnu/packages/cran.scm (r-som): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 97add3e81e..2b42d55b1e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16283,6 +16283,35 @@ value decompositions} (SVDs) on large sparse centered matrices (i.e. principal components).") (license license:gpl2))) +(define-public r-som + (package + (name "r-som") + (version "0.3-5.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "som" version)) + (sha256 + (base32 "1fbza1jxvwrkf5x3inkj36vshhkn7mz0ajqlxalbfmk6ngjw1x56")))) + (properties `((upstream-name . "som"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=som") + (synopsis "Self-organizing map") + (description + "This package implements a self-organizing map which has application in +gene clustering. It provides functions like: + +@itemize +@item filtering data by certain floor, ceiling, max/min ratio, and max - min + difference; +@item normalization of the data; +@item get the average distortion measure; +@item train a self-organizing map; +@item summarize a som object; +@item yeast cell cycle. +@end itemize") + (license license:gpl3+))) + (define-public r-fftwtools (package (name "r-fftwtools") |