summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/signalp/package.py
blob: a72e3a4d5d78fe5e1cc459f8199f97ad2256aecf (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
# 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)

import os

from spack.package import *


class Signalp(Package):
    """SignalP predicts the presence and location of signal peptide cleavage
    sites in amino acid sequences from different organisms: Gram-positive
    bacteria, Gram-negative bacteria, and eukaryotes.
    Note: A manual download is required for SignalP.
    Spack will search your current directory for the download file.
    Alternatively, add this file to a mirror so that Spack can find it.
    For instructions on how to set up a mirror, see
    https://spack.readthedocs.io/en/latest/mirrors.html"""

    homepage = "https://www.cbs.dtu.dk/services/SignalP/"
    url = "file://{0}/signalp-4.1f.Linux.tar.gz".format(os.getcwd())
    manual_download = True

    version("4.1f", md5="a9aeb66259202649c959846f3f4d9744")

    depends_on("perl", type=("build", "run"))
    depends_on("gnuplot")

    def patch(self):
        edit = FileFilter("signalp")
        edit.filter("ENV{SIGNALP} = .*", "ENV{SIGNALP} = '%s'" % self.prefix)

    def install(self, spec, prefix):
        mkdirp(prefix.share.man)
        install("signalp", prefix)
        install("signalp.1", prefix.share.man)
        install_tree("bin", prefix.bin)
        install_tree("lib", prefix.lib)
        install_tree("syn", prefix.syn)

    def setup_run_environment(self, env):
        env.prepend_path("PATH", self.prefix)