summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fermikit/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/fermikit/package.py')
-rw-r--r--var/spack/repos/builtin/packages/fermikit/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fermikit/package.py b/var/spack/repos/builtin/packages/fermikit/package.py
new file mode 100644
index 0000000000..0f44174fda
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fermikit/package.py
@@ -0,0 +1,22 @@
+# 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 Fermikit(MakefilePackage):
+ """De novo assembly based variant calling pipeline for Illumina short
+ reads"""
+
+ homepage = "https://github.com/lh3/fermikit"
+ git = "https://github.com/lh3/fermikit.git"
+
+ version('2017-11-7', commit='bf9c7112221577ba110665bddca8f1987250bdc7',
+ submodules=True)
+
+ depends_on('zlib')
+
+ def install(self, spec, prefix):
+ install_tree('fermi.kit', prefix.bin)