[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add r-complexupset.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add r-complexupset. |
Date: |
Thu, 12 Oct 2023 09:07:34 -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 b418fdb191 gnu: Add r-complexupset.
b418fdb191 is described below
commit b418fdb191808783fd60e9b858567fd642e32634
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Thu Oct 12 12:46:24 2023 +0000
gnu: Add r-complexupset.
* gnu/packages/cran.scm (r-complexupset): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
gnu/packages/cran.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 459c6a6c93..1c37635ea5 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10602,6 +10602,29 @@ the Singular Value Decomposition in R (Beaton et al
2014)
the matrix exponential and logarithm, and the determinant.")
(license license:gpl2)))
+(define-public r-complexupset
+ (package
+ (name "r-complexupset")
+ (version "1.3.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "ComplexUpset" version))
+ (sha256
+ (base32 "1sk4v5kc2wkgfaws0hjlp30mngm907r5gz1iglf68j46lfs9jbsv"))))
+ (properties `((upstream-name . "ComplexUpset")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-colorspace r-ggplot2 r-patchwork r-scales))
+ (native-inputs (list r-knitr))
+ (home-page "https://github.com/krassowski/complex-upset")
+ (synopsis "Create complex UpSet plots using ggplot2 components")
+ (description
+ "@code{UpSet} plots are an improvement over Venn Diagram for set overlap
+visualizations. Striving to bring the best of the @code{UpSetR} and ggplot2,
+this package offers a way to create complex overlap visualisations, using
+simple and familiar tools.")
+ (license license:expat)))
+
(define-public r-phontools
(package
(name "r-phontools")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add r-complexupset.,
guix-commits <=