summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-annotationforge/package.py
blob: 41dfa85c2563f8e5fa4d2e775b6f0a997b5df2ae (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 RAnnotationforge(RPackage):
    """Provides code for generating Annotation packages and
    their databases. Packages produced are intended to be used
    with AnnotationDbi."""

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

    version('1.18.2', commit='44ca3d4ef9e9825c14725ffdbbaa57ea059532e1')

    depends_on('r@3.4.0:3.4.9', when='@1.18.2')
    depends_on('r-biocgenerics', type=('build', 'run'))
    depends_on('r-biobase', type=('build', 'run'))
    depends_on('r-annotationdbi', type=('build', 'run'))
    depends_on('r-dbi', type=('build', 'run'))
    depends_on('r-rsqlite', type=('build', 'run'))
    depends_on('r-xml', type=('build', 'run'))
    depends_on('r-s4vectors', type=('build', 'run'))
    depends_on('r-rcurl', type=('build', 'run'))