22 lines
872 B
Python
22 lines
872 B
Python
# Copyright 2013-2020 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 RA4preproc(RPackage):
|
|
"""Automated Affymetrix Array Analysis Preprocessing Package."""
|
|
|
|
homepage = "https://bioconductor.org/packages/a4Preproc"
|
|
git = "https://git.bioconductor.org/packages/a4Preproc.git"
|
|
|
|
version('1.32.0', commit='0da742e500892b682feeb39256906282ad20c558')
|
|
version('1.30.0', commit='e6fb9fa2e7c703974e6ca10c0e9681b097b05978')
|
|
version('1.28.0', commit='435d66727f1187020d034a1beaf4cd8bd4f76981')
|
|
version('1.26.0', commit='be7403acc06670c05ead1adaf60533b0fe3a65ea')
|
|
version('1.24.0', commit='651014b8102807aea4f1274e34e083e70b5e7ee7')
|
|
|
|
depends_on('r-annotationdbi', type=('build', 'run'))
|