summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fimpute/package.py
blob: 10e93d2a54e8c51cfa358678b6fd2ef7df45a0a7 (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-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 Fimpute(Package):
    """FImpute uses an overlapping sliding window approach to efficiently
       exploit relationships or haplotype similarities between target and
       reference individuals."""

    homepage = "http://www.aps.uoguelph.ca/~msargol/fimpute/"
    url      = "http://www.aps.uoguelph.ca/~msargol/fimpute/FImpute_Linux.zip"

    version('2014-01', 'df934a25c76dabef7d7afcb5b8058d98')

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