2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-08-11 09:03:52 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-08-11 09:03:52 +08:00
|
|
|
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"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2.3.2', sha256='da4f64ec75aa2787b8f234e5a7ac4503d464e55ef436a9cd3f4867a10f0c2867')
|
2017-08-11 09:03:52 +08:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
mkdirp(prefix.bin)
|
|
|
|
install('impute2', prefix.bin)
|