summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-deseq/package.py
blob: cfdf5f47cc2a66705988c2a98bf8cea56eecc90c (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
# 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 RDeseq(RPackage):
    """Differential gene expression analysis based on the negative binomial
    distribution.

    Estimate variance-mean dependence in count data from high-throughput
    sequencing assays and test for differential expression based on a model
    using the negative binomial distribution"""

    bioc = "DESeq"

    version("1.42.0", commit="da76bc64e8c4073b58eaf1c93aa4e89bec5c4e50")
    version("1.36.0", commit="db4af67b49d3bd8c321d19efbe9415cd2e4ddb7e")
    version("1.34.1", commit="e86f1b03a30bc02de4bfd4a0759af2f65cb48c62")
    version("1.32.0", commit="e3d623b815b53d79eae7cdd09d097cc6098d28c9")
    version("1.30.0", commit="90c93d991dd980d538c13b0361d3345f9546794e")
    version("1.28.0", commit="738371466e6ccf00179fd35b617c8ba0e1e91630")

    depends_on("r-biocgenerics@0.7.5:", type=("build", "run"))
    depends_on("r-biobase@2.21.7:", type=("build", "run"))
    depends_on("r-locfit", type=("build", "run"))
    depends_on("r-lattice", type=("build", "run"))
    depends_on("r-genefilter", type=("build", "run"))
    depends_on("r-geneplotter", type=("build", "run"))
    depends_on("r-mass", type=("build", "run"))
    depends_on("r-rcolorbrewer", type=("build", "run"))