summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/muscle/package.py
blob: f874578bac131beef7e6f106d0746936d26af2de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright 2013-2021 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 Muscle(MakefilePackage):
    """MUSCLE is one of the best-performing multiple alignment programs
       according to published benchmark tests, with accuracy and speed
       that are consistently better than CLUSTALW."""

    homepage = "https://drive5.com/muscle/"

    version('3.8.31', sha256='43c5966a82133bd7da5921e8142f2f592c2b5f53d802f0527a2801783af809ad')
    version('3.8.1551', sha256='c70c552231cd3289f1bad51c9bd174804c18bb3adcf47f501afec7a68f9c482e')

    @property
    def build_directory(self):
        if self.spec.satisfies('@3.8.31'):
            return 'src'
        else:
            return '.'

    def url_for_version(self, version):
        fmt_new = 'https://drive5.com/muscle/downloads{0}/muscle{0}_src.tar.gz'
        fmt_old = 'https://drive5.com/muscle/muscle_src_{0}.tar.gz'

        if version == Version('3.8.31'):
            return fmt_new.format(version.dotted)
        else:
            return fmt_old.format(version.dotted)

    def edit(self, spec, prefix):
        mkfile_name = 'Makefile'

        if self.spec.satisfies('@3.8.31'):
            mkfile_name = 'mk'

        makefile = FileFilter(join_path(self.build_directory, mkfile_name))
        makefile.filter('-static', '')
        makefile.filter('-funroll-loops', '')

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install(join_path(self.build_directory, 'muscle'), prefix.bin)