guix-commits
[Top][All Lists]
Advanced

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

14/265: gnu: Add r-flowclust.


From: guix-commits
Subject: 14/265: gnu: Add r-flowclust.
Date: Sun, 15 Dec 2019 09:39:54 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit c8ab9eb1b4d9af156d8008d43e6a7520e8718683
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Dec 15 14:24:42 2019 +0100

    gnu: Add r-flowclust.
    
    * gnu/packages/bioconductor.scm (r-flowclust): New variable.
---
 gnu/packages/bioconductor.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index cbb79da..c59d799 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -5434,6 +5434,43 @@ statistics to the plot.")
      "This package provides visualization tools for flow cytometry data.")
     (license license:artistic2.0)))
 
+(define-public r-flowclust
+  (package
+    (name "r-flowclust")
+    (version "3.24.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "flowClust" version))
+       (sha256
+        (base32
+         "0k4bgc4mf512njfdfg5ld9l7slgfxyfh766jab87j96zrrgcnj8s"))))
+    (properties `((upstream-name . "flowClust")))
+    (build-system r-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "--configure-args=--enable-bundled-gsl=no")))
+    (propagated-inputs
+     `(("r-biobase" ,r-biobase)
+       ("r-biocgenerics" ,r-biocgenerics)
+       ("r-clue" ,r-clue)
+       ("r-corpcor" ,r-corpcor)
+       ("r-ellipse" ,r-ellipse)
+       ("r-flowcore" ,r-flowcore)
+       ("r-flowviz" ,r-flowviz)
+       ("r-graph" ,r-graph)
+       ("r-mnormt" ,r-mnormt)))
+    (inputs
+     `(("gsl" ,gsl)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://bioconductor.org/packages/flowClust";)
+    (synopsis "Clustering for flow cytometry")
+    (description
+     "This package provides robust model-based clustering using a t-mixture
+model with Box-Cox transformation.")
+    (license license:artistic2.0)))
+
 (define-public r-flowsom
   (package
     (name "r-flowsom")



reply via email to

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