-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilterIsoformAbundance.cpp
68 lines (49 loc) · 1.52 KB
/
FilterIsoformAbundance.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
#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
#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;
int main (int argc, char **argv) {
ifstream inf(argv[1]);
map<string,int> gene_abundance;
map<string,int>::iterator it;
while(inf){
string strInput;
getline(inf, strInput);
if(strInput.length() > 0){
vector<string> vec;
split(vec, strInput, is_any_of("\t"));
string gname = vec[0];
int abundance = lexical_cast<int>(vec[7]);
it = gene_abundance.find(gname);
if(it == gene_abundance.end()) gene_abundance[gname] = abundance;
else (it->second) += abundance;
}
}
inf.close();
inf.open(argv[1]);
while(inf){
string strInput;
getline(inf, strInput);
if(strInput.length() > 0){
vector<string> vec;
split(vec, strInput, is_any_of("\t"));
string gname = vec[0];
int abundance = lexical_cast<int>(vec[7]);
it = gene_abundance.find(gname);
if(it == gene_abundance.end()) cout << "Alert" << endl;
else{
double proportion = abundance / ((it->second) + 0.0);
if(proportion > 0.05 || abundance >= 5) cout << strInput << endl;
}
}
}
inf.close();
return 0;
}