summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-goplot/package.py
blob: d0730b73cd08ce6edf2ed8d037f807c8ad8cf810 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *


class RGoplot(RPackage):
    """Visualization of Functional Analysis Data.

    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)."""

    cran = "GOplot"

    version("1.0.2", sha256="3ddaa2b6d1297ad6daad30d18af708adf43d86e8804b1b92fa29dfbf26d80df9")

    depends_on("r@3.2.3:", type=("build", "run"))
    depends_on("r-ggplot2@2.0.0:", type=("build", "run"))
    depends_on("r-ggdendro@0.1-17:", type=("build", "run"))
    depends_on("r-gridextra@2.0.0:", type=("build", "run"))
    depends_on("r-rcolorbrewer@1.1-2:", type=("build", "run"))