homebrew-core/Formula/plink.rb
Carlos Borroto 2ad2e0054c plink 1.07
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>
2011-06-19 09:51:33 -07:00

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