summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/barrnap/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/barrnap/package.py')
-rw-r--r--var/spack/repos/builtin/packages/barrnap/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/barrnap/package.py b/var/spack/repos/builtin/packages/barrnap/package.py
new file mode 100644
index 0000000000..3332b120a8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/barrnap/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 Barrnap(Package):
+ """Barrnap predicts the location of ribosomal RNA genes in genomes."""
+
+ homepage = "https://github.com/tseemann/barrnap"
+ url = "https://github.com/tseemann/barrnap/archive/0.8.tar.gz"
+
+ version('0.8', 'd02ccb800d60fa824bae946dd4fa2358')
+
+ depends_on('hmmer@3.1b:', type='run')
+
+ def install(self, spec, prefix):
+ install_tree('bin', prefix.bin)
+ install_tree('db', prefix.db)