forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astral.rb
29 lines (23 loc) · 933 Bytes
/
astral.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
class Astral < Formula
desc "Estimate species tree given set of unrooted gene trees"
homepage "https://github.com/smirarab/ASTRAL"
bottle do
cellar :any
sha256 "fd942a7f95f5af65cf37b664711b0c163709b344c600e9b54549fe3ed34aab8d" => :yosemite
sha256 "fd942a7f95f5af65cf37b664711b0c163709b344c600e9b54549fe3ed34aab8d" => :mavericks
sha256 "9abe785b08c07bfbb746cd5f3a78c2f3f4b6071fb0698f4e80cc4ae30e94a879" => :mountain_lion
end
# doi "10.1093/bioinformatics/btu462"
# tag "bioinformatics"
url "https://github.com/smirarab/ASTRAL/raw/master/Astral.4.7.8.zip"
sha256 "5761b8e25b1417ee72ddc0658c02e587d4e84c53e99564aca62a793b1736d289"
# head "https://github.com/smirarab/ASTRAL.git"
depends_on :java
def install
pkgshare.install Dir["*"]
bin.write_jar_script pkgshare/"astral.#{version}.jar", "astral"
end
test do
system "astral", "-i", pkgshare/"test_data/trivial.tre"
end
end