summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rnaseqmap/package.py
blob: 361e11a8f107476be37acc20996f9f57e518e451 (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
# 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 RRnaseqmap(RPackage):
    """rnaSeq secondary analyses.

       The rnaSeqMap library provides classes and functions to analyze the RNA-
       sequencing data using the coverage profiles in multiple samples at a
       time"""

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

    version('2.42.0', commit='3a3a1030cc38d79d04536e0ab16114e4fa6721cf')
    version('2.40.1', commit='c122d645b3503fb1a061f5515e4f8cf2863b3ba3')
    version('2.38.0', commit='5eb9583bfacd375161739a8ae6057204487f8b9e')
    version('2.36.0', commit='69c46fa467be0ac30776ede85a521f7622539b7e')
    version('2.34.0', commit='7881bc00600ed824ac437edf3cfba35573261e46')

    depends_on('r@2.11.0:', type=('build', 'run'))
    depends_on('r-biobase', type=('build', 'run'))
    depends_on('r-rsamtools', type=('build', 'run'))
    depends_on('r-genomicalignments', type=('build', 'run'))
    depends_on('r-genomicranges', type=('build', 'run'))
    depends_on('r-iranges', type=('build', 'run'))
    depends_on('r-edger', type=('build', 'run'))
    depends_on('r-deseq', type=('build', 'run'))
    depends_on('r-dbi', type=('build', 'run'))