X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam2bcf.h;h=f96a7e33719b08d003513d03e857df38ddb4dbf5;hb=f221655a2515b417a545caece40b6985e927fb83;hp=73624c0a6bdc789d892aa4dc9d89ac07f7adcc38;hpb=cbe42056eafe54cb371f61f6360bef670b51a3da;p=samtools.git diff --git a/bam2bcf.h b/bam2bcf.h index 73624c0..f96a7e3 100644 --- a/bam2bcf.h +++ b/bam2bcf.h @@ -8,17 +8,15 @@ struct __bcf_callaux_t; typedef struct __bcf_callaux_t bcf_callaux_t; typedef struct { - int depth, d[4]; - int dsum[2], d2sum[2]; - uint64_t sum_Q2; - float p[25], esum[5]; + int depth, qsum[4]; + int anno[16]; + float p[25]; } bcf_callret1_t; typedef struct { int a[5]; // alleles: ref, alt, alt2, alt3 int n, n_alleles, shift, ori_ref, unseen; - int d[4], depth, rmsQ; - double davg[2], dstd[2]; + int anno[16], depth; uint8_t *PL; } bcf_call_t; @@ -30,7 +28,7 @@ extern "C" { void bcf_call_destroy(bcf_callaux_t *bca); int bcf_call_glfgen(int _n, const bam_pileup1_t *pl, int ref_base /*4-bit*/, bcf_callaux_t *bca, bcf_callret1_t *r); int bcf_call_combine(int n, const bcf_callret1_t *calls, int ref_base /*4-bit*/, bcf_call_t *call); - int bcf_call2bcf(int tid, int pos, bcf_call_t *bc, bcf1_t *b); + int bcf_call2bcf(int tid, int pos, bcf_call_t *bc, bcf1_t *b, bcf_callret1_t *bcr); #ifdef __cplusplus }