summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Stanley <molecuul@users.noreply.github.com>2019-02-27 13:27:45 -0600
committerLevi Baber <baberlevi@gmail.com>2019-02-27 13:27:45 -0600
commit2f4f828b457147a16685580e0c245adcb5eda7e8 (patch)
treeb89fba73016e0c1561274f1183cba8bad21c24ef
parentb1a04b7699c7b59f0f3ea5a688c7139e0e3ab370 (diff)
downloadspack-2f4f828b457147a16685580e0c245adcb5eda7e8.tar.gz
spack-2f4f828b457147a16685580e0c245adcb5eda7e8.tar.bz2
spack-2f4f828b457147a16685580e0c245adcb5eda7e8.tar.xz
spack-2f4f828b457147a16685580e0c245adcb5eda7e8.zip
wtdbg2: new package (#10639)
* wtdbg2: new package at 2.3 * wtdbg2: flake8 fix
-rw-r--r--var/spack/repos/builtin/packages/wtdbg2/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/wtdbg2/package.py b/var/spack/repos/builtin/packages/wtdbg2/package.py
new file mode 100644
index 0000000000..3c5607dd9a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/wtdbg2/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2019 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 Wtdbg2(MakefilePackage):
+ """A fuzzy Bruijn graph approach to long noisy reads assembly"""
+
+ homepage = "https://github.com/ruanjue/wtdbg2"
+ url = "https://github.com/ruanjue/wtdbg2/archive/v2.3.tar.gz"
+
+ version('2.3', sha256='fb61d38a4c60a39b3b194e63b855141c05ddcbe71cf244ae613766a9b0a56621')
+
+ depends_on('zlib')
+
+ def install(self, spec, prefix):
+ make('install', 'BIN=%s' % prefix.bin)