summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tmalign/package.py
blob: 48b517ed2bace7c060f02c8d74aa0e33e48b370d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2023 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.package import *


class Tmalign(Package):
    """TM-align is an algorithm for sequence-order independent protein
    structure comparisons."""

    homepage = "https://zhanglab.ccmb.med.umich.edu/TM-align"
    url = "http://zhanglab.ccmb.med.umich.edu/TM-align/TM-align-C/TMalignc.tar.gz"

    version(
        "2016-05-25", sha256="ce7f68289f3766d525afb0a58e3acfc28ae05f538d152bd33d57f8708c60e2af"
    )

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install("TMalign", prefix.bin)