forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ace-corrector.rb
31 lines (25 loc) · 949 Bytes
/
ace-corrector.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class AceCorrector < Formula
desc "correct substitution errors in Illumina reads"
homepage "https://github.com/Sheikhizadeh/ACE"
# doi "10.1093/bioinformatics/btv332"
# tag "bioinformatics"
url "https://github.com/Sheikhizadeh/ACE.git",
:revision => "189f154997aeef954d690a8a08300233c21305f3"
version "20150501"
head "https://github.com/Sheikhizadeh/ACE.git"
bottle do
cellar :any
sha256 "b2c892395c18bcc13554e31a6ed081a452ca200248969624e88e6dcd81c3fc18" => :yosemite
sha256 "fc42d8edbc95c265d8a07d66768a769877fb1f14ebafd2e9217cbcb1b4230ee7" => :mavericks
sha256 "4d3ecdea8c3226b4c9bb2e438fa3020f0e5e3836d47b17d6111fa8096a894681" => :mountain_lion
sha256 "2a7d5e89f16e4fd0cbfce19ed4f487cb1d288b9026827ef4bfe37d36dc1af703" => :x86_64_linux
end
needs :openmp
def install
system "make"
bin.install "ace"
end
test do
assert_match "Genome_length", shell_output("ace 2>&1", 0)
end
end