summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/halc/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/halc/package.py')
-rw-r--r--var/spack/repos/builtin/packages/halc/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/halc/package.py b/var/spack/repos/builtin/packages/halc/package.py
new file mode 100644
index 0000000000..7d2e76be75
--- /dev/null
+++ b/var/spack/repos/builtin/packages/halc/package.py
@@ -0,0 +1,29 @@
+# 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 Halc(MakefilePackage):
+ """HALC is software that makes error correction for long reads with
+ high throughput."""
+
+ homepage = "https://github.com/lanl001/halc"
+ url = "https://github.com/lanl001/halc/archive/v1.1.tar.gz"
+
+ version('1.1', '4b289b366f6a5400ca481993aa68dd9c')
+
+ depends_on('blasr', type='run')
+ depends_on('lordec', type='run')
+ depends_on('dos2unix', type='build')
+ depends_on('python', type='run')
+
+ parallel = False
+
+ def install(self, spec, prefix):
+ install_tree('bin', prefix.bin)
+ install('runHALC.py', prefix.bin)
+ dos2unix = which('dos2unix')
+ dos2unix(join_path(self.prefix.bin, 'runHALC.py'))