2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-09-29 09:11:02 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-09-29 09:11:02 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RGcrma(RPackage):
|
|
|
|
"""Background adjustment using sequence information"""
|
|
|
|
|
|
|
|
homepage = "https://bioconductor.org/packages/gcrma/"
|
2018-07-24 10:56:48 +08:00
|
|
|
git = "https://git.bioconductor.org/packages/gcrma.git"
|
2017-09-29 09:11:02 +08:00
|
|
|
|
2018-07-24 10:56:48 +08:00
|
|
|
version('2.48.0', commit='3ea0eb0b5c15ffb24df76620667ae7996ed715b4')
|
2017-09-29 09:11:02 +08:00
|
|
|
|
|
|
|
depends_on('r-affy', type=('build', 'run'))
|
|
|
|
depends_on('r-biobase', type=('build', 'run'))
|
|
|
|
depends_on('r-affyio', type=('build', 'run'))
|
|
|
|
depends_on('r-xvector', type=('build', 'run'))
|
|
|
|
depends_on('r-biostrings', type=('build', 'run'))
|
|
|
|
depends_on('r-biocinstaller', type=('build', 'run'))
|
2017-10-13 06:18:30 +08:00
|
|
|
depends_on('r@3.4.0:3.4.9', when='@2.48.0')
|