summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/pmerge/package.py
blob: dc9dd642523e20f0efc5d692bef691f6c3106965 (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
# 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 Pmerge(AutotoolsPackage):
    """PMERGE implements a new method that identifies candidate PSVs by
    building networks of loci that share high levels of nucleotide
    similarity. The PMERGE is embedded in the analysis pipeline of the
    widely used Stacks software, and it is straightforward to apply it as
    an additional filter in population-genomic studies using RAD-seq
    data."""

    homepage = "https://github.com/beiko-lab/PMERGE"
    git = "https://github.com/beiko-lab/PMERGE.git"

    license("GPL-3.0-only")

    version("master", branch="master")

    depends_on("automake@1.14.0:1.14", type="build")
    depends_on("autoconf", type="build")
    depends_on("m4", type="build")
    depends_on("perl", type="build")

    @property
    def configure_directory(self):
        return "Install"