summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/hisea/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2018-11-13 11:05:17 -0600
committerTodd Gamblin <tgamblin@llnl.gov>2018-11-13 11:05:17 -0600
commit42962f2409fe7b46543dc5974c45bb6392fcea99 (patch)
tree2063188dd6902f9b6ea7e8a2601f6131ac88046d /var/spack/repos/builtin/packages/hisea/package.py
parent041aa143db6964575625f1849de639541efb83a5 (diff)
parent8554e933d2a236df20d07a6e0416ab444790bd3d (diff)
downloadspack-42962f2409fe7b46543dc5974c45bb6392fcea99.tar.gz
spack-42962f2409fe7b46543dc5974c45bb6392fcea99.tar.bz2
spack-42962f2409fe7b46543dc5974c45bb6392fcea99.tar.xz
spack-42962f2409fe7b46543dc5974c45bb6392fcea99.zip
Merge branch 'releases/v0.12'v0.12.0
Diffstat (limited to 'var/spack/repos/builtin/packages/hisea/package.py')
-rw-r--r--var/spack/repos/builtin/packages/hisea/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hisea/package.py b/var/spack/repos/builtin/packages/hisea/package.py
new file mode 100644
index 0000000000..f2d215242b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/hisea/package.py
@@ -0,0 +1,24 @@
+# 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 Hisea(MakefilePackage):
+ """HISEA is an efficient all-vs-all long read aligner for SMRT sequencing
+ data. Its algorithm is designed to produce highest alignment sensitivity
+ among others."""
+
+ homepage = "https://doi.org/10.1186/s12859-017-1953-9"
+ url = "https://github.com/lucian-ilie/HISEA"
+
+ version('2017.12.26', '54211bdc33b7ce52a8f1e76845935eb8',
+ url='https://github.com/lucian-ilie/HISEA/tarball/39e01e98caa0f2101da806ca59306296effe789c')
+
+ depends_on('boost')
+
+ def install(self, spec, prefix):
+ mkdirp(prefix.bin)
+ install('hisea', prefix.bin)