From 87ba9508e9362852d76119044c2c53abae7ccf87 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 4 Jul 2018 17:41:36 +0200 Subject: [PATCH] gnu: Add r-goplot. * gnu/packages/cran.scm (r-goplot): New variable. --- gnu/packages/cran.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 77f27c35bd..f00d84fe2b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4546,3 +4546,35 @@ (define-public r-biasedurn noncentral hypergeometric distribution (also called extended hypergeometric distribution).") (license license:gpl3))) + +(define-public r-goplot + (package + (name "r-goplot") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "GOplot" version)) + (sha256 + (base32 + "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix")))) + (properties `((upstream-name . "GOplot"))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggdendro" ,r-ggdendro) + ("r-ggplot2" ,r-ggplot2) + ("r-gridextra" ,r-gridextra) + ("r-rcolorbrewer" ,r-rcolorbrewer))) + (home-page "https://github.com/wencke/wencke.github.io") + (synopsis "Visualization of functional analysis data") + (description + "This package provides an implementation of multilayered visualizations +for enhanced graphical representation of functional analysis data. It +combines and integrates omics data derived from expression and functional +annotation enrichment analyses. Its plotting functions have been developed +with an hierarchical structure in mind: starting from a general overview to +identify the most enriched categories (modified bar plot, bubble plot) to a +more detailed one displaying different types of relevant information for the +molecules in a given set of categories (circle plot, chord plot, cluster plot, +Venn diagram, heatmap).") + (license license:gpl2)))