35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
# Copyright 2013-2019 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 Plink(Package):
|
|
"""PLINK is a free, open-source whole genome association analysis toolset,
|
|
designed to perform a range of basic, large-scale analyses in a
|
|
computationally efficient manner."""
|
|
|
|
homepage = "https://www.cog-genomics.org/plink/1.9/"
|
|
|
|
version('1.9-beta5', '737545504ae19348a44a05fa69b75c28',
|
|
url='https://github.com/chrchang/plink-ng/archive/b15c19f.tar.gz')
|
|
version('1.07', 'fd0bafeda42151b20534e4f97b0d97df',
|
|
url='http://zzz.bwh.harvard.edu/plink/dist/plink-1.07-x86_64.zip',
|
|
preferred=True)
|
|
|
|
depends_on('atlas', when='@1.9-beta5')
|
|
depends_on('netlib-lapack', when='@1.9-beta5')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
if spec.version == Version('1.07'):
|
|
install('plink', prefix.bin)
|
|
install('gPLINK.jar', prefix.bin)
|
|
if spec.version == Version('1.9-beta5'):
|
|
with working_dir('1.9'):
|
|
first_compile = Executable('./plink_first_compile')
|
|
first_compile()
|
|
install('plink', prefix.bin)
|