-
Notifications
You must be signed in to change notification settings - Fork 1
/
FusionFilter.cpp
200 lines (149 loc) · 4.74 KB
/
FusionFilter.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
#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <map>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
using namespace std;
using namespace boost;
struct EXON {
string chro;
int start;
int end;
string gname;
};
struct GPD {
string gname;
string tname;
string chro;
string strand;
int start;
int end;
int cstart;
int cend;
int nblock;
vector<int> vec_exon_start;
vector<int> vec_exon_end;
};
void BuildGPDFromString (string &str, GPD &gpd) {
vector<string> vec_temp;
boost::split(vec_temp, str, boost::is_any_of("\t"));
gpd.gname = vec_temp[0];
gpd.tname = vec_temp[1];
int L = vec_temp[2].length();
gpd.chro = vec_temp[2];
gpd.strand = vec_temp[3];
gpd.start = lexical_cast<int>(vec_temp[4]);
gpd.end = lexical_cast<int>(vec_temp[5]);
gpd.cstart = lexical_cast<int>(vec_temp[6]);
gpd.cend = lexical_cast<int>(vec_temp[7]);
gpd.nblock = lexical_cast<int>(vec_temp[8]);
vector<string> vec1;
boost::split(vec1, vec_temp[9], boost::is_any_of(","));
for(int i = 0; i < vec1.size() - 1; ++i) (gpd.vec_exon_start).push_back(lexical_cast<int>(vec1[i]));
vector<string> vec2;
boost::split(vec2, vec_temp[10], boost::is_any_of(","));
for(int i = 0; i < vec2.size() - 1; ++i) (gpd.vec_exon_end).push_back(lexical_cast<int>(vec2[i]));
}
int GPD_Length (GPD gpd) {
int gpd_len = 0;
for(int i = 0; i < gpd.nblock; ++i) gpd_len += (gpd.vec_exon_end[i] - gpd.vec_exon_start[i] + 1);
return gpd_len;
}
map<string,vector<EXON> > BuildExonMapFromFile (ifstream &inf) {
map<string,vector<EXON> > exon_map;
while(inf){
string strInput;
getline(inf, strInput);
if(strInput.length() > 0){
GPD gpd;
BuildGPDFromString(strInput, gpd);
for(int i = 0; i < gpd.nblock; ++i){
EXON exon_rc;
exon_rc.chro = gpd.chro;
exon_rc.start = gpd.vec_exon_start[i];
exon_rc.end = gpd.vec_exon_end[i];
exon_rc.gname = gpd.gname;
exon_map[gpd.gname].push_back(exon_rc);
}
}
}
return exon_map;
}
int Overlap (EXON a, EXON b) {
if(a.chro != b.chro) return -1;
else{
if(a.end <= b.start || a.start >= b.end) return -1;
else{
int real_start, real_end;
if(a.start > b.start) real_start = a.start;
else real_start = b.start;
if(a.end > b.end) real_end = b.end;
else real_end = a.end;
return (real_end - real_start);
}
}
}
bool RealFusion (GPD gpd, string gene1, string gene2, map<string,vector<EXON> > &exon_map) {
map<string,vector<EXON> >::iterator it;
bool single1 = false;
bool single2 = false;
for(int i = 0; i < gpd.nblock; ++i){
EXON exon_rc;
exon_rc.chro = gpd.chro;
exon_rc.start = gpd.vec_exon_start[i];
exon_rc.end = gpd.vec_exon_end[i];
exon_rc.gname = gpd.gname;
//cout << exon_rc.start << '\t' << exon_rc.end << endl;
bool overlap1 = false;
it = exon_map.find(gene1);
for(int j = 0; j < (it->second).size(); ++j){
int overlap = Overlap(exon_rc, (it->second)[j]);
if(overlap > 0){
overlap1 = true;
break;
}
}
//if(overlap1) cout << "overlap1" << endl;
bool overlap2 = false;
it = exon_map.find(gene2);
for(int j = 0; j < (it->second).size(); ++j){
int overlap = Overlap(exon_rc, (it->second)[j]);
if(overlap > 0){
overlap2 = true;
break;
}
}
//if(overlap2) cout << "overlap2" << endl;
if(overlap1 && (!overlap2)) single1 = true;
if((!overlap1) && overlap2) single2 = true;
}
return single1 && single2;
}
int main (int argc, char **argv) {
ifstream anno_inf(argv[1]);
map<string,vector<EXON> > exon_map = BuildExonMapFromFile(anno_inf);
anno_inf.close();
ifstream inf(argv[2]);
string strInput1, strInput2;
while(inf){
getline(inf, strInput1);
if(strInput1.length() == 0) break;
getline(inf, strInput2);
GPD gpd;
BuildGPDFromString(strInput1, gpd);
vector<string> vec;
split(vec, strInput2, is_any_of("\t"));
string gene1 = vec[1];
string gene2 = vec[3];
bool real_fusion = RealFusion(gpd, gene1, gene2, exon_map);
if(real_fusion) cout << strInput2 << endl;
}
inf.close();
return 0;
}