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


class Impute2(Package):
    """IMPUTE2 is a genotype imputation and haplotype phasing program based on
       ideas from Howie et al. 2009."""

    homepage = "https://mathgen.stats.ox.ac.uk/impute/impute_v2.html#home"
    url      = "https://mathgen.stats.ox.ac.uk/impute/impute_v2.3.2_x86_64_dynamic.tgz"

    version('2.3.2', '0e1bafb8f63eb5cf9ae02ab761af58aa')

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install('impute2', prefix.bin)