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-26 09:55:03 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-09-26 09:55:03 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class RLimma(RPackage):
|
|
|
|
"""Data analysis, linear models and differential expression
|
|
|
|
for microarray data."""
|
|
|
|
|
|
|
|
homepage = "https://www.bioconductor.org/packages/limma/"
|
2018-07-24 10:56:48 +08:00
|
|
|
git = "https://git.bioconductor.org/packages/limma.git"
|
2017-09-30 06:29:41 +08:00
|
|
|
|
2018-08-14 11:18:12 +08:00
|
|
|
version('3.36.2', commit='0cd5c13e22565182226bd2937ffcf8c59de1ca59')
|
2018-07-24 10:56:48 +08:00
|
|
|
version('3.34.9', commit='6755278a929f942a49e2441fb002a3ed393e1139')
|
|
|
|
version('3.32.10', commit='593edf28e21fe054d64137ae271b8a52ab05bc60')
|
2017-10-24 17:19:19 +08:00
|
|
|
|
2018-08-14 11:18:12 +08:00
|
|
|
depends_on('r@3.5.0:3.5.9', when='@3.36.2')
|
|
|
|
depends_on('r@3.4.2:3.4.9', when='@3.34.9')
|
|
|
|
depends_on('r@3.4.0:3.4.9', when='@3.32.10')
|