summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-mlinterfaces/package.py
blob: 4a2e45585b798d18e6e37c9c648e663f51dbfd6a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 2013-2020 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 RMlinterfaces(RPackage):
    """Uniform interfaces to R machine learning procedures for data in
       Bioconductor containers.

       This package provides uniform interfaces to machine learning code for
       data in R and Bioconductor containers."""

    homepage = "https://bioconductor.org/packages/MLInterfaces"
    git      = "https://git.bioconductor.org/packages/MLInterfaces.git"

    version('1.64.1', commit='0b081112d87771248bc33b3b82d5ca4685f986a1')
    version('1.62.1', commit='6cf59a90b14779cf57a0b36f1087304082ae50fe')
    version('1.60.1', commit='019e9ed44923e5d845a4800246aa044ddd59d548')
    version('1.58.1', commit='4e2b5efa019fcb677dc82a58a1668c8a00cdfe07')
    version('1.56.0', commit='31fe6fb20d859fcb01d5552f42bca6bab16cc67f')

    depends_on('r@2.9:', type=('build', 'run'))
    depends_on('r-biocgenerics@0.13.11:', type=('build', 'run'))
    depends_on('r-biobase', type=('build', 'run'))
    depends_on('r-annotate', type=('build', 'run'))
    depends_on('r-cluster', type=('build', 'run'))
    depends_on('r-gdata', type=('build', 'run'))
    depends_on('r-pls', type=('build', 'run'))
    depends_on('r-sfsmisc', type=('build', 'run'))
    depends_on('r-mass', type=('build', 'run'))
    depends_on('r-rpart', type=('build', 'run'))
    depends_on('r-rda', type=('build', 'run'))
    depends_on('r-genefilter', type=('build', 'run'))
    depends_on('r-fpc', type=('build', 'run'))
    depends_on('r-ggvis', type=('build', 'run'))
    depends_on('r-shiny', type=('build', 'run'))
    depends_on('r-gbm', type=('build', 'run'))
    depends_on('r-rcolorbrewer', type=('build', 'run'))
    depends_on('r-hwriter', type=('build', 'run'))
    depends_on('r-threejs@0.2.2:', type=('build', 'run'))
    depends_on('r-mlbench', type=('build', 'run'))

    depends_on('r@3.5:', when='@1.60.1:', type=('build', 'run'))