29 lines
1.1 KiB
Python
29 lines
1.1 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 RAffycontam(RPackage):
|
|
"""structured corruption of affymetrix cel file data.
|
|
|
|
structured corruption of cel file data to demonstrate QA
|
|
effectiveness"""
|
|
|
|
bioc = "affyContam"
|
|
|
|
version('1.52.0', commit='47c1d86da330f157d3ece0e26b0657d66a5ca0c9')
|
|
version('1.48.0', commit='88387a2ad4be4234d36710c65f2ca3a5b06b67da')
|
|
version('1.42.0', commit='8a5e94a5ae8c2ecfafa6177b84a6e8ab07e14fbe')
|
|
version('1.40.0', commit='dfd5fd6ae04941dddbda03f656540b71b2fbc614')
|
|
version('1.38.0', commit='84651e8eade61619afefc83bb290047da101a5bc')
|
|
version('1.36.0', commit='aeb684a7d3f6fa9243f3946d214de53649fa4fd6')
|
|
version('1.34.0', commit='03529f26d059c19e069cdda358dbf7789b6d4c40')
|
|
|
|
depends_on('r@2.7.0:', type=('build', 'run'))
|
|
depends_on('r-biobase', type=('build', 'run'))
|
|
depends_on('r-affy', type=('build', 'run'))
|
|
depends_on('r-affydata', type=('build', 'run'))
|