summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-metasv/package.py
blob: b825907b858bc0271cde8af0d7c07ccf5ef50083 (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-2023 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.package import *


class PyMetasv(PythonPackage):
    """An accurate and integrative structural-variant caller for next
    generation sequencing"""

    homepage = "https://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")