]> git.donarmstrong.com Git - samtools.git/blob - bcftools/prob1.c
0af5955ebdd0078280654845b2010a4a1d92ad33
[samtools.git] / bcftools / prob1.c
1 #include <math.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <stdio.h>
5 #include <errno.h>
6 #include <assert.h>
7 #include <limits.h>
8 #include "prob1.h"
9 #include "kstring.h"
10
11 #include "kseq.h"
12 KSTREAM_INIT(gzFile, gzread, 16384)
13
14 #define MC_MAX_EM_ITER 16
15 #define MC_EM_EPS 1e-5
16 #define MC_DEF_INDEL 0.15
17
18 unsigned char seq_nt4_table[256] = {
19         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
20         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
21         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4 /*'-'*/, 4, 4,
22         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
23         4, 0, 4, 1,  4, 4, 4, 2,  4, 4, 4, 4,  4, 4, 4, 4, 
24         4, 4, 4, 4,  3, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
25         4, 0, 4, 1,  4, 4, 4, 2,  4, 4, 4, 4,  4, 4, 4, 4, 
26         4, 4, 4, 4,  3, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
27         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
28         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
29         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
30         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
31         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
32         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
33         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4, 
34         4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4,  4, 4, 4, 4
35 };
36
37 struct __bcf_p1aux_t {
38         int n, M, n1, is_indel;
39         uint8_t *ploidy; // haploid or diploid ONLY
40         double *q2p, *pdg; // pdg -> P(D|g)
41         double *phi, *phi_indel;
42         double *z, *zswap; // aux for afs
43         double *z1, *z2, *phi1, *phi2; // only calculated when n1 is set
44         double **hg; // hypergeometric distribution
45         double *lf; // log factorial
46         double t, t1, t2;
47         double *afs, *afs1; // afs: accumulative AFS; afs1: site posterior distribution
48         const uint8_t *PL; // point to PL
49         int PL_len;
50 };
51
52 void bcf_p1_indel_prior(bcf_p1aux_t *ma, double x)
53 {
54         int i;
55         for (i = 0; i < ma->M; ++i)
56                 ma->phi_indel[i] = ma->phi[i] * x;
57         ma->phi_indel[ma->M] = 1. - ma->phi[ma->M] * x;
58 }
59
60 static void init_prior(int type, double theta, int M, double *phi)
61 {
62         int i;
63         if (type == MC_PTYPE_COND2) {
64                 for (i = 0; i <= M; ++i)
65                         phi[i] = 2. * (i + 1) / (M + 1) / (M + 2);
66         } else if (type == MC_PTYPE_FLAT) {
67                 for (i = 0; i <= M; ++i)
68                         phi[i] = 1. / (M + 1);
69         } else {
70                 double sum;
71                 for (i = 0, sum = 0.; i < M; ++i)
72                         sum += (phi[i] = theta / (M - i));
73                 phi[M] = 1. - sum;
74         }
75 }
76
77 void bcf_p1_init_prior(bcf_p1aux_t *ma, int type, double theta)
78 {
79         init_prior(type, theta, ma->M, ma->phi);
80         bcf_p1_indel_prior(ma, MC_DEF_INDEL);
81 }
82
83 void bcf_p1_init_subprior(bcf_p1aux_t *ma, int type, double theta)
84 {
85         if (ma->n1 <= 0 || ma->n1 >= ma->M) return;
86         init_prior(type, theta, 2*ma->n1, ma->phi1);
87         init_prior(type, theta, 2*(ma->n - ma->n1), ma->phi2);
88 }
89
90 int bcf_p1_read_prior(bcf_p1aux_t *ma, const char *fn)
91 {
92         gzFile fp;
93         kstring_t s;
94         kstream_t *ks;
95         long double sum;
96         int dret, k;
97         memset(&s, 0, sizeof(kstring_t));
98         fp = strcmp(fn, "-")? gzopen(fn, "r") : gzdopen(fileno(stdin), "r");
99         ks = ks_init(fp);
100         memset(ma->phi, 0, sizeof(double) * (ma->M + 1));
101         while (ks_getuntil(ks, '\n', &s, &dret) >= 0) {
102                 if (strstr(s.s, "[afs] ") == s.s) {
103                         char *p = s.s + 6;
104                         for (k = 0; k <= ma->M; ++k) {
105                                 int x;
106                                 double y;
107                                 x = strtol(p, &p, 10);
108                                 if (x != k && (errno == EINVAL || errno == ERANGE)) return -1;
109                                 ++p;
110                                 y = strtod(p, &p);
111                                 if (y == 0. && (errno == EINVAL || errno == ERANGE)) return -1;
112                                 ma->phi[ma->M - k] += y;
113                         }
114                 }
115         }
116         ks_destroy(ks);
117         gzclose(fp);
118         free(s.s);
119         for (sum = 0., k = 0; k <= ma->M; ++k) sum += ma->phi[k];
120         fprintf(stderr, "[prior]");
121         for (k = 0; k <= ma->M; ++k) ma->phi[k] /= sum;
122         for (k = 0; k <= ma->M; ++k) fprintf(stderr, " %d:%.3lg", k, ma->phi[ma->M - k]);
123         fputc('\n', stderr);
124         for (sum = 0., k = 1; k < ma->M; ++k) sum += ma->phi[ma->M - k] * (2.* k * (ma->M - k) / ma->M / (ma->M - 1));
125         fprintf(stderr, "[%s] heterozygosity=%lf, ", __func__, (double)sum);
126         for (sum = 0., k = 1; k <= ma->M; ++k) sum += k * ma->phi[ma->M - k] / ma->M;
127         fprintf(stderr, "theta=%lf\n", (double)sum);
128         bcf_p1_indel_prior(ma, MC_DEF_INDEL);
129         return 0;
130 }
131
132 bcf_p1aux_t *bcf_p1_init(int n, uint8_t *ploidy)
133 {
134         bcf_p1aux_t *ma;
135         int i;
136         ma = calloc(1, sizeof(bcf_p1aux_t));
137         ma->n1 = -1;
138         ma->n = n; ma->M = 2 * n;
139         if (ploidy) {
140                 ma->ploidy = malloc(n);
141                 memcpy(ma->ploidy, ploidy, n);
142                 for (i = 0, ma->M = 0; i < n; ++i) ma->M += ploidy[i];
143                 if (ma->M == 2 * n) {
144                         free(ma->ploidy);
145                         ma->ploidy = 0;
146                 }
147         }
148         ma->q2p = calloc(256, sizeof(double));
149         ma->pdg = calloc(3 * ma->n, sizeof(double));
150         ma->phi = calloc(ma->M + 1, sizeof(double));
151         ma->phi_indel = calloc(ma->M + 1, sizeof(double));
152         ma->phi1 = calloc(ma->M + 1, sizeof(double));
153         ma->phi2 = calloc(ma->M + 1, sizeof(double));
154         ma->z = calloc(ma->M + 1, sizeof(double));
155         ma->zswap = calloc(ma->M + 1, sizeof(double));
156         ma->z1 = calloc(ma->M + 1, sizeof(double)); // actually we do not need this large
157         ma->z2 = calloc(ma->M + 1, sizeof(double));
158         ma->afs = calloc(ma->M + 1, sizeof(double));
159         ma->afs1 = calloc(ma->M + 1, sizeof(double));
160         ma->lf = calloc(ma->M + 1, sizeof(double));
161         for (i = 0; i < 256; ++i)
162                 ma->q2p[i] = pow(10., -i / 10.);
163         for (i = 0; i <= ma->M; ++i) ma->lf[i] = lgamma(i + 1);
164         bcf_p1_init_prior(ma, MC_PTYPE_FULL, 1e-3); // the simplest prior
165         return ma;
166 }
167
168 int bcf_p1_set_n1(bcf_p1aux_t *b, int n1)
169 {
170         if (n1 == 0 || n1 >= b->n) return -1;
171         if (b->M != b->n * 2) {
172                 fprintf(stderr, "[%s] unable to set `n1' when there are haploid samples.\n", __func__);
173                 return -1;
174         }
175         b->n1 = n1;
176         return 0;
177 }
178
179 void bcf_p1_set_ploidy(bcf1_t *b, bcf_p1aux_t *ma)
180 {
181     // bcf_p1aux_t fields are not visible outside of prob1.c, hence this wrapper.
182     // Ideally, this should set ploidy per site to allow pseudo-autosomal regions
183     b->ploidy = ma->ploidy;
184 }
185
186 void bcf_p1_destroy(bcf_p1aux_t *ma)
187 {
188         if (ma) {
189                 int k;
190                 free(ma->lf);
191                 if (ma->hg && ma->n1 > 0) {
192                         for (k = 0; k <= 2*ma->n1; ++k) free(ma->hg[k]);
193                         free(ma->hg);
194                 }
195                 free(ma->ploidy); free(ma->q2p); free(ma->pdg);
196                 free(ma->phi); free(ma->phi_indel); free(ma->phi1); free(ma->phi2);
197                 free(ma->z); free(ma->zswap); free(ma->z1); free(ma->z2);
198                 free(ma->afs); free(ma->afs1);
199                 free(ma);
200         }
201 }
202
203 extern double kf_gammap(double s, double z);
204 int test16(bcf1_t *b, anno16_t *a);
205
206 int call_multiallelic_gt(bcf1_t *b, bcf_p1aux_t *ma, double threshold)
207 {
208     int nals = 1;
209     char *p;
210     for (p=b->alt; *p; p++)
211     {
212         if ( *p=='X' || p[0]=='.' ) break;
213         if ( p[0]==',' ) nals++;
214     }
215     if ( b->alt[0] && !*p ) nals++;
216
217     if ( nals==1 ) return 1;
218
219     if ( nals>4 )
220     {
221         if ( *b->ref=='N' ) return 0;
222         fprintf(stderr,"Not ready for this, more than 4 alleles at %d: %s, %s\n", b->pos+1, b->ref,b->alt); 
223         exit(1);
224     }
225
226     // find PL and DP FORMAT indexes
227     uint8_t *pl = NULL;
228     int npl = 0, idp=-1;
229     int i;
230     for (i = 0; i < b->n_gi; ++i) 
231     {
232         if (b->gi[i].fmt == bcf_str2int("PL", 2)) 
233         {
234             pl  = (uint8_t*)b->gi[i].data;
235             npl = b->gi[i].len;
236         }
237         if (b->gi[i].fmt == bcf_str2int("DP", 2))  idp=i;
238     }
239     if ( !pl ) return -1;
240
241     assert(ma->q2p[0] == 1);
242
243     // Init P(D|G)
244     int npdg = nals*(nals+1)/2;
245     double *pdg,*_pdg;
246     _pdg = pdg = malloc(sizeof(double)*ma->n*npdg);
247     for (i=0; i<ma->n; i++)
248     {
249         int j; 
250         double sum = 0;
251         for (j=0; j<npdg; j++)
252         {
253             //_pdg[j] = pow(10,-0.1*pl[j]); 
254             _pdg[j] = ma->q2p[pl[j]];
255             sum += _pdg[j];
256         }
257         if ( sum )
258             for (j=0; j<npdg; j++) _pdg[j] /= sum;
259         _pdg += npdg;
260         pl += npl;
261     }
262
263     if ((p = strstr(b->info, "QS=")) == 0) { fprintf(stderr,"INFO/QS is required with -m, exiting\n"); exit(1); }
264     double qsum[4];
265     if ( sscanf(p+3,"%lf,%lf,%lf,%lf",&qsum[0],&qsum[1],&qsum[2],&qsum[3])!=4 ) { fprintf(stderr,"Could not parse %s\n",p); exit(1); }
266
267
268     // Calculate the most likely combination of alleles
269     int ia,ib,ic, max_als=0, max_als2=0;
270     double ref_lk = 0, max_lk = INT_MIN, max_lk2 = INT_MIN, lk_sum = INT_MIN;
271     for (ia=0; ia<nals; ia++)
272     {
273         double lk_tot = 0;
274         int iaa = (ia+1)*(ia+2)/2-1;
275         int isample;
276         for (isample=0; isample<ma->n; isample++)
277         {
278             double *p = pdg + isample*npdg;
279             // assert( log(p[iaa]) <= 0 );
280             lk_tot += log(p[iaa]);
281         }
282         if ( ia==0 ) ref_lk = lk_tot;
283         if ( max_lk<lk_tot ) { max_lk2 = max_lk; max_als2 = max_als; max_lk = lk_tot; max_als = 1<<ia; }
284         else if ( max_lk2<lk_tot ) { max_lk2 = lk_tot; max_als2 = 1<<ia; }
285         lk_sum = lk_tot>lk_sum ? lk_tot + log(1+exp(lk_sum-lk_tot)) : lk_sum + log(1+exp(lk_tot-lk_sum));
286     }
287     if ( nals>1 )
288     {
289         for (ia=0; ia<nals; ia++)
290         {
291             if ( qsum[ia]==0 ) continue;
292             int iaa = (ia+1)*(ia+2)/2-1;
293             for (ib=0; ib<ia; ib++)
294             {
295                 if ( qsum[ib]==0 ) continue;
296                 double lk_tot = 0;
297                 double fa  = qsum[ia]/(qsum[ia]+qsum[ib]);
298                 double fb  = qsum[ib]/(qsum[ia]+qsum[ib]);
299                 double fab = 2*fa*fb; fa *= fa; fb *= fb;
300                 int isample, ibb = (ib+1)*(ib+2)/2-1, iab = iaa - ia + ib;
301                 for (isample=0; isample<ma->n; isample++)
302                 {
303                     if ( b->ploidy && b->ploidy[isample]==1 ) continue;
304                     double *p = pdg + isample*npdg;
305                     //assert( log(fa*p[iaa] + fb*p[ibb] + fab*p[iab]) <= 0 );
306                     lk_tot += log(fa*p[iaa] + fb*p[ibb] + fab*p[iab]);
307                 }
308                 if ( max_lk<lk_tot ) { max_lk2 = max_lk; max_als2 = max_als; max_lk = lk_tot; max_als = 1<<ia|1<<ib; }
309                 else if ( max_lk2<lk_tot ) { max_lk2 = lk_tot; max_als2 = 1<<ia|1<<ib; }
310                 lk_sum = lk_tot>lk_sum ? lk_tot + log(1+exp(lk_sum-lk_tot)) : lk_sum + log(1+exp(lk_tot-lk_sum));
311             }
312         }
313     }
314     if ( nals>2 )
315     {
316         for (ia=0; ia<nals; ia++)
317         {
318             if ( qsum[ia]==0 ) continue;
319             int iaa = (ia+1)*(ia+2)/2-1;
320             for (ib=0; ib<ia; ib++)
321             {
322                 if ( qsum[ib]==0 ) continue;
323                 int ibb = (ib+1)*(ib+2)/2-1; 
324                 int iab = iaa - ia + ib;
325                 for (ic=0; ic<ib; ic++)
326                 {
327                     if ( qsum[ic]==0 ) continue;
328                     double lk_tot = 0;
329                     double fa  = qsum[ia]/(qsum[ia]+qsum[ib]+qsum[ic]);
330                     double fb  = qsum[ib]/(qsum[ia]+qsum[ib]+qsum[ic]);
331                     double fc  = qsum[ic]/(qsum[ia]+qsum[ib]+qsum[ic]);
332                     double fab = 2*fa*fb, fac = 2*fa*fc, fbc = 2*fb*fc; fa *= fa; fb *= fb; fc *= fc;
333                     int isample, icc = (ic+1)*(ic+2)/2-1;
334                     int iac = iaa - ia + ic, ibc = ibb - ib + ic;
335                     for (isample=0; isample<ma->n; isample++)
336                     {
337                         if ( b->ploidy && b->ploidy[isample]==1 ) continue;
338                         double *p = pdg + isample*npdg;
339                         //assert( log(fa*p[iaa] + fb*p[ibb] + fc*p[icc] + fab*p[iab] + fac*p[iac] + fbc*p[ibc]) <= 0 );
340                         lk_tot += log(fa*p[iaa] + fb*p[ibb] + fc*p[icc] + fab*p[iab] + fac*p[iac] + fbc*p[ibc]);
341                     }
342                     if ( max_lk<lk_tot ) { max_lk2 = max_lk; max_als2 = max_als; max_lk = lk_tot; max_als = 1<<ia|1<<ib|1<<ic; }
343                     else if ( max_lk2<lk_tot ) { max_lk2 = lk_tot; max_als2 = 1<<ia|1<<ib|1<<ic; }
344                     lk_sum = lk_tot>lk_sum ? lk_tot + log(1+exp(lk_sum-lk_tot)) : lk_sum + log(1+exp(lk_tot-lk_sum));
345                 }
346             }
347         }
348     }
349
350
351     // Should we add another allele, does it increase the likelihood significantly?
352     int n1=0, n2=0;
353     for (i=0; i<nals; i++) if ( max_als&1<<i) n1++;
354     for (i=0; i<nals; i++) if ( max_als2&1<<i) n2++;
355     if ( n2<n1 && kf_gammap(1,2.0*(max_lk-max_lk2))<threshold )
356     {
357         max_lk = max_lk2;
358         max_als = max_als2;
359     }
360
361     // Get the BCF record ready for GT and GQ
362     kstring_t s;
363     int old_n_gi = b->n_gi;
364     s.m = b->m_str; s.l = b->l_str - 1; s.s = b->str;
365     kputs(":GT:GQ", &s); kputc('\0', &s);
366     b->m_str = s.m; b->l_str = s.l; b->str = s.s;
367     bcf_sync(b);
368
369     // Call GTs
370     int isample, gts=0, ac[4] = {0,0,0,0};
371     for (isample = 0; isample < b->n_smpl; isample++) 
372     {
373         int ploidy = b->ploidy ? b->ploidy[isample] : 2;
374         double *p = pdg + isample*npdg;
375         int ia, als = 0;
376         double lk = 0, lk_sum=0;
377         for (ia=0; ia<nals; ia++)
378         {
379             if ( !(max_als&1<<ia) ) continue;
380             int iaa = (ia+1)*(ia+2)/2-1;
381             double _lk = p[iaa]*qsum[ia]*qsum[ia];
382             if ( _lk > lk ) { lk = _lk; als = ia<<3 | ia; }
383             lk_sum += _lk;
384         }
385         if ( ploidy==2 ) 
386         {
387             for (ia=0; ia<nals; ia++)
388             {
389                 if ( !(max_als&1<<ia) ) continue;
390                 int iaa = (ia+1)*(ia+2)/2-1;
391                 for (ib=0; ib<ia; ib++)
392                 {
393                     if ( !(max_als&1<<ib) ) continue;
394                     int iab = iaa - ia + ib;
395                     double _lk = 2*qsum[ia]*qsum[ib]*p[iab];
396                     if ( _lk > lk ) { lk = _lk; als = ib<<3 | ia; }
397                     lk_sum += _lk;
398                 }
399             }
400         }
401         lk = -log(1-lk/lk_sum)/0.2302585;
402         if ( idp>=0 && ((uint16_t*)b->gi[idp].data)[isample]==0 ) 
403         {
404             ((uint8_t*)b->gi[old_n_gi].data)[isample]   = als | 1<<7;
405             ((uint8_t*)b->gi[old_n_gi+1].data)[isample] = 0;
406             continue;
407         }
408         ((uint8_t*)b->gi[old_n_gi].data)[isample]   = als;
409         ((uint8_t*)b->gi[old_n_gi+1].data)[isample] = lk<100 ? (int)lk : 99;
410
411         gts |= 1<<(als>>3&7) | 1<<(als&7);
412         ac[ als>>3&7 ]++;
413         ac[ als&7 ]++;
414     }
415     bcf_fit_alt(b,max_als);
416
417
418     // Prepare BCF for output: ref, alt, filter, info, format
419     memset(&s, 0, sizeof(kstring_t)); kputc('\0', &s); 
420     kputs(b->ref, &s); kputc('\0', &s);
421     kputs(b->alt, &s); kputc('\0', &s); kputc('\0', &s);
422     {
423         int an=0, nalts=0;
424         for (i=0; i<nals; i++)
425         {
426             an += ac[i];
427             if ( i>0 && ac[i] ) nalts++;
428         }
429         ksprintf(&s, "AN=%d;", an);
430         if ( nalts )
431         {
432             kputs("AC=", &s);
433             for (i=1; i<nals; i++)
434             {
435                 if ( !(gts&1<<i) ) continue;
436                 nalts--;
437                 ksprintf(&s,"%d", ac[i]);
438                 if ( nalts>0 ) kputc(',', &s);
439             }
440             kputc(';', &s);
441         }
442         kputs(b->info, &s); 
443         anno16_t a;
444         int has_I16 = test16(b, &a) >= 0? 1 : 0;
445         if (has_I16 )
446         {
447             if ( a.is_tested) ksprintf(&s, ";PV4=%.2g,%.2g,%.2g,%.2g", a.p[0], a.p[1], a.p[2], a.p[3]);
448             ksprintf(&s, ";DP4=%d,%d,%d,%d;MQ=%d", a.d[0], a.d[1], a.d[2], a.d[3], a.mq);
449         }
450         kputc('\0', &s);
451         rm_info(&s, "I16=");
452         rm_info(&s, "QS=");
453     }
454     kputs(b->fmt, &s); kputc('\0', &s);
455     free(b->str);
456     b->m_str = s.m; b->l_str = s.l; b->str = s.s;
457     b->qual = gts>1 ? -4.343*(ref_lk - lk_sum) : -4.343*(max_lk - lk_sum);
458     if ( b->qual>999 ) b->qual = 999;
459     bcf_sync(b);
460
461
462     free(pdg);
463     return gts;
464 }
465
466 static int cal_pdg(const bcf1_t *b, bcf_p1aux_t *ma)
467 {
468     int i, j;
469     long *p, tmp;
470     p = alloca(b->n_alleles * sizeof(long));
471     memset(p, 0, sizeof(long) * b->n_alleles);
472     for (j = 0; j < ma->n; ++j) {
473         const uint8_t *pi = ma->PL + j * ma->PL_len;
474         double *pdg = ma->pdg + j * 3;
475         pdg[0] = ma->q2p[pi[2]]; pdg[1] = ma->q2p[pi[1]]; pdg[2] = ma->q2p[pi[0]];
476         for (i = 0; i < b->n_alleles; ++i)
477             p[i] += (int)pi[(i+1)*(i+2)/2-1];
478     }
479     for (i = 0; i < b->n_alleles; ++i) p[i] = p[i]<<4 | i;
480     for (i = 1; i < b->n_alleles; ++i) // insertion sort
481         for (j = i; j > 0 && p[j] < p[j-1]; --j)
482             tmp = p[j], p[j] = p[j-1], p[j-1] = tmp;
483     for (i = b->n_alleles - 1; i >= 0; --i)
484         if ((p[i]&0xf) == 0) break;
485     return i;
486 }
487
488
489 int bcf_p1_call_gt(const bcf_p1aux_t *ma, double f0, int k)
490 {
491         double sum, g[3];
492         double max, f3[3], *pdg = ma->pdg + k * 3;
493         int q, i, max_i, ploidy;
494         ploidy = ma->ploidy? ma->ploidy[k] : 2;
495         if (ploidy == 2) {
496                 f3[0] = (1.-f0)*(1.-f0); f3[1] = 2.*f0*(1.-f0); f3[2] = f0*f0;
497         } else {
498                 f3[0] = 1. - f0; f3[1] = 0; f3[2] = f0;
499         }
500         for (i = 0, sum = 0.; i < 3; ++i)
501                 sum += (g[i] = pdg[i] * f3[i]);
502         for (i = 0, max = -1., max_i = 0; i < 3; ++i) {
503                 g[i] /= sum;
504                 if (g[i] > max) max = g[i], max_i = i;
505         }
506         max = 1. - max;
507         if (max < 1e-308) max = 1e-308;
508         q = (int)(-4.343 * log(max) + .499);
509         if (q > 99) q = 99;
510         return q<<2|max_i;
511 }
512
513 #define TINY 1e-20
514
515 static void mc_cal_y_core(bcf_p1aux_t *ma, int beg)
516 {
517         double *z[2], *tmp, *pdg;
518         int _j, last_min, last_max;
519         assert(beg == 0 || ma->M == ma->n*2);
520         z[0] = ma->z;
521         z[1] = ma->zswap;
522         pdg = ma->pdg;
523         memset(z[0], 0, sizeof(double) * (ma->M + 1));
524         memset(z[1], 0, sizeof(double) * (ma->M + 1));
525         z[0][0] = 1.;
526         last_min = last_max = 0;
527         ma->t = 0.;
528         if (ma->M == ma->n * 2) {
529                 int M = 0;
530                 for (_j = beg; _j < ma->n; ++_j) {
531                         int k, j = _j - beg, _min = last_min, _max = last_max, M0;
532                         double p[3], sum;
533                         M0 = M; M += 2;
534                         pdg = ma->pdg + _j * 3;
535                         p[0] = pdg[0]; p[1] = 2. * pdg[1]; p[2] = pdg[2];
536                         for (; _min < _max && z[0][_min] < TINY; ++_min) z[0][_min] = z[1][_min] = 0.;
537                         for (; _max > _min && z[0][_max] < TINY; --_max) z[0][_max] = z[1][_max] = 0.;
538                         _max += 2;
539                         if (_min == 0) k = 0, z[1][k] = (M0-k+1) * (M0-k+2) * p[0] * z[0][k];
540                         if (_min <= 1) k = 1, z[1][k] = (M0-k+1) * (M0-k+2) * p[0] * z[0][k] + k*(M0-k+2) * p[1] * z[0][k-1];
541                         for (k = _min < 2? 2 : _min; k <= _max; ++k)
542                                 z[1][k] = (M0-k+1)*(M0-k+2) * p[0] * z[0][k] + k*(M0-k+2) * p[1] * z[0][k-1] + k*(k-1)* p[2] * z[0][k-2];
543                         for (k = _min, sum = 0.; k <= _max; ++k) sum += z[1][k];
544                         ma->t += log(sum / (M * (M - 1.)));
545                         for (k = _min; k <= _max; ++k) z[1][k] /= sum;
546                         if (_min >= 1) z[1][_min-1] = 0.;
547                         if (_min >= 2) z[1][_min-2] = 0.;
548                         if (j < ma->n - 1) z[1][_max+1] = z[1][_max+2] = 0.;
549                         if (_j == ma->n1 - 1) { // set pop1; ma->n1==-1 when unset
550                                 ma->t1 = ma->t;
551                                 memcpy(ma->z1, z[1], sizeof(double) * (ma->n1 * 2 + 1));
552                         }
553                         tmp = z[0]; z[0] = z[1]; z[1] = tmp;
554                         last_min = _min; last_max = _max;
555                 }
556                 //for (_j = 0; _j < last_min; ++_j) z[0][_j] = 0.; // TODO: are these necessary?
557                 //for (_j = last_max + 1; _j < ma->M; ++_j) z[0][_j] = 0.;
558         } else { // this block is very similar to the block above; these two might be merged in future
559                 int j, M = 0;
560                 for (j = 0; j < ma->n; ++j) {
561                         int k, M0, _min = last_min, _max = last_max;
562                         double p[3], sum;
563                         pdg = ma->pdg + j * 3;
564                         for (; _min < _max && z[0][_min] < TINY; ++_min) z[0][_min] = z[1][_min] = 0.;
565                         for (; _max > _min && z[0][_max] < TINY; --_max) z[0][_max] = z[1][_max] = 0.;
566                         M0 = M;
567                         M += ma->ploidy[j];
568                         if (ma->ploidy[j] == 1) {
569                                 p[0] = pdg[0]; p[1] = pdg[2];
570                                 _max++;
571                                 if (_min == 0) k = 0, z[1][k] = (M0+1-k) * p[0] * z[0][k];
572                                 for (k = _min < 1? 1 : _min; k <= _max; ++k)
573                                         z[1][k] = (M0+1-k) * p[0] * z[0][k] + k * p[1] * z[0][k-1];
574                                 for (k = _min, sum = 0.; k <= _max; ++k) sum += z[1][k];
575                                 ma->t += log(sum / M);
576                                 for (k = _min; k <= _max; ++k) z[1][k] /= sum;
577                                 if (_min >= 1) z[1][_min-1] = 0.;
578                                 if (j < ma->n - 1) z[1][_max+1] = 0.;
579                         } else if (ma->ploidy[j] == 2) {
580                                 p[0] = pdg[0]; p[1] = 2 * pdg[1]; p[2] = pdg[2];
581                                 _max += 2;
582                                 if (_min == 0) k = 0, z[1][k] = (M0-k+1) * (M0-k+2) * p[0] * z[0][k];
583                                 if (_min <= 1) k = 1, z[1][k] = (M0-k+1) * (M0-k+2) * p[0] * z[0][k] + k*(M0-k+2) * p[1] * z[0][k-1];
584                                 for (k = _min < 2? 2 : _min; k <= _max; ++k)
585                                         z[1][k] = (M0-k+1)*(M0-k+2) * p[0] * z[0][k] + k*(M0-k+2) * p[1] * z[0][k-1] + k*(k-1)* p[2] * z[0][k-2];
586                                 for (k = _min, sum = 0.; k <= _max; ++k) sum += z[1][k];
587                                 ma->t += log(sum / (M * (M - 1.)));
588                                 for (k = _min; k <= _max; ++k) z[1][k] /= sum;
589                                 if (_min >= 1) z[1][_min-1] = 0.;
590                                 if (_min >= 2) z[1][_min-2] = 0.;
591                                 if (j < ma->n - 1) z[1][_max+1] = z[1][_max+2] = 0.;
592                         }
593                         tmp = z[0]; z[0] = z[1]; z[1] = tmp;
594                         last_min = _min; last_max = _max;
595                 }
596         }
597         if (z[0] != ma->z) memcpy(ma->z, z[0], sizeof(double) * (ma->M + 1));
598 }
599
600 static void mc_cal_y(bcf_p1aux_t *ma)
601 {
602         if (ma->n1 > 0 && ma->n1 < ma->n && ma->M == ma->n * 2) { // NB: ma->n1 is ineffective when there are haploid samples
603                 int k;
604                 long double x;
605                 memset(ma->z1, 0, sizeof(double) * (2 * ma->n1 + 1));
606                 memset(ma->z2, 0, sizeof(double) * (2 * (ma->n - ma->n1) + 1));
607                 ma->t1 = ma->t2 = 0.;
608                 mc_cal_y_core(ma, ma->n1);
609                 ma->t2 = ma->t;
610                 memcpy(ma->z2, ma->z, sizeof(double) * (2 * (ma->n - ma->n1) + 1));
611                 mc_cal_y_core(ma, 0);
612                 // rescale z
613                 x = expl(ma->t - (ma->t1 + ma->t2));
614                 for (k = 0; k <= ma->M; ++k) ma->z[k] *= x;
615         } else mc_cal_y_core(ma, 0);
616 }
617
618 #define CONTRAST_TINY 1e-30
619
620 extern double kf_gammaq(double s, double z); // incomplete gamma function for chi^2 test
621
622 static inline double chi2_test(int a, int b, int c, int d)
623 {
624         double x, z;
625         x = (double)(a+b) * (c+d) * (b+d) * (a+c);
626         if (x == 0.) return 1;
627         z = a * d - b * c;
628         return kf_gammaq(.5, .5 * z * z * (a+b+c+d) / x);
629 }
630
631 // chi2=(a+b+c+d)(ad-bc)^2/[(a+b)(c+d)(a+c)(b+d)]
632 static inline double contrast2_aux(const bcf_p1aux_t *p1, double sum, int k1, int k2, double x[3])
633 {
634         double p = p1->phi[k1+k2] * p1->z1[k1] * p1->z2[k2] / sum * p1->hg[k1][k2];
635         int n1 = p1->n1, n2 = p1->n - p1->n1;
636         if (p < CONTRAST_TINY) return -1;
637         if (.5*k1/n1 < .5*k2/n2) x[1] += p;
638         else if (.5*k1/n1 > .5*k2/n2) x[2] += p;
639         else x[0] += p;
640         return p * chi2_test(k1, k2, (n1<<1) - k1, (n2<<1) - k2);
641 }
642
643 static double contrast2(bcf_p1aux_t *p1, double ret[3])
644 {
645         int k, k1, k2, k10, k20, n1, n2;
646         double sum;
647         // get n1 and n2
648         n1 = p1->n1; n2 = p1->n - p1->n1;
649         if (n1 <= 0 || n2 <= 0) return 0.;
650         if (p1->hg == 0) { // initialize the hypergeometric distribution
651                 /* NB: the hg matrix may take a lot of memory when there are many samples. There is a way
652                    to avoid precomputing this matrix, but it is slower and quite intricate. The following
653                    computation in this block can be accelerated with a similar strategy, but perhaps this
654                    is not a serious concern for now. */
655                 double tmp = lgamma(2*(n1+n2)+1) - (lgamma(2*n1+1) + lgamma(2*n2+1));
656                 p1->hg = calloc(2*n1+1, sizeof(void*));
657                 for (k1 = 0; k1 <= 2*n1; ++k1) {
658                         p1->hg[k1] = calloc(2*n2+1, sizeof(double));
659                         for (k2 = 0; k2 <= 2*n2; ++k2)
660                                 p1->hg[k1][k2] = exp(lgamma(k1+k2+1) + lgamma(p1->M-k1-k2+1) - (lgamma(k1+1) + lgamma(k2+1) + lgamma(2*n1-k1+1) + lgamma(2*n2-k2+1) + tmp));
661                 }
662         }
663         { // compute
664                 long double suml = 0;
665                 for (k = 0; k <= p1->M; ++k) suml += p1->phi[k] * p1->z[k];
666                 sum = suml;
667         }
668         { // get the max k1 and k2
669                 double max;
670                 int max_k;
671                 for (k = 0, max = 0, max_k = -1; k <= 2*n1; ++k) {
672                         double x = p1->phi1[k] * p1->z1[k];
673                         if (x > max) max = x, max_k = k;
674                 }
675                 k10 = max_k;
676                 for (k = 0, max = 0, max_k = -1; k <= 2*n2; ++k) {
677                         double x = p1->phi2[k] * p1->z2[k];
678                         if (x > max) max = x, max_k = k;
679                 }
680                 k20 = max_k;
681         }
682         { // We can do the following with one nested loop, but that is an O(N^2) thing. The following code block is much faster for large N.
683                 double x[3], y;
684                 long double z = 0., L[2];
685                 x[0] = x[1] = x[2] = 0; L[0] = L[1] = 0;
686                 for (k1 = k10; k1 >= 0; --k1) {
687                         for (k2 = k20; k2 >= 0; --k2) {
688                                 if ((y = contrast2_aux(p1, sum, k1, k2, x)) < 0) break;
689                                 else z += y;
690                         }
691                         for (k2 = k20 + 1; k2 <= 2*n2; ++k2) {
692                                 if ((y = contrast2_aux(p1, sum, k1, k2, x)) < 0) break;
693                                 else z += y;
694                         }
695                 }
696                 ret[0] = x[0]; ret[1] = x[1]; ret[2] = x[2];
697                 x[0] = x[1] = x[2] = 0;
698                 for (k1 = k10 + 1; k1 <= 2*n1; ++k1) {
699                         for (k2 = k20; k2 >= 0; --k2) {
700                                 if ((y = contrast2_aux(p1, sum, k1, k2, x)) < 0) break;
701                                 else z += y;
702                         }
703                         for (k2 = k20 + 1; k2 <= 2*n2; ++k2) {
704                                 if ((y = contrast2_aux(p1, sum, k1, k2, x)) < 0) break;
705                                 else z += y;
706                         }
707                 }
708                 ret[0] += x[0]; ret[1] += x[1]; ret[2] += x[2];
709                 if (ret[0] + ret[1] + ret[2] < 0.95) { // in case of bad things happened
710                         ret[0] = ret[1] = ret[2] = 0; L[0] = L[1] = 0;
711                         for (k1 = 0, z = 0.; k1 <= 2*n1; ++k1)
712                                 for (k2 = 0; k2 <= 2*n2; ++k2)
713                                         if ((y = contrast2_aux(p1, sum, k1, k2, ret)) >= 0) z += y;
714                         if (ret[0] + ret[1] + ret[2] < 0.95) // It seems that this may be caused by floating point errors. I do not really understand why...
715                                 z = 1.0, ret[0] = ret[1] = ret[2] = 1./3;
716                 }
717                 return (double)z;
718         }
719 }
720
721 static double mc_cal_afs(bcf_p1aux_t *ma, double *p_ref_folded, double *p_var_folded)
722 {
723         int k;
724         long double sum = 0., sum2;
725         double *phi = ma->is_indel? ma->phi_indel : ma->phi;
726         memset(ma->afs1, 0, sizeof(double) * (ma->M + 1));
727         mc_cal_y(ma);
728         // compute AFS
729         for (k = 0, sum = 0.; k <= ma->M; ++k)
730                 sum += (long double)phi[k] * ma->z[k];
731         for (k = 0; k <= ma->M; ++k) {
732                 ma->afs1[k] = phi[k] * ma->z[k] / sum;
733                 if (isnan(ma->afs1[k]) || isinf(ma->afs1[k])) return -1.;
734         }
735         // compute folded variant probability
736         for (k = 0, sum = 0.; k <= ma->M; ++k)
737                 sum += (long double)(phi[k] + phi[ma->M - k]) / 2. * ma->z[k];
738         for (k = 1, sum2 = 0.; k < ma->M; ++k)
739                 sum2 += (long double)(phi[k] + phi[ma->M - k]) / 2. * ma->z[k];
740         *p_var_folded = sum2 / sum;
741         *p_ref_folded = (phi[k] + phi[ma->M - k]) / 2. * (ma->z[ma->M] + ma->z[0]) / sum;
742         // the expected frequency
743         for (k = 0, sum = 0.; k <= ma->M; ++k) {
744                 ma->afs[k] += ma->afs1[k];
745                 sum += k * ma->afs1[k];
746         }
747         return sum / ma->M;
748 }
749
750 int bcf_p1_cal(const bcf1_t *b, int do_contrast, bcf_p1aux_t *ma, bcf_p1rst_t *rst)
751 {
752         int i, k;
753         long double sum = 0.;
754         ma->is_indel = bcf_is_indel(b);
755         rst->perm_rank = -1;
756         // set PL and PL_len
757         for (i = 0; i < b->n_gi; ++i) {
758                 if (b->gi[i].fmt == bcf_str2int("PL", 2)) {
759                         ma->PL = (uint8_t*)b->gi[i].data;
760                         ma->PL_len = b->gi[i].len;
761                         break;
762                 }
763         }
764         if (i == b->n_gi) return -1; // no PL
765         if (b->n_alleles < 2) return -1; // FIXME: find a better solution
766         // 
767         rst->rank0 = cal_pdg(b, ma);
768         rst->f_exp = mc_cal_afs(ma, &rst->p_ref_folded, &rst->p_var_folded);
769         rst->p_ref = ma->afs1[ma->M];
770         for (k = 0, sum = 0.; k < ma->M; ++k)
771                 sum += ma->afs1[k];
772         rst->p_var = (double)sum;
773         { // compute the allele count
774                 double max = -1;
775                 rst->ac = -1;
776                 for (k = 0; k <= ma->M; ++k)
777                         if (max < ma->z[k]) max = ma->z[k], rst->ac = k;
778                 rst->ac = ma->M - rst->ac;
779         }
780         // calculate f_flat and f_em
781         for (k = 0, sum = 0.; k <= ma->M; ++k)
782                 sum += (long double)ma->z[k];
783         rst->f_flat = 0.;
784         for (k = 0; k <= ma->M; ++k) {
785                 double p = ma->z[k] / sum;
786                 rst->f_flat += k * p;
787         }
788         rst->f_flat /= ma->M;
789         { // estimate equal-tail credible interval (95% level)
790                 int l, h;
791                 double p;
792                 for (i = 0, p = 0.; i <= ma->M; ++i)
793                         if (p + ma->afs1[i] > 0.025) break;
794                         else p += ma->afs1[i];
795                 l = i;
796                 for (i = ma->M, p = 0.; i >= 0; --i)
797                         if (p + ma->afs1[i] > 0.025) break;
798                         else p += ma->afs1[i];
799                 h = i;
800                 rst->cil = (double)(ma->M - h) / ma->M; rst->cih = (double)(ma->M - l) / ma->M;
801         }
802         if (ma->n1 > 0) { // compute LRT
803                 double max0, max1, max2;
804                 for (k = 0, max0 = -1; k <= ma->M; ++k)
805                         if (max0 < ma->z[k]) max0 = ma->z[k];
806                 for (k = 0, max1 = -1; k <= ma->n1 * 2; ++k)
807                         if (max1 < ma->z1[k]) max1 = ma->z1[k];
808                 for (k = 0, max2 = -1; k <= ma->M - ma->n1 * 2; ++k)
809                         if (max2 < ma->z2[k]) max2 = ma->z2[k];
810                 rst->lrt = log(max1 * max2 / max0);
811                 rst->lrt = rst->lrt < 0? 1 : kf_gammaq(.5, rst->lrt);
812         } else rst->lrt = -1.0;
813         rst->cmp[0] = rst->cmp[1] = rst->cmp[2] = rst->p_chi2 = -1.0;
814         if (do_contrast && rst->p_var > 0.5) // skip contrast2() if the locus is a strong non-variant
815                 rst->p_chi2 = contrast2(ma, rst->cmp);
816         return 0;
817 }
818
819 void bcf_p1_dump_afs(bcf_p1aux_t *ma)
820 {
821         int k;
822         fprintf(stderr, "[afs]");
823         for (k = 0; k <= ma->M; ++k)
824                 fprintf(stderr, " %d:%.3lf", k, ma->afs[ma->M - k]);
825         fprintf(stderr, "\n");
826         memset(ma->afs, 0, sizeof(double) * (ma->M + 1));
827 }