2ad2e0054c
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. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
405 B
Ruby
15 lines
405 B
Ruby
require 'formula'
|
|
|
|
class Plink < Formula
|
|
url 'http://pngu.mgh.harvard.edu/~purcell/plink/dist/plink-1.07-src.zip'
|
|
homepage 'http://pngu.mgh.harvard.edu/~purcell/plink/'
|
|
md5 '4566376791df4e69459b849bd7078fa3'
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
inreplace "Makefile", "SYS = UNIX", "SYS = MAC"
|
|
system "make"
|
|
(share+'plink').install %w{test.map test.ped}
|
|
bin.install "plink"
|
|
end
|
|
end
|