Added bowtie short read aligner

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Ben Blackburne 2009-11-10 22:43:02 +00:00 committed by Adam Vandenberg
parent cb17f0b83f
commit 726be21830

12
Formula/bowtie.rb Normal file
View file

@ -0,0 +1,12 @@
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