summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-aroma-light/package.py
blob: 9d1561be86f9c9182360d6fc40d08bb4b41229f4 (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
# Copyright 2013-2023 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 RAromaLight(RPackage):
    """Light-Weight Methods for Normalization and Visualization of Microarray
    Data using Only Basic R Data Types.

    Methods for microarray analysis that take basic data types such as
    matrices and lists of vectors. These methods can be used standalone, be
    utilized in other packages, or be wrapped up in higher-level classes."""

    bioc = "aroma.light"

    version("3.30.0", commit="a1882c2126622cb389a7ef1ef5b5c565e603a282")
    version("3.28.0", commit="7749dd7033e9885ec2546a5cac0562bac2fea04d")
    version("3.26.0", commit="7ead7517a77bc8b4b4b42aace69957a17e8fe016")
    version("3.24.0", commit="3ff48b8f546acc9803b3c652363cac78d3b81ae5")
    version("3.20.0", commit="02cde7fa166259bce73c396a87dca2ecc8249c39")
    version("3.16.0", commit="fc16179fc4bee8954c5415d7cd13e3112b75b4fd")

    depends_on("r@2.15.2:", type=("build", "run"))
    depends_on("r-r-methodss3@1.7.1:", type=("build", "run"))
    depends_on("r-r-oo@1.22.0:", type=("build", "run"))
    depends_on("r-r-oo@1.23.0:", type=("build", "run"), when="@3.20.0:")
    depends_on("r-r-utils@2.9.0:", type=("build", "run"))
    depends_on("r-matrixstats@0.54.0:", type=("build", "run"))
    depends_on("r-matrixstats@0.55.0:", type=("build", "run"), when="@3.20.0:")