summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/hapdip/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/hapdip/package.py')
-rw-r--r--var/spack/repos/builtin/packages/hapdip/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hapdip/package.py b/var/spack/repos/builtin/packages/hapdip/package.py
new file mode 100644
index 0000000000..92673b2b34
--- /dev/null
+++ b/var/spack/repos/builtin/packages/hapdip/package.py
@@ -0,0 +1,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)