summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/hapdip/package.py
blob: e590cd7227fe8809deb74c27c0ad8e9180b58f5c (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-2024 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 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)