diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-19 16:10:47 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-23 23:08:47 +0200 |
commit | cc14e04c8eb11a2d4c4c147def40a3f5e8ea4945 (patch) | |
tree | eb36bc4e9b1ee60b919f9ff9d8cfdcc9fe877bda /gnu | |
parent | 871cb5295c6eccae00f6e1c20c2fbb8024772517 (diff) |
gnu: Add r-wheatmap.
* gnu/packages/cran.scm (r-wheatmap): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
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") |