32 lines
1.4 KiB
Python
32 lines
1.4 KiB
Python
# Copyright Spack Project Developers. See 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:")
|