summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/vt/package.py
blob: b3b8305a9cbea6898816e32bcc24811b4b25375b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 Vt(MakefilePackage):
    """A tool set for short variant discovery in genetic sequence data."""

    homepage = "http://genome.sph.umich.edu/wiki/vt"
    url      = "https://github.com/atks/vt/archive/0.577.tar.gz"

    version('0.577',  '59807456022bcecf978314c93254fe15')

    def install(self, spec, spack):
        mkdirp(prefix.bin)
        install('vt', prefix.bin)