[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: gnu: Add r-wheatmap.
From: |
guix-commits |
Subject: |
02/05: gnu: Add r-wheatmap. |
Date: |
Sun, 23 Jul 2023 17:09:39 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit cc14e04c8eb11a2d4c4c147def40a3f5e8ea4945
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Jul 19 16:10:47 2023 +0200
gnu: Add r-wheatmap.
* gnu/packages/cran.scm (r-wheatmap): New variable.
---
gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e8a42dd9ab..5b74cb773a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1251,6 +1251,31 @@ quickly isolate key differences makes understanding test
failures much
easier.")
(license license:expat)))
+(define-public r-wheatmap
+ (package
+ (name "r-wheatmap")
+ (version "0.2.0")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "wheatmap" version))
+ (sha256
+ (base32
+ "064idlrnb85xxav39gp3n854fic6514khvazrf5d0x48crpzyvdp"))))
+ (properties `((upstream-name . "wheatmap")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-colorspace r-rcolorbrewer))
+ (native-inputs (list r-knitr))
+ (home-page "https://github.com/zwdzwd/wheatmap")
+ (synopsis "Incrementally build complex plots using natural semantics")
+ (description
+ "This package lets you build complex plots, heatmaps in particular, using
+natural semantics. Bigger plots can be assembled using directives such as
+@code{LeftOf}, @code{RightOf}, @code{TopOf}, and @code{Beneath} and more.
+Other features include clustering, dendrograms and integration with ggplot2
+generated grid objects. This package is particularly designed for
+bioinformaticians to assemble complex plots for publication.")
+ (license license:gpl3)))
+
(define-public r-rticles
(package
(name "r-rticles")