summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-bamsignals/package.py
blob: 78310f5f4ce55a07f10cd58fe5130828e5d4012f (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
# 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 RBamsignals(RPackage):
    """This package allows to efficiently obtain count vectors
    from indexed bam files. It counts the number of reads in given
    genomic ranges and it computes reads profiles and coverage
    profiles. It also handles paired-end data."""

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

    version('1.8.0', commit='b123b83e8e026c9ec91209d4498aff3e95a5de23')

    depends_on('r@3.4.0:3.4.9', when='@1.8.0')
    depends_on('r-biocgenerics', type=('build', 'run'))
    depends_on('r-rcpp', type=('build', 'run'))
    depends_on('r-iranges', type=('build', 'run'))
    depends_on('r-genomicranges', type=('build', 'run'))
    depends_on('r-zlibbioc', type=('build', 'run'))
    depends_on('r-rhtslib', type=('build', 'run'))