summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ncbi-magicblast/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/ncbi-magicblast/package.py')
-rw-r--r--var/spack/repos/builtin/packages/ncbi-magicblast/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ncbi-magicblast/package.py b/var/spack/repos/builtin/packages/ncbi-magicblast/package.py
new file mode 100644
index 0000000000..b0e9c3434a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/ncbi-magicblast/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 NcbiMagicblast(AutotoolsPackage):
+ """Magic-BLAST is a tool for mapping large next-generation RNA or DNA
+ sequencing runs against a whole genome or transcriptome. """
+
+ homepage = "https://ncbi.github.io/magicblast/"
+ url = "ftp://ftp.ncbi.nlm.nih.gov/blast/executables/magicblast/1.3.0/ncbi-magicblast-1.3.0-src.tar.gz"
+
+ version('1.3.0', '2615b919c1fe1bf7dc3d816392ab4420')
+
+ depends_on('lmdb')
+ configure_directory = 'c++'
+
+ def configure_args(self):
+ return ['--without-internal']