-
Notifications
You must be signed in to change notification settings - Fork 0
/
mupbwt.cpp
205 lines (185 loc) · 6.91 KB
/
mupbwt.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#include <getopt.h>
#include <iostream>
#include "include/rlpbwt_int.h"
void printHelp() {
std::cout << "Usage: mupbwt [options]\n" << std::endl;
std::cout << "Options:" << std::endl;
std::cout << " -i, --input_file <path>\t macs file for panel" << std::endl;
std::cout << " -s, --save <path>\t path to save serialization "
<< std::endl;
std::cout << " -l, --load <path>\t path to load serialization"
<< std::endl;
std::cout << " -o, --output <path>\t path to query output" << std::endl;
std::cout << " -q, --query <path>\t path to macs query file" << std::endl;
// std::cout << " -e, --extend\t extend matches"
// << std::endl;
std::cout << " -m, --macs\t use macs format for panel and queries"
<< std::endl;
std::cout << " -d, --details\t print memory usage details"
<< std::endl;
std::cout << " -v, --verbose\t extra prints" << std::endl;
std::cout << " -h, --help\t show this help message and exit" << std::endl;
}
int main(int argc, char **argv) {
// TODO option to print stats
if (argc == 1) {
printHelp();
exit(EXIT_SUCCESS);
}
bool verbose = false;
bool details = false;
bool query = false;
bool macs = false;
std::string matrix_input = "";
std::string memorize_file = "";
std::string load_file = "";
std::string output = "";
std::string query_input = "";
int c;
while (true) {
static struct option long_options[] = {
{"input", required_argument, nullptr, 'i'},
{"save", required_argument, nullptr, 's'},
{"load", required_argument, nullptr, 'l'},
{"output", required_argument, nullptr, 'o'},
{"query", required_argument, nullptr, 'q'},
//{"extend", no_argument, nullptr, 'e'},
{"macs", no_argument, nullptr, 'm'},
{"details", no_argument, nullptr, 'd'},
{"verbose", no_argument, nullptr, 'v'},
{"help", no_argument, nullptr, 'h'},
{nullptr, 0, nullptr, 0}};
int option_index = 0;
c = getopt_long(argc, argv, "i:s:l:o:q:emvdh", long_options,
&option_index);
if (c == -1) {
break;
}
switch (c) {
case 'i':
matrix_input = optarg;
break;
case 's':
memorize_file = optarg;
break;
case 'l':
load_file = optarg;
break;
case 'o':
output = optarg;
break;
case 'q':
query_input = optarg;
break;
case 'm':
macs = true;
break;
case 'd':
details = true;
break;
case 'v':
verbose = true;
break;
case 'h':
printHelp();
exit(EXIT_SUCCESS);
default:
printHelp();
exit(EXIT_FAILURE);
}
}
if (!query_input.empty()) {
query = true;
}
if (matrix_input.empty() && load_file.empty()) {
std::cerr << "Error: input or load file required\n";
exit(EXIT_FAILURE);
}
if (memorize_file.empty() && (query_input.empty() || output.empty())) {
if (!details) {
std::cerr << "Error: nothing to do\n";
printHelp();
exit(EXIT_FAILURE);
}
}
if (query && output.empty()) {
std::cerr << "Error: output file required if query requested\n";
printHelp();
exit(EXIT_FAILURE);
}
if (query) {
if (output.empty()) {
std::cerr << "Error: output file required\n";
exit(EXIT_FAILURE);
}
if (query_input.empty()) {
std::cerr << "Error: query file required\n";
exit(EXIT_FAILURE);
}
}
clock_t START = clock();
if (load_file.empty()) {
rlpbwt_int rlpbwt(matrix_input.c_str(), verbose, macs);
if (!memorize_file.empty()) {
std::ofstream outstream;
outstream.open(memorize_file.c_str());
rlpbwt.serialize(outstream);
outstream.close();
}
auto time_build = (float) (clock() - START) / CLOCKS_PER_SEC;
std::cout << "built/loaded in: " << time_build << " s\n";
if (details) {
auto runs = rlpbwt.get_run_number();
std::cout << "\n----\nTotal haplotypes: " << rlpbwt.height << "\n";
std::cout << "Total sites: " << rlpbwt.width << "\n";
std::cout << "----\nTotal runs: " << runs << "\n----\n";
std::cout << "Average runs: " << std::ceil(runs / rlpbwt.width)
<< "\n";
auto s = rlpbwt.size_in_mega_bytes(true);
std::cout << "rlpbwt: " << s << " megabytes\n----\n";
std::cout
<< "estimated dense size: "
<< dense_size_megabyte(rlpbwt.height, rlpbwt.width)
<< " megabytes\n----\n";
}
if (query) {
std::cout << "start querying \n";
START = clock();
rlpbwt.query_match(query_input.c_str(), output.c_str(), verbose,
macs);
auto time_query = (float) (clock() - START) / CLOCKS_PER_SEC;
std::cout << "queried in " << time_query << " s\n";
}
} else {
rlpbwt_int rlpbwt;
std::ifstream load;
load.open(load_file.c_str());
rlpbwt.load(load);
load.close();
auto time_build = (float) (clock() - START) / CLOCKS_PER_SEC;
std::cout << "built/loaded in: " << time_build << " s\n";
if (details) {
auto runs = rlpbwt.get_run_number();
std::cout << "\n----\nTotal haplotypes: " << rlpbwt.height << "\n";
std::cout << "Total sites: " << rlpbwt.width << "\n";
std::cout << "----\nTotal runs: " << runs << "\n";
std::cout << "Average runs: " << std::ceil(runs / rlpbwt.width)
<< "\n----\n";
auto s = rlpbwt.size_in_mega_bytes(true);
std::cout << "rlpbwt: " << s << " megabytes\n----\n";
std::cout
<< "estimated dense size: "
<< dense_size_megabyte(rlpbwt.height, rlpbwt.width)
<< " megabytes\n----\n";
}
if (query) {
std::cout << "start querying \n";
START = clock();
rlpbwt.query_match(query_input.c_str(), output.c_str(), verbose,
macs);
auto time_query = (float) (clock() - START) / CLOCKS_PER_SEC;
std::cout << "queried in " << time_query << " s\n";
}
}
return 0;
}