summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/hapdip/package.py
blob: 92673b2b342fd5603fd41e40d9895cee9cb31c63 (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-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 Hapdip(Package):
    """The CHM1-NA12878 benchmark for single-sample SNP/INDEL calling from
    WGS Illumina data."""

    homepage = "https://github.com/lh3/hapdip"
    git      = "https://github.com/lh3/hapdip.git"

    version('2018.02.20', commit='7c12f684471999a543fdacce972c9c86349758a3')

    depends_on('k8', type='run')

    def install(self, spec, prefix):
        install_tree('.', prefix.bin)