forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kollector.rb
31 lines (27 loc) · 1 KB
/
kollector.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 Kollector < Formula
desc "Targeted de novo gene assembly"
homepage "https://github.com/bcgsc/kollector"
url "https://github.com/bcgsc/kollector/archive/V1.0.tar.gz"
sha256 "76dc3e03398ade0ae39b241943ce7dabcf65c09e3b30180726bfea574c462d15"
head "https://github.com/bcgsc/kollector.git"
# tag "bioinformatics"
bottle do
cellar :any_skip_relocation
sha256 "93ef334ebe8c878898ffea334f662e9905b73327d1f9c77c2fa90c50af0f28c8" => :sierra
sha256 "6843361fccee9fb0770f11d636cc457046da0f3173965a1d3d9ccba61e34bf65" => :el_capitan
sha256 "6843361fccee9fb0770f11d636cc457046da0f3173965a1d3d9ccba61e34bf65" => :yosemite
sha256 "36e4b146a71ef0563d83143e83bea1439d85f88698d841f9e1b376304676c67a" => :x86_64_linux
end
depends_on "abyss"
depends_on "biobloomtools"
depends_on "bwa"
depends_on "gmap-gsnap"
depends_on "samtools"
def install
prefix.install Dir["*"]
bin.install_symlink "kollector.sh" => "kollector"
end
test do
system "#{bin}/kollector", "-h"
end
end