forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitseq.rb
More file actions
27 lines (24 loc) · 720 Bytes
/
bitseq.rb
File metadata and controls
27 lines (24 loc) · 720 Bytes
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
class Bitseq < Formula
homepage "https://code.google.com/p/bitseq/"
url "https://bitseq.googlecode.com/files/BitSeq-0.4.3.tar.gz"
sha1 "603feb5fccdd95d496c27fe78e7f1f81e46bc1ed"
needs :openmp
def install
system "make"
bin.install "convertSamples",
"estimateDE",
"estimateExpression",
"estimateHyperPar",
"extractSamples",
"getFoldChange",
"getGeneExpression",
"getPPLR",
"getVariance",
"getWithinGeneExpression",
"parseAlignment",
"transposeLargeFile"
end
test do
system "#{bin}/parseAlignment", "--help"
end
end