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
|
# Copyright 2013-2019 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 RA4(RPackage):
"""Automated Affymetrix Array Analysis Umbrella Package."""
homepage = "https://bioconductor.org/packages/a4"
git = "https://git.bioconductor.org/packages/a4.git"
version('1.32.0', commit='03770d4e53be4eed1bd0ab8f8cddba66854b4712')
version('1.30.0', commit='771e01ae3aaac1c4db12f781c41d90fa7191b64d')
version('1.28.0', commit='e81a8c15e1062ed9433e2d4d333f0484bc0e8bfb')
version('1.26.0', commit='e6af2cba5b684f81cc6e44dbc432916f75a2f774')
version('1.24.0', commit='79b5143652176787c85a0d587b3bbfad6b4a19f4')
depends_on('r-a4base', type=('build', 'run'))
depends_on('r-a4preproc', type=('build', 'run'))
depends_on('r-a4classif', type=('build', 'run'))
depends_on('r-a4core', type=('build', 'run'))
depends_on('r-a4reporting', type=('build', 'run'))
|