summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-ggtree/package.py
blob: db34d3dae45ec53a04a42321a8c2b10cbc9eb50a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2013-2023 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 RGgtree(RPackage):
    """an R package for visualization of tree and annotation data.

    'ggtree' extends the 'ggplot2' plotting system which implemented the
    grammar of graphics. 'ggtree' is designed for visualization and annotation
    of phylogenetic trees and other tree-like structures with their annotation
    data."""

    bioc = "ggtree"

    version("3.8.0", commit="e7c989085d0848e4d5f82aa8000422c71458a9a8")
    version("3.6.2", commit="431ec37bc0f0159b08a7990ce1d9374e160b9f44")
    version("3.4.4", commit="8e48d3e2ea445b6c2213f0471462108a7a72b333")
    version("3.4.0", commit="23f08a3da1829d1bbb6827ed1c4cf878daa4b539")
    version("3.2.1", commit="d3747e636fe1a6a9e09b56a3a3899208ebd05547")

    depends_on("r@3.5.0:", type=("build", "run"))
    depends_on("r-ape", type=("build", "run"))
    depends_on("r-aplot@0.0.4:", type=("build", "run"))
    depends_on("r-aplot", type=("build", "run"), when="@3.4.0:")
    depends_on("r-dplyr", type=("build", "run"))
    depends_on("r-ggplot2@3.0.0:", type=("build", "run"))
    depends_on("r-ggplot2@3.4.0:", type=("build", "run"), when="@3.6.2:")
    depends_on("r-ggplot2@UNKNOWN:", type=("build", "run"), when="@3.8.0:")
    depends_on("r-magrittr", type=("build", "run"))
    depends_on("r-purrr", type=("build", "run"))
    depends_on("r-rlang", type=("build", "run"))
    depends_on("r-ggfun", type=("build", "run"))
    depends_on("r-ggfun@0.0.6:", type=("build", "run"), when="@3.4.0:")
    depends_on("r-ggfun@0.0.9:", type=("build", "run"), when="@3.8.0:")
    depends_on("r-yulab-utils", type=("build", "run"))
    depends_on("r-tidyr", type=("build", "run"))
    depends_on("r-tidytree@0.2.6:", type=("build", "run"))
    depends_on("r-tidytree@0.3.9:", type=("build", "run"), when="@3.4.0:")
    depends_on("r-treeio@1.8.0:", type=("build", "run"))
    depends_on("r-scales", type=("build", "run"))
    depends_on("r-cli", type=("build", "run"), when="@3.6.2:")