forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringtie.rb
26 lines (22 loc) · 839 Bytes
/
stringtie.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
class Stringtie < Formula
homepage "http://ccb.jhu.edu/software/stringtie"
head "https://github.com/gpertea/stringtie"
bottle do
cellar :any
sha256 "de3a457c45fc023c2b9c4e2d8530ec77ade761269897af535fb82a5a904bb354" => :yosemite
sha256 "157abc752800f726bce574ac5dc1322e2ed112b953fdd06dcdf819c1d7abf258" => :mavericks
sha256 "03e7791e8119e5ab2e38eb417bd289f6a266bede9d52bbd98a33e79797c98785" => :mountain_lion
end
# doi "10.1038/nbt.3122"
# tag "bioinformatics"
url "http://ccb.jhu.edu/software/stringtie/dl/stringtie-1.0.4.tar.gz"
sha256 "635099d543bfaf0ec1c84020eb4aa3375714c12e2d0d435dae44901d49fe3ef2"
def install
system "make", "release"
bin.install "stringtie"
doc.install "README", "LICENSE"
end
test do
assert_match "transcripts", shell_output("stringtie 2>&1", 1)
end
end