summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-metasv/package.py
blob: 72b5a319252c3a07b8aa26f09cd65efdd8cc10b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2021 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 PyMetasv(PythonPackage):
    """An accurate and integrative structural-variant caller for next
       generation sequencing"""

    homepage = "http://bioinform.github.io/metasv/"
    url      = "https://github.com/bioinform/metasv/archive/0.5.4.tar.gz"

    version('0.5.4', sha256='c8613b56f44b9303b9e126618b2aee9dbc0b26c03d14e70e1aeed918582eeec1')

    depends_on('py-pybedtools@0.6.9', type=('build', 'run'))
    depends_on('py-pysam', type=('build', 'run'))
    depends_on('py-pyvcf', type=('build', 'run'))
    depends_on('py-setuptools', type='build')