summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-dmrcate/package.py
blob: f75a4c0cd7d93dcffdba6bc0c12c19008cff9199 (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
# 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 RDmrcate(RPackage):
    """Methylation array and sequencing spatial analysis methods.

    De novo identification and extraction of differentially methylated regions
    (DMRs) from the human genome using Whole Genome Bisulfite Sequencing (WGBS)
    and Illumina Infinium Array (450K and EPIC) data. Provides functionality
    for filtering probes possibly confounded by SNPs and cross-hybridisation.
    Includes GRanges generation and plotting functions."""

    bioc = "DMRcate"

    version("2.14.0", commit="6e7bae0917001e7664f01c3f8d261f9fe28c2f4d")
    version("2.12.0", commit="560dd5067b05715631739d0fb58ef9cebdbf7078")
    version("2.10.0", commit="81e83701da5c55ac83d0e0b5e640a9d431f09551")
    version("2.8.5", commit="c65dc79a33a047c10932a98b3383709a6bcb8903")
    version("2.4.1", commit="bc6242a0291a9b997872f575a4417d38550c9550")

    depends_on("r@3.6.0:", type=("build", "run"))
    depends_on("r@4.0.0:", type=("build", "run"), when="@2.8.5:")
    depends_on("r-experimenthub", type=("build", "run"))
    depends_on("r-bsseq", type=("build", "run"))
    depends_on("r-genomeinfodb", type=("build", "run"))
    depends_on("r-limma", type=("build", "run"))
    depends_on("r-edger", type=("build", "run"))
    depends_on("r-dss", type=("build", "run"))
    depends_on("r-minfi", type=("build", "run"))
    depends_on("r-missmethyl", type=("build", "run"))
    depends_on("r-genomicranges", type=("build", "run"))
    depends_on("r-plyr", type=("build", "run"))
    depends_on("r-gviz", type=("build", "run"))
    depends_on("r-iranges", type=("build", "run"))
    depends_on("r-s4vectors", type=("build", "run"))
    depends_on("r-summarizedexperiment", type=("build", "run"))