homebrew-core/Formula/bowtie.rb
Ben Blackburne 726be21830 Added bowtie short read aligner
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-11 21:21:29 -07:00

12 lines
341 B
Ruby

require 'formula'
class Bowtie <Formula
url 'http://downloads.sourceforge.net/project/bowtie-bio/bowtie/0.12.5/bowtie-0.12.5-src.zip'
homepage 'http://bowtie-bio.sourceforge.net/index.shtml'
md5 'c3c633b60f82a775226c1d6b27813315'
def install
system "make"
bin.install ["bowtie", "bowtie-build", "bowtie-inspect"]
end
end