-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapsifter.cpp
227 lines (199 loc) · 7 KB
/
mapsifter.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/* mapsifter: a program for sifting through read map locations, and
* obtaining those fitting score and position criteria
*
* Copyright (C) 2009 University of Southern California and
* Andrew D. Smith
*
* Authors: Andrew D. Smith
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <fstream>
#include "OptionParser.hpp"
#include "smithlab_utils.hpp"
#include "GenomicRegion.hpp"
using std::ofstream;
using std::string;
using std::vector;
using std::ostream;
using std::cout;
using std::endl;
using std::cerr;
using std::numeric_limits;
using std::unordered_map;
void
filter_scores(const float lower_bound, const float upper_bound,
vector<GenomicRegion> ®ions) {
vector<GenomicRegion> new_regions;
new_regions.reserve(regions.size()/2);
for (size_t i = 0; i < regions.size(); ++i) {
const double score(regions[i].get_score());
if (score >= lower_bound && score <= upper_bound)
new_regions.push_back(regions[i]);
}
regions.swap(new_regions);
}
void
sift_single_chrom(const vector<GenomicRegion> &other_regions,
const bool exclude, const bool full_containment,
const vector<GenomicRegion> ®ions,
vector<GenomicRegion> &good_regions) {
typedef vector<GenomicRegion>::const_iterator region_itr;
if (exclude) {
if (full_containment) {
for (size_t i = 0; i < regions.size(); ++i) {
region_itr closest(find_closest(other_regions, regions[i]));
if (!closest->contains(regions[i]))
good_regions.push_back(regions[i]);
}
}
else {
for (size_t i = 0; i < regions.size(); ++i) {
region_itr closest(find_closest(other_regions, regions[i]));
if (!closest->overlaps(regions[i]))
good_regions.push_back(regions[i]);
}
}
}
else {
if (full_containment) {
for (size_t i = 0; i < regions.size(); ++i) {
region_itr closest(find_closest(other_regions, regions[i]));
if (closest->contains(regions[i]))
good_regions.push_back(regions[i]);
}
}
else {
for (size_t i = 0; i < regions.size(); ++i) {
region_itr closest(find_closest(other_regions, regions[i]));
if (closest->overlaps(regions[i]))
good_regions.push_back(regions[i]);
}
}
}
}
void
sift(const vector<GenomicRegion> &other_regions,
const bool exclude, const bool full_containment,
vector<GenomicRegion> ®ions) {
vector<vector<GenomicRegion> > other_regions_by_chrom;
separate_chromosomes(other_regions, other_regions_by_chrom);
unordered_map<string, size_t> chrom_lookup;
for (size_t i = 0; i < other_regions_by_chrom.size(); ++i)
chrom_lookup[other_regions_by_chrom[i].front().get_chrom()] = i;
const vector<GenomicRegion> dummy;
vector<vector<GenomicRegion> > regions_by_chrom;
separate_chromosomes(regions, regions_by_chrom);
regions.clear();
vector<GenomicRegion> good_regions;
for (size_t i = 0; i < regions_by_chrom.size(); ++i) {
const unordered_map<string, size_t>::const_iterator j =
chrom_lookup.find(regions_by_chrom[i].front().get_chrom());
if (j != chrom_lookup.end()) {
sift_single_chrom(other_regions_by_chrom[j->second],
exclude, full_containment, regions_by_chrom[i],
good_regions);
}
else if (exclude)
good_regions.insert(good_regions.end(), regions_by_chrom[i].begin(),
regions_by_chrom[i].end());
}
regions.swap(good_regions);
}
int
main(int argc, const char **argv) {
/* FILES */
string target_regions_file;
string outfile;
bool exclude = false;
bool full_containment = false;
bool VERBOSE = false;
float upper_bound = numeric_limits<float>::max();
float lower_bound = -numeric_limits<float>::max();
/****************** GET COMMAND LINE ARGUMENTS ***************************/
OptionParser opt_parse("mapsifter", "a program for sifting through mapped "
"read locations (given in BED format)",
"<bed-format-file>");
opt_parse.add_opt("output", 'o', "Name of output file (default: stdout)",
false , outfile);
opt_parse.add_opt("verbose", 'v', "print more run info",
false , VERBOSE);
opt_parse.add_opt("exclude", 'e', "exclude contained",
false , exclude);
opt_parse.add_opt("upper", 'u', "upper bound on scores",
false , upper_bound);
opt_parse.add_opt("lower", 'l', "lower bound on scores",
false , lower_bound);
opt_parse.add_opt("target", 't', "target regions file",
false , target_regions_file);
vector<string> leftover_args;
opt_parse.parse(argc, argv, leftover_args);
if (argc == 1 || opt_parse.help_requested()) {
cerr << opt_parse.help_message() << endl;
return EXIT_SUCCESS;
}
if (opt_parse.about_requested()) {
cerr << opt_parse.about_message() << endl;
return EXIT_SUCCESS;
}
if (opt_parse.option_missing()) {
cerr << opt_parse.option_missing_message() << endl;
return EXIT_SUCCESS;
}
if (leftover_args.size() != 1) {
cerr << opt_parse.help_message() << endl;
return EXIT_SUCCESS;
}
const string input_file_name = leftover_args.back();
/**********************************************************************/
try {
if (VERBOSE && full_containment)
cerr << "WARNING: full containment may not "
<< "work if target regions overlap" << endl;
vector<GenomicRegion> regions;
ReadBEDFile(input_file_name, regions);
if (!target_regions_file.empty()) {
if (!check_sorted(regions)) {
cerr << "ERROR: regions in \"" << input_file_name
<< "\" not sorted" << endl;
return EXIT_FAILURE;
}
vector<GenomicRegion> other_regions;
ReadBEDFile(target_regions_file, other_regions);
if (!check_sorted(other_regions)) {
cerr << "ERROR: regions in \"" << target_regions_file
<< "\" not sorted" << endl;
return EXIT_FAILURE;
}
sift(other_regions, exclude, full_containment, regions);
}
if (lower_bound != -numeric_limits<float>::max() ||
upper_bound != numeric_limits<float>::max())
filter_scores(lower_bound, upper_bound, regions);
ostream* out = (!outfile.empty()) ?
new ofstream(outfile.c_str()) : &cout;
copy(regions.begin(), regions.end(),
std::ostream_iterator<GenomicRegion>(*out, "\n"));
if (out != &cout) delete out;
}
catch (SMITHLABException &e) {
cerr << "ERROR:\t" << e.what() << endl;
return EXIT_FAILURE;
}
catch (std::bad_alloc &ba) {
cerr << "ERROR: could not allocate memory" << endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}