all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Mădălin Ionel Patrașcu" <madalinionel.patrascu@mdc-berlin.de>
To: <59870@debbugs.gnu.org>
Cc: rekado@elephly.net
Subject: [bug#59870] [PATCH 12/12] gnu: Add r-animalcules.
Date: Wed, 7 Dec 2022 06:18:37 +0100	[thread overview]
Message-ID: <20221207051837.10970-12-madalinionel.patrascu@mdc-berlin.de> (raw)
In-Reply-To: <20221207051837.10970-1-madalinionel.patrascu@mdc-berlin.de>

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

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index c62c5970b8..fa5b38be86 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -2337,6 +2337,65 @@ (define-public r-ancombc
 these biases and construct statistically consistent estimators.")
     (license license:artistic2.0)))
 
+(define-public r-animalcules
+  (package
+    (name "r-animalcules")
+    (version "1.14.0")
+    (source (origin
+              (method url-fetch)
+              (uri (bioconductor-uri "animalcules" version))
+              (sha256
+               (base32
+                "1alpsamrglgvzhcibkaf7m3gyiv61wbj1gvsq4lw6vjka100j9qr"))))
+    (properties `((upstream-name . "animalcules")))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-ape
+           r-assertthat
+           r-biomformat
+           r-caret
+           r-covr
+           r-deseq2
+           r-dplyr
+           r-dt
+           r-forcats
+           r-ggplot2
+           r-glmnet
+           r-gunifrac
+           r-lattice
+           r-limma
+           r-magrittr
+           r-matrix
+           r-multiassayexperiment
+           r-plotly
+           r-plotroc
+           r-rentrez
+           r-reshape2
+           r-s4vectors
+           r-scales
+           r-shiny
+           r-shinyjs
+           r-summarizedexperiment
+           r-tibble
+           r-tsne
+           r-umap
+           r-vegan
+           r-xml))
+    (native-inputs (list r-knitr))
+    (home-page "https://github.com/compbiomed/animalcules")
+    (synopsis "Interactive microbiome analysis toolkit")
+    (description
+     "@code{Animalcules} is an R package for utilizing up-to-date data analytics,
+visualization methods, and machine learning models to provide users an easy-to-use
+interactive microbiome analysis framework.  It can be used as a standalone software
+package or users can explore their data with the accompanying interactive R Shiny
+application.  Traditional microbiome analysis such as alpha/beta diversity and
+differential abundance analysis are enhanced, while new methods like biomarker
+identification are introduced by animalcules.  Powerful interactive and dynamic
+figures generated by animalcules enable users to understand their data better and
+discover new insights.")
+    (license license:artistic2.0)))
+
 (define-public r-aldex2
   (package
     (name "r-aldex2")
-- 
2.38.1





  parent reply	other threads:[~2022-12-07  5:20 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-07  5:15 [bug#59870] [PATCH] gnu: Add r-animalcules, r-plotroc, r-gridsvg, r-gunifrac, r-dirmult, r-modeest, r-fbasics, r-timeseries, r-gss, r-stable, r-rmutil, r-statip MadalinIonel.Patrascu
2022-12-07  5:18 ` [bug#59870] [PATCH 01/12] gnu: Add r-statip Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 02/12] gnu: Add r-rmutil Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 03/12] gnu: Add r-stable Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 04/12] gnu: Add r-gss Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 05/12] gnu: Add r-timeseries Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 06/12] gnu: Add r-fbasics Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 07/12] gnu: Add r-modeest Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 08/12] gnu: Add r-dirmult Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 09/12] gnu: Add r-gunifrac Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 10/12] gnu: Add r-gridsvg Mădălin Ionel Patrașcu
2022-12-07  5:18   ` [bug#59870] [PATCH 11/12] gnu: Add r-plotroc Mădălin Ionel Patrașcu
2022-12-07  5:18   ` Mădălin Ionel Patrașcu [this message]
2022-12-12 16:44   ` bug#59870: [PATCH 01/12] gnu: Add r-statip Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221207051837.10970-12-madalinionel.patrascu@mdc-berlin.de \
    --to=madalinionel.patrascu@mdc-berlin.de \
    --cc=59870@debbugs.gnu.org \
    --cc=rekado@elephly.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.