forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitseq.rb
31 lines (27 loc) · 791 Bytes
/
bitseq.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
require 'formula'
class Bitseq < Formula
homepage 'http://code.google.com/p/bitseq/'
url 'https://bitseq.googlecode.com/files/BitSeq-0.4.3.tar.gz'
sha1 '603feb5fccdd95d496c27fe78e7f1f81e46bc1ed'
fails_with :clang do
cause "bitseq requires OpenMP support"
end
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