summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/satsuma2/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/satsuma2/package.py')
-rw-r--r--var/spack/repos/builtin/packages/satsuma2/package.py21
1 files changed, 11 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/satsuma2/package.py b/var/spack/repos/builtin/packages/satsuma2/package.py
index 41ab18359e..1b59cc03c5 100644
--- a/var/spack/repos/builtin/packages/satsuma2/package.py
+++ b/var/spack/repos/builtin/packages/satsuma2/package.py
@@ -8,22 +8,23 @@ from spack.package import *
class Satsuma2(CMakePackage):
"""Satsuma2 is an optimsed version of Satsuma, a tool to reliably align
- large and complex DNA sequences providing maximum sensitivity (to find
- all there is to find), specificity (to only find real homology) and
- speed (to accomodate the billions of base pairs in vertebrate genomes).
+ large and complex DNA sequences providing maximum sensitivity (to find
+ all there is to find), specificity (to only find real homology) and
+ speed (to accomodate the billions of base pairs in vertebrate genomes).
"""
homepage = "https://github.com/bioinfologics/satsuma2"
- git = "https://github.com/bioinfologics/satsuma2.git"
+ git = "https://github.com/bioinfologics/satsuma2.git"
- version('2021-03-04', commit='37c5f386819614cd3ce96016b423ddc4df1d86ec')
- version('2016-11-22', commit='da694aeecf352e344b790bea4a7aaa529f5b69e6')
+ version("2021-03-04", commit="37c5f386819614cd3ce96016b423ddc4df1d86ec")
+ version("2016-11-22", commit="da694aeecf352e344b790bea4a7aaa529f5b69e6")
- maintainers = ['snehring']
+ maintainers = ["snehring"]
def patch(self):
- filter_file('(^#include <unistd.h>$)', '\\1\n#include <memory>',
- 'analysis/SatsumaSynteny2.cc')
+ filter_file(
+ "(^#include <unistd.h>$)", "\\1\n#include <memory>", "analysis/SatsumaSynteny2.cc"
+ )
def install(self, spec, prefix):
- install_tree(join_path(self.build_directory, 'bin'), prefix.bin)
+ install_tree(join_path(self.build_directory, "bin"), prefix.bin)