summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-aims/package.py
blob: baf7f878b68ea21e434f4b392de47919fca4c247 (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
# Copyright 2013-2019 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 RAims(RPackage):
    """This package contains the AIMS implementation. It contains
    necessary functions to assign the five intrinsic molecular
    subtypes (Luminal A, Luminal B, Her2-enriched, Basal-like,
    Normal-like). Assignments could be done on individual samples
    as well as on dataset of gene expression data."""

    homepage = "http://bioconductor.org/packages/AIMS/"
    git      = "https://git.bioconductor.org/packages/AIMS.git"

    version('1.8.0', commit='86b866c20e191047492c51b43e3f73082c3f8357')

    depends_on('r@3.4.0:3.4.9', when='@1.8.0')
    depends_on('r-e1071', type=('build', 'run'))
    depends_on('r-biobase', type=('build', 'run'))