-
Notifications
You must be signed in to change notification settings - Fork 1
/
PolishEndsPolyAUpdate.cpp
182 lines (126 loc) · 4.19 KB
/
PolishEndsPolyAUpdate.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
#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
#include <vector>
#include <map>
#include <algorithm>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
using namespace std;
using namespace boost;
class ENDS {
public:
int tss;
int polya;
string gname;
string tname;
string rname;
string strand;
string chro_tss;
string chro_polya;
void display () {
if(tss == -1) cout << rname << '\t' << gname << '\t' << tname << '\t' << strand << '\t' << chro_tss << "\t*\t" << chro_polya << '\t' << polya << endl;
else cout << rname << '\t' << gname << '\t' << tname << '\t' << strand << '\t' << chro_tss << '\t' << tss << '\t' << chro_polya << '\t' << polya << endl;
}
};
/*int compare_ends_sort (const void *a, const void *b) {
if( (*(ENDS*) a).polya >= (*(ENDS*) b).polya ) return 1;
else return -1;
}*/
map<string,vector<ENDS> > BuildEndsMap (ifstream &inf) {
map<string,vector<ENDS> > ends_map;
while(inf){
string strInput;
getline(inf, strInput);
if(strInput.length() > 0){
vector<string> vec;
split(vec, strInput, is_any_of("\t"));
ENDS ends;
ends.rname = vec[0];
ends.gname = vec[1];
ends.tname = vec[2];
ends.strand = vec[3];
ends.chro_tss = vec[4];
ends.chro_polya = vec[6];
if(vec[5] == "*") ends.tss = -1;
else ends.tss = lexical_cast<int>(vec[5]);
ends.polya = lexical_cast<int>(vec[7]);
ends_map[ends.gname].push_back(ends);
}
}
map<string,vector<ENDS> >::iterator it;
/*for(it = ends_map.begin(); it != ends_map.end(); ++it){
qsort(&((it->second)[0]), (it->second).size(), sizeof(ENDS), compare_ends_sort);
}*/
return ends_map;
}
struct FREQ {
int key;
int freq;
};
vector<FREQ> BuildFreqVector (vector<ENDS> &ends_vec) {
vector<FREQ> freq_vec;
int pre_value = -1;
for(int i = 0; i < ends_vec.size(); ++i){
if(ends_vec[i].polya == pre_value) ++freq_vec[freq_vec.size() - 1].freq;
else{
FREQ freq_rc;
freq_rc.key = ends_vec[i].polya;
freq_rc.freq = 1;
freq_vec.push_back(freq_rc);
pre_value = freq_rc.key;
}
}
return freq_vec;
}
int FindMaxFreq (vector<FREQ> &freq_vec) {
int max_freq = -100;
int max_pos = -1;
for(int i = 0; i < freq_vec.size(); ++i){
if(freq_vec[i].freq > max_freq){
max_freq = freq_vec[i].freq;
max_pos = freq_vec[i].key;
}
}
return max_pos;
}
void PolishEnds (vector<ENDS> &ends_vec, vector<FREQ> &freq_vec) {
int traversed_num = 0;
while(traversed_num < freq_vec.size()){
int max_key = FindMaxFreq(freq_vec);
//cout << "max_key = " << max_key << endl;
for(int i = 0; i < freq_vec.size(); ++i){
if(abs(freq_vec[i].key - max_key) < 30 && freq_vec[i].freq > 0){
freq_vec[i].freq = -1;
++traversed_num;
}
}
//cout << "traversed_num = " << traversed_num << endl;
for(int i = 0; i < ends_vec.size(); ++i){
if(abs(ends_vec[i].polya - max_key) < 30) ends_vec[i].polya = max_key;
}
}
}
int main (int argc, char **argv) {
ifstream inf(argv[1]);
map<string,vector<ENDS> > ends_map = BuildEndsMap(inf);
inf.close();
map<string,vector<ENDS> >::iterator it;
for(it = ends_map.begin(); it != ends_map.end(); ++it){
//cout << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" << endl;
/*for(int i = 0; i < (it->second).size(); ++i){
cout << (it->second)[i].rname << '\t' << (it->second)[i].polya << endl;
}*/
vector<FREQ> freq_vec = BuildFreqVector(it->second);
/*for(int i = 0; i < freq_vec.size(); ++i){
cout << freq_vec[i].key << '\t' << freq_vec[i].freq << endl;
}*/
PolishEnds(it->second, freq_vec);
for(int i = 0; i < (it->second).size(); ++i){
(it->second)[i].display();
}
}
return 0;
}