summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-scran/package.py
blob: 494607b952514016774db90bc8cc49b0c573289c (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
# 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 RScran(RPackage):
    """Methods for Single-Cell RNA-Seq Data Analysis.

    Implements miscellaneous functions for interpretation of single-cell
    RNA-seq data.  Methods are provided for assignment of cell cycle phase,
    detection of highly variable and significantly correlated genes,
    identification of marker genes, and other common tasks in routine
    single-cell analysis workflows."""

    bioc = "scran"

    version("1.28.0", commit="2e542b929b231fb5bb8c40af0f6ccea97f79234d")
    version("1.26.0", commit="df66576d6958a088c38bd45e1cad9c16cbb52991")
    version("1.24.1", commit="1a83eb7c948b1dc49253080c23b26cefb3a0f3b9")
    version("1.24.0", commit="c3f9e169c4538ce827d4f14a4141571c2366cd31")

    depends_on("r-singlecellexperiment", type=("build", "run"))
    depends_on("r-scuttle", type=("build", "run"))
    depends_on("r-summarizedexperiment", type=("build", "run"))
    depends_on("r-s4vectors", type=("build", "run"))
    depends_on("r-biocgenerics", type=("build", "run"))
    depends_on("r-biocparallel", type=("build", "run"))
    depends_on("r-rcpp", type=("build", "run"))
    depends_on("r-matrix", type=("build", "run"))
    depends_on("r-edger", type=("build", "run"))
    depends_on("r-limma", type=("build", "run"))
    depends_on("r-igraph", type=("build", "run"))
    depends_on("r-statmod", type=("build", "run"))
    depends_on("r-delayedarray", type=("build", "run"))
    depends_on("r-delayedmatrixstats", type=("build", "run"))
    depends_on("r-biocsingular", type=("build", "run"))
    depends_on("r-bluster", type=("build", "run"))
    depends_on("r-metapod", type=("build", "run"))
    depends_on("r-dqrng", type=("build", "run"))
    depends_on("r-beachmat", type=("build", "run"))
    depends_on("r-bh", type=("build", "run"))