guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add r-embedsom.


From: guix-commits
Subject: 02/03: gnu: Add r-embedsom.
Date: Thu, 30 Mar 2023 07:04:48 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 3d74f1676bdc7a0e1d2cf40c9700168572147da6
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Mar 30 12:37:30 2023 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e88d893517..c1786b7848 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -592,6 +592,35 @@ edition of the book \"Data Mining with R, learning with 
case studies\"
 by Luis Torgo, published by CRC Press.")
     (license license:gpl2+)))
 
+(define-public r-embedsom
+  (package
+    (name "r-embedsom")
+    (version "2.1.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "EmbedSOM" version))
+              (sha256
+               (base32
+                "0k4hja5y7qd0n3gfaxzxrz4wpxc1w9d4d4xbb63rq2nfk3lj7a42"))))
+    (properties `((upstream-name . "EmbedSOM")))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-fnn
+           r-ggplot2
+           r-igraph
+           r-matrix
+           r-rtsne
+           r-umap
+           r-uwot))
+    (native-inputs (list r-knitr))
+    (home-page "https://github.com/exaexa/EmbedSOM";)
+    (synopsis "Fast embedding guided by self-organizing map")
+    (description
+     "This package provides a smooth mapping of multidimensional points into
+low-dimensional space defined by a self-organizing map.  It is designed to
+work with FlowSOM and flow-cytometry use-cases.")
+    (license license:gpl3+)))
+
 (define-public r-emdist
   (package
     (name "r-emdist")



reply via email to

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