[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add r-dtmm.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add r-dtmm. |
Date: |
Mon, 03 Jul 2023 07:43:22 -0400 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 669f0eaed6 gnu: Add r-dtmm.
669f0eaed6 is described below
commit 669f0eaed6310233295fbd0a077afc9ce054c6ab
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Mon Jul 3 11:27:32 2023 +0000
gnu: Add r-dtmm.
* gnu/packages/bioinformatics.scm (r-dtmm): New variable.
---
gnu/packages/bioinformatics.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index f3ea86544d..98f344aa20 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14644,6 +14644,32 @@ visualize the results within R framework. The
disgenet2r package is designed
to retrieve data from DisGeNET v6.0 (Jan, 2019).")
(license license:expat))))
+(define-public r-dtmm
+ (let ((commit "3a553b1e17d27d90a496d2e23e98e5dfe4abc266")
+ (revision "1"))
+ (package
+ (name "r-dtmm")
+ (version (git-version "0.1.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/MaStatLab/DTMM")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19279wafqfs9gk9489f8zsp52qcdb0mkxgvqszq4i733ckr2mmkk"))))
+ (properties `((upstream-name . "DTMM")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-ape r-rcpp r-rcpparmadillo))
+ (home-page "https://github.com/MaStatLab/DTMM")
+ (synopsis "Dirichlet-tree multinomial mixtures")
+ (description
+ "This package lets you perform unsupervised clustering of amplicon
+sequencing data in microbiome studies with the Dirichlet-tree Multinomial
+Mixtures.")
+ (license license:cc0))))
+
(define-public r-dyngen
(package
(name "r-dyngen")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add r-dtmm.,
guix-commits <=