
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
22 lines
631 B
Python
22 lines
631 B
Python
# 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 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)
|