-
Notifications
You must be signed in to change notification settings - Fork 51
/
abcPSMC.cpp
184 lines (154 loc) · 4.54 KB
/
abcPSMC.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
/*
This is a class that dumps psmc file output
*/
#include "analysisFunction.h"
#include "shared.h"
#include <htslib/kstring.h>
#include "abcPSMC.h"
#include "aio.h"
void abcPSMC::printArg(FILE *argFile){
fprintf(argFile,"------------------------\n%s:\n",__FILE__);
fprintf(argFile,"\t-writePSMC\t%d\n",dopsmc);
fprintf(argFile,"\t1: (still beta, not really working)\n");
}
void abcPSMC::algoJoint(double **liks,int nsites,int *keepSites,psmcRes *r,int noTrans) {
// fprintf(stderr,"[%s]\n",__FUNCTION__);
int myCounter =0;
ASSERT(liks);
for(int it=0; it<nsites; it++) {//loop over sites
if(keepSites[it]==0)
continue;
// AA,AC,AG,AT,CC,CG,CT,GG,GT,TT
// 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
// =. -. *. -. =. -. *. =. -. =
const char homoz[] = {0,4,7,9};//=
const char transverz[] = {1,3,5,8};//-
const char transitz[] ={2,6};//*
double homo =log(0);
double het= log(0);
for(int i=0;i<4;i++){
homo =angsd::addProtect2(homo,liks[it][homoz[i]]);
het = angsd::addProtect2(het,liks[it][transverz[i]]);
}
for(int i=0;(noTrans==0&&i<2);i++)
het = angsd::addProtect2(het,liks[it][transitz[i]]);
r->oklist[it] = 1;
r->pLikes[it*2] = homo;
r->pLikes[it*2+1] = het;
}
}
void abcPSMC::run(funkyPars *pars){
if(dopsmc==0)
return ;
psmcRes *r = new psmcRes;
r->oklist = (char*) calloc(pars->numSites,sizeof(char));
r->pLikes = (double *) calloc(pars->numSites,2*sizeof(double));
algoJoint(pars->likes,pars->numSites,pars->keepSites,r,noTrans);
pars->extras[index] = r;
}
void abcPSMC::clean(funkyPars *pars){
if(dopsmc==0)
return;
}
void printit(funkyPars *p,int index,BGZF *outfileSFS,BGZF *outfileSFSPOS,char *chr,int &nnnSites){
psmcRes *r=(psmcRes *) p->extras[index];
for(int s=0; s<p->numSites;s++){
if(r->oklist[s]==1){
nnnSites++;
aio::bgzf_write(outfileSFS,&r->pLikes[2*s],sizeof(double)*2);
}
}
for(int i=0;i<p->numSites;i++){
int mypos = p->posi[i];
if(r->oklist[i]==1)
aio::bgzf_write(outfileSFSPOS,&mypos,sizeof(int));
else if (r->oklist[i]==2)
fprintf(stderr,"PROBS at: %s\t%d\n",chr,p->posi[i]+1);
}
//fprintf(stderr,"asdf: nnnSites:%d\n",nnnSites);
}
void abcPSMC::print(funkyPars *pars){
if(dopsmc==0)
return;
printit(pars,index,outfileSAF,outfileSAFPOS,header->target_name[pars->refId],nnnSites);
}
void abcPSMC::getOptions(argStruct *arguments){
dopsmc=angsd::getArg("-doPSMC",dopsmc,arguments);
if(dopsmc==0)
return;
int gl =0;
gl=angsd::getArg("-gl",gl,arguments);
if(gl==0){//||INPUT_BEAGLE||INPUT_VCF_GP){
fprintf(stderr,"\nPotential problem. We need genotypes for dumping psmc\n\n");
exit(0);
}
noTrans = angsd::getArg("-noTrans",noTrans,arguments);
}
abcPSMC::abcPSMC(const char *outfiles,argStruct *arguments,int inputtype){
noTrans = 0;
tmpChr = NULL;
dopsmc =0;
outfileSAF = NULL;
outfileSAFPOS = NULL;
outfileSAFIDX = NULL;
nnnSites = 0;
if(arguments->argc==2){
if(!strcasecmp(arguments->argv[1],"-dopsmc")){
printArg(stdout);
exit(0);
}else
return;
}
getOptions(arguments);
if(dopsmc==0){
shouldRun[index] =0;
return;
}
printArg(arguments->argumentFile);
const char *SAF = ".psmc.gz";
const char *SAFPOS =".psmc.pos.gz";
const char *SAFIDX =".psmc.idx";
outfileSAF = aio::openFileBG(outfiles,SAF);
outfileSAFPOS = aio::openFileBG(outfiles,SAFPOS);
outfileSAFIDX = aio::openFile(outfiles,SAFIDX);
char buf[8]="psmcv1";
aio::bgzf_write(outfileSAF,buf,8);
aio::bgzf_write(outfileSAFPOS,buf,8);
fwrite(buf,1,8,outfileSAFIDX);
offs[0] = bgzf_tell(outfileSAFPOS);
offs[1] = bgzf_tell(outfileSAF);
}
void abcPSMC::writeAll(){
aio::doAssert(outfileSAF!=NULL);
aio::doAssert(outfileSAFIDX!=NULL);
aio::doAssert(outfileSAFPOS!=NULL);
// fprintf(stderr,"nnnSites:%d\n",nnnSites);
if(nnnSites!=0&&tmpChr!=NULL){
size_t clen = strlen(tmpChr);
fwrite(&clen,sizeof(size_t),1,outfileSAFIDX);
fwrite(tmpChr,1,clen,outfileSAFIDX);
size_t tt = nnnSites;
fwrite(&tt,sizeof(size_t),1,outfileSAFIDX);
fwrite(offs,sizeof(int64_t),2,outfileSAFIDX);
}//else
// fprintf(stderr,"enpty chr\n");
//reset
offs[0] = bgzf_tell(outfileSAFPOS);
offs[1] = bgzf_tell(outfileSAF);
nnnSites=0;
}
abcPSMC::~abcPSMC(){
if(dopsmc){
writeAll();
bgzf_close(outfileSAF);
bgzf_close(outfileSAFPOS);
fclose(outfileSAFIDX);
}
}
void abcPSMC::changeChr(int refId) {
if(dopsmc){
writeAll();
free(tmpChr);
tmpChr = strdup(header->target_name[refId]);
}
}