forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bitseq.rb
39 lines (34 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
class Bitseq < Formula
desc "RNA-seq analysis library"
homepage "https://bitseq.github.io/"
url "https://github.com/BitSeq/BitSeq/archive/v0.7.5.tar.gz"
sha256 "017eb516041de923ecdb5f7122bc2f4f1f99bbc08962028891a6bc845319ac2d"
head "https://github.com/BitSeq/BitSeq.git"
bottle do
cellar :any
sha256 "53a4eb9db5d4368738234abe42096d0658fd932b87d0b48841b638a4f8446654" => :el_capitan
sha256 "17c3a8bc0ab1552eb0a00e9f51739dadbcfc0d647413dd542d498608a7a6b13b" => :yosemite
sha256 "c779feb24ca6061132f4d68af03b5301daa5a2c9eb1c85ffe21a0eda838d4fef" => :mavericks
end
needs :openmp
needs :cxx11
def install
ENV.cxx11
system "make", "LDFLAGS=-Wl,-dead_strip"
bin.install "convertSamples",
"estimateDE",
"estimateExpression",
"estimateHyperPar",
"extractSamples",
"getFoldChange",
"getGeneExpression",
"getPPLR",
"getVariance",
"getWithinGeneExpression",
"parseAlignment",
"transposeLargeFile"
end
test do
system "#{bin}/parseAlignment", "--help"
end
end