summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/muse/package.py
blob: 12d7cbe3501f33efe80c705bcc81ff6c242b0d83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 Muse(MakefilePackage):
    """Somatic point mutation caller."""

    homepage = "https://bioinformatics.mdanderson.org/main/MuSE"
    url = "https://github.com/danielfan/MuSE/archive/v1.0-rc.tar.gz"

    version("1.0-rc", sha256="b48b8be0044a2249bdc0b625fe0192c65089c598bbd1b1142902dfa81e804023")

    depends_on("zlib", type="link")

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        install("MuSE", prefix.bin.MuSE)