
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
23 lines
871 B
Python
23 lines
871 B
Python
# 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 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).
|
|
"""
|
|
|
|
homepage = "https://github.com/bioinfologics/satsuma2"
|
|
git = "https://github.com/bioinfologics/satsuma2.git"
|
|
|
|
version('2016-11-22', commit='da694aeecf352e344b790bea4a7aaa529f5b69e6')
|
|
|
|
def install(self, spec, prefix):
|
|
install_tree(join_path('spack-build', 'bin'), prefix.bin)
|