summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/muse/package.py
blob: e5f7928c988391ef72093d5fecebf45c223d7fba (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
# Copyright 2013-2024 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"

    license("GPL-2.0-or-later")

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

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

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