-
Notifications
You must be signed in to change notification settings - Fork 2
/
Glac2FREQSPEC.cpp
236 lines (176 loc) · 5.36 KB
/
Glac2FREQSPEC.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
228
229
230
231
232
233
234
235
#include "Glac2FREQSPEC.h"
using namespace std;
Glac2FREQSPEC::Glac2FREQSPEC(){
}
Glac2FREQSPEC::~Glac2FREQSPEC(){
}
string Glac2FREQSPEC::usage() const{
string usage=string("glactools")+" freqspec [options] <ACF file>"+
"\nThis program will print the number of observed alleles for the reference and alternative alleles\n"+
"The left column is the reference count. The order can be changed using --useanc and --useroot\n"+
"Options:\n"+
"\t\t"+"--splitpop\t\t\tSplit pop.\n"+
"\t\t"+"--freq\t\t\t\tOutput frequencies\n"+
"\t\t"+"--onlysegsite\t\t\tUse only segregating sites\n"+
"\t\t"+"--useanc\t\t\tUse the ancestral allele to report the frequency\n"+
"\t\t"+"--useroot\t\t\tUse the root allele to report the frequency\n";
return usage;
}
int Glac2FREQSPEC::run(int argc, char *argv[]){
//int main (int argc, char *argv[]) {
if(argc == 1 ||
(argc == 2 && (string(argv[1]) == "-h" || string(argv[1]) == "--help") )
){
cerr << "Usage "<<usage()<<endl;
return 1;
}
int lastOpt=1;
//last arg is program name
for(int i=1;i<(argc);i++){
if((string(argv[i]) == "-") ){
lastOpt=i;
break;
}
if(string(argv[i])[0] != '-' ){
lastOpt=i;
break;
}
if(string(argv[i]) == "--onlysegsite" ) {
onlysegsite = true;
continue;
}
if(string(argv[i]) == "--freq" ) {
usefreq= true;
continue;
}
if(string(argv[i]) == "--splitpop" ) {
splitpop = true;
continue;
}
if(string(argv[i]) == "--useanc" ) {
useAnc = true;
continue;
}
if(string(argv[i]) == "--useroot" ) {
useRoot = true;
continue;
}
cerr<<"Error unknown option #"<<argv[i]<<"#"<<endl;
return 1;
}
if(useRoot && useAnc){
cerr<<"Glac2FREQSPEC: Cannot use both the ancestor and the root"<<endl;
return 1;
}
string glacfile = string(argv[lastOpt]);
GlacParser gp (glacfile);
uint64_t totalRecords=0;
AlleleRecords * arr;
while(gp.hasData()){
arr = gp.getData();
totalRecords++;
//non-seg site, no point in looking at those
if(onlysegsite)
if(!isResolvedDNA(arr->alt))
continue;
unsigned int refCounter=0;
unsigned int altCounter=0;
vector< pair<unsigned int,unsigned int> > alleleC;
bool rootIsRef = false;
bool ancIsRef = false;
if(useRoot){
if(arr->vectorAlleles->at(0).getRefCount() == 0 &&
arr->vectorAlleles->at(0).getAltCount() == 0 ){
continue;
}
if(arr->vectorAlleles->at(0).getAltCount() != 0 ){
if(arr->vectorAlleles->at(0).getRefCount() != 0 ){
char b=arr->vectorAlleles->at(0).generateRandomAlleleBias(arr->ref,arr->alt);
rootIsRef = (b==arr->ref);
// cerr<<"Cannot determine the root allele for "<<*arr<<endl;
// return 1;
}
rootIsRef=false;
}else{
rootIsRef=true;
}
}
if(useAnc){
if(arr->vectorAlleles->at(1).getRefCount() == 0 &&
arr->vectorAlleles->at(1).getAltCount() == 0 ){
continue;
}
if(arr->vectorAlleles->at(1).getAltCount() != 0 ){
if(arr->vectorAlleles->at(1).getRefCount() != 0 ){
char b=arr->vectorAlleles->at(1).generateRandomAlleleBias(arr->ref,arr->alt);
ancIsRef = (b==arr->ref);
// cerr<<"Cannot determine the root allele for "<<*arr<<endl;
// return 1;
}
ancIsRef=false;
}else{
ancIsRef=true;
}
}
if(splitpop){
for(unsigned j=2;j<arr->vectorAlleles->size();j++){
alleleC.push_back( make_pair<unsigned int,unsigned int>( arr->vectorAlleles->at(j).getRefCount(),
arr->vectorAlleles->at(j).getAltCount() ) );
}
cout<<arr->coordinate;
bool flipAlt=false;
if(useRoot){
if(!rootIsRef)
flipAlt=true;
}
if(useAnc){
if(!ancIsRef)
flipAlt=true;
}
if(flipAlt){
for(unsigned j=0;j<alleleC.size();j++){
double total=1.0;
if(usefreq)
total= double(alleleC[j].first) + double(alleleC[j].second);
cout<<"\t"<<alleleC[j].second/total<<"\t"<<alleleC[j].first/total;
}
}else{
for(unsigned j=0;j<alleleC.size();j++){
double total=1.0;
if(usefreq)
total= double(alleleC[j].first) + double(alleleC[j].second);
cout<<"\t"<<alleleC[j].first/total<<"\t"<<alleleC[j].second/total;
}
}
cout<<endl;
}else{
for(unsigned j=2;j<arr->vectorAlleles->size();j++){
//undefined site
refCounter+=arr->vectorAlleles->at(j).getRefCount();
altCounter+=arr->vectorAlleles->at(j).getAltCount();
}
cout<<arr->chr<<"\t"<<arr->coordinate<<"\t";
double total=1.0;
if(usefreq){
total= double(refCounter) + double(altCounter);
}
if(useRoot){
if(rootIsRef)
cout<<double(refCounter)/total<<"\t"<<double(altCounter)/total<<endl;
else
cout<<double(altCounter)/total<<"\t"<<double(refCounter)/total<<endl;
continue;
}
if(useAnc){
if(ancIsRef)
cout<<double(refCounter)/total<<"\t"<<double(altCounter)/total<<endl;
else
cout<<double(altCounter)/total<<"\t"<<double(refCounter)/total<<endl;
continue;
}
cout<<double(refCounter)/total<<"\t"<<double(altCounter)/total<<endl;
}
}
cerr<<"Program Glac2FREQSPEC looked at "<<totalRecords<<" records, terminated gracefully"<<endl;
return 0;
}