summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-breakseq2/package.py
blob: 339404ac00b238560ebf478c3bd0bedbf5d834ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 PyBreakseq2(PythonPackage):
    """nucleotide-resolution analysis of structural variants"""

    homepage = "https://bioinform.github.io/breakseq2/"
    url      = "https://github.com/bioinform/breakseq2/archive/2.2.tar.gz"

    version('2.2', sha256='d149e803191e6bb0b749abfba2c258716d94a38e942aaed40eb1630ae84f91ee')

    depends_on('py-setuptools', type='build')
    depends_on('py-biopython@1.65', type=('build', 'run'))
    depends_on('py-cython', type='build')
    depends_on('py-pysam@0.7.7', type=('build', 'run'))
    depends_on('bwa', type='run')
    depends_on('samtools', type='run')