summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-biocsingular/package.py
blob: 4546a53020a6c638d0ac923f9fd639c198f0776c (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
# 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 RBiocsingular(RPackage):
    """Singular Value Decomposition for Bioconductor Packages.

    Implements exact and approximate methods for singular value
    decomposition and principal components analysis, in a framework that
    allows them to be easily switched within Bioconductor packages or
    workflows. Where possible, parallelization is achieved using the
    BiocParallel framework."""

    bioc = "BiocSingular"

    version("1.16.0", commit="0db9a691d4eb21551c532d8bde8f64dcc19b6c66")
    version("1.14.0", commit="6dc42b30110e498f6694f18037f991c1006c71b7")
    version("1.12.0", commit="7d1b8f4954e9e6f2c30a5111cdab9aabc8bcc3a6")
    version("1.10.0", commit="6615ae8cb124aba6507447c1081bd2eba655e57d")
    version("1.6.0", commit="11baf1080d6f791439cd5d97357589d6451643d9")
    version("1.0.0", commit="d2b091c072d0312698c9bb6611eb1bdf8aebf833")

    depends_on("r-biocgenerics", type=("build", "run"))
    depends_on("r-s4vectors", type=("build", "run"))
    depends_on("r-matrix", type=("build", "run"))
    depends_on("r-delayedarray", type=("build", "run"))
    depends_on("r-biocparallel", type=("build", "run"))
    depends_on("r-scaledmatrix", type=("build", "run"), when="@1.10.0:")
    depends_on("r-irlba", type=("build", "run"))
    depends_on("r-rsvd", type=("build", "run"))
    depends_on("r-rcpp", type=("build", "run"))
    depends_on("r-beachmat", type=("build", "run"))