summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-clusterprofiler/package.py
blob: 38588da2051100e2fcc67a01edc474bfa3ec6139 (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
46
47
48
49
50
51
52
53
54
55
# 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 RClusterprofiler(RPackage):
    """statistical analysis and visualization of functional profiles for genes
    and gene clusters.

    This package implements methods to analyze and visualize functional
    profiles (GO and KEGG) of gene and gene clusters."""

    bioc = "clusterProfiler"

    version("4.8.0", commit="35a69cf05855b01775658def2f3f26596902f5db")
    version("4.6.0", commit="2644118c36a3aa14408bc0c97ac20a545e40344d")
    version("4.4.4", commit="9fca9a45ca1793884d8dcfd0f077353dbf75df29")
    version("4.4.1", commit="daad11fb80be2dd9b825e0b484815a0a2b1592a4")
    version("4.2.2", commit="4ebb9de8e03eedc971f54a57cf5bf1b250ed43d5")
    version("3.18.0", commit="064a6e612ce27e260e33af78b907bee4065ff821")
    version("3.12.0", commit="6ec88d10832bdfd938e9c065b377015eedb7eee2")
    version("3.10.1", commit="39927ef7ff6f97e27557bcf4147e2133b364fd3c")
    version("3.8.1", commit="81e1a7ac49e4713703c55f87f945b20de5e7ab36")
    version("3.6.0", commit="ff15e3dba69b93bc872d5f5d07821cd9ae20d829")
    version("3.4.4", commit="b86b00e8405fe130e439362651a5567736e2d9d7")

    depends_on("r@3.3.1:", type=("build", "run"))
    depends_on("r@3.4.0:", type=("build", "run"), when="@3.8.1:")
    depends_on("r@3.5.0:", type=("build", "run"), when="@4.2.2:")
    depends_on("r-annotationdbi", type=("build", "run"))
    depends_on("r-downloader", type=("build", "run"), when="@3.18.0:")
    depends_on("r-dose@3.1.3:", type=("build", "run"))
    depends_on("r-dose@3.3.2:", type=("build", "run"), when="@3.6.0:")
    depends_on("r-dose@3.5.1:", type=("build", "run"), when="@3.8.1:")
    depends_on("r-dose@3.13.1:", type=("build", "run"), when="@3.18.0:")
    depends_on("r-dose@3.23.2:", type=("build", "run"), when="@4.6.0:")
    depends_on("r-dplyr", type=("build", "run"), when="@3.18.0:")
    depends_on("r-enrichplot@0.99.7:", type=("build", "run"), when="@3.8.1:")
    depends_on("r-enrichplot@1.9.3:", type=("build", "run"), when="@3.18.0:")
    depends_on("r-go-db", type=("build", "run"))
    depends_on("r-gosemsim", type=("build", "run"))
    depends_on("r-gosemsim@2.0.0:", type=("build", "run"), when="@3.4.4:")
    depends_on("r-gson@0.0.7:", type=("build", "run"), when="@4.6.0:")
    depends_on("r-magrittr", type=("build", "run"))
    depends_on("r-plyr", type=("build", "run"))
    depends_on("r-qvalue", type=("build", "run"))
    depends_on("r-rlang", type=("build", "run"), when="@3.18.0:")
    depends_on("r-tidyr", type=("build", "run"))
    depends_on("r-yulab-utils", type=("build", "run"), when="@4.2.2:")

    depends_on("r-ggplot2", type=("build", "run"), when="@:3.12.0")
    depends_on("r-rvcheck", type=("build", "run"), when="@:3.18.0")