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-10-07 10:13:57 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-10-07 10:13:57 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RAffycomp(RPackage):
|
|
|
|
"""The package contains functions that can be used to compare
|
|
|
|
expression measures for Affymetrix Oligonucleotide Arrays."""
|
|
|
|
|
|
|
|
homepage = "https://www.bioconductor.org/packages/affycomp/"
|
2018-07-24 10:56:48 +08:00
|
|
|
git = "https://git.bioconductor.org/packages/affycomp.git"
|
2017-10-07 10:13:57 +08:00
|
|
|
|
2018-07-24 10:56:48 +08:00
|
|
|
version('1.52.0', commit='1b97a1cb21ec93bf1e5c88d5d55b988059612790')
|
2017-10-07 10:13:57 +08:00
|
|
|
|
2017-10-24 17:19:19 +08:00
|
|
|
depends_on('r@3.4.0:3.4.9', when='@1.52.0')
|
2017-10-07 10:13:57 +08:00
|
|
|
depends_on('r-biobase', type=('build', 'run'))
|