forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
biopp.rb
124 lines (111 loc) · 4.5 KB
/
biopp.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
class Biopp < Formula
desc "Bio++ is a set of C++ libraries for Bioinformatics."
homepage "http://biopp.univ-montp2.fr"
url "http://biopp.univ-montp2.fr/repos/sources/bpp-phyl-omics-2.2.0.tar.gz"
sha256 "a48f4c6f0ea1758c1f6dc8a262d5cbad95769739d46ce9af08527107a548bfaa"
bottle do
cellar :any
revision 1
sha256 "78bfb23487417b433c6ab4cccc895e7a3b0584e96868bf59f001c22a3f715f09" => :yosemite
sha256 "a09ed60fc8333de3c1d9a15192d647fd02ca80e9a6fec79db8163b1ef26fbe4a" => :mavericks
sha256 "07026550e81a868284e88c9db44dcd34f7f0b6f1885e44a2651b7489dbd45365" => :mountain_lion
end
depends_on "cmake" => :build
depends_on "qt" => :recommended
resource "bppcore" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-core-2.2.0.tar.gz"
sha256 "aacd4afddd1584ab6bfa1ff6931259408f1d39958a0bdc5f78bf1f9ee4e98b79"
end
resource "bppseq" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-seq-2.2.0.tar.gz"
sha256 "0927d7fb0301c1b99a7353d5876deadb4a3040776cc74e8fe1c366fe920e7b6b"
end
resource "bppphyl" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-phyl-2.2.0.tar.gz"
sha256 "f346d87bbc7858924f3c99d7d74eb4a1f7a1b926746c68d8c28e07396c64237b"
end
resource "bpppopgen" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-popgen-2.2.0.tar.gz"
sha256 "f489a42b6d16b747af63f69ac1681d6b5de1b5b4511a2ac313f187a58fa5ede1"
end
resource "bppseqomics" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-seq-omics-2.2.0.tar.gz"
sha256 "1cc6a4bc256bbb90d3371c45b0b4b6be6503e1bf5ce702052875ac1cb4b9a13b"
end
resource "bppraa" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-raa-2.2.0.tar.gz"
sha256 "c7ec73a5af84808362f301479c548b6a01c47a66065b28a053ff8043409e861a"
end
resource "bppqt" do
url "http://biopp.univ-montp2.fr/repos/sources/bpp-qt-2.2.0.tar.gz"
sha256 "9662f66bc3491d8e128263f6bd91fcdbecdb375ec9f24519f44855cdcdb9d553"
end
def install
%w[bppcore bppseq bppphyl bpppopgen bppseqomics bppraa].each do |r|
resource(r).stage do
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "#{r}-shared", "#{r}-static"
system "make", "install"
end
end
end
if build.with? "qt"
resource("bppqt").stage do
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "bppqt-shared", "bppqt-static"
system "make", "install"
end
end
end
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "bppphylomics-shared", "bppphylomics-static"
system "make", "install"
end
end
test do
(testpath/"bpp-phyl-test.cpp").write <<-EOS.undent
#include <iostream>
using namespace std;
#include <Bpp/Seq/Alphabet.all>
using namespace bpp;
int main(int args, char ** argv) {
try {
cout << "Hello World!" << endl;
Alphabet *alphabet = new DNA();
cout << "Playing with alphabet " << alphabet->getAlphabetType() << endl;
string state = "A";
bool test = alphabet->isCharInAlphabet("A");
cout << "Test for state " << state << ": " << (test ? ":)" : ":(") << endl;
if(test) cout << state << " actually stands for " << alphabet->getName(state) << endl;
cout << "Numbers of characters: " << alphabet->getNumberOfChars() << endl;
cout << "Numbers of types : " << alphabet->getNumberOfTypes() << endl;
cout << "Size of the alphabet : " << alphabet->getSize() << endl;
vector<string> states = alphabet->getSupportedChars();
cout << "Char Int" << endl;
for(unsigned int i = 0; i < states.size(); i++) {
cout << states[i] << " " << alphabet->charToInt(states[i]) << endl;
}
delete alphabet;
} catch(Exception& e) {
cout << "Bio++ exception:" << endl;
cout << e.what() << endl;
return(-1);
} catch(exception& e) {
cout << "Any other exception:" << endl;
cout << e.what() << endl;
return(-1);
}
return(0);
}
EOS
libs = %W[-lbpp-core -lbpp-seq -lbpp-phyl -lbpp-raa -lbpp-seq-omics
-lbpp-phyl-omics -lbpp-popgen]
libs << "-lbpp-qt" if build.with? "qt"
system ENV.cxx, "-o", "test", "bpp-phyl-test.cpp",
"-I#{include}", "-L#{lib}", *libs
system "./test"
end
end