30 lines
1.3 KiB
Python
30 lines
1.3 KiB
Python
# Copyright 2013-2022 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 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.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:')
|