summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-affyplm/package.py
blob: 1690ce430b436c2c5a4f89a0ab8959116401b31b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2018 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 RAffyplm(RPackage):
    """A package that extends and improves the functionality of
    the base affy package. Routines that make heavy use of compiled
    code for speed. Central focus is on implementation of methods
    for fitting probe-level models and tools using these models.
    PLM based quality assessment tools."""

    homepage = "https://www.bioconductor.org/packages/affyPLM/"
    git      = "https://git.bioconductor.org/packages/affyPLM.git"

    version('1.52.1', commit='e8613a6018c4ee58045df6bf19128844f50a1f43')

    depends_on('r@3.4.0:3.4.9', when='@1.52.1')
    depends_on('r-biocgenerics', type=('build', 'run'))
    depends_on('r-affy', type=('build', 'run'))
    depends_on('r-biobase', type=('build', 'run'))
    depends_on('r-gcrma', type=('build', 'run'))
    depends_on('r-preprocesscore', type=('build', 'run'))
    depends_on('r-zlibbioc', type=('build', 'run'))