]> git.donarmstrong.com Git - samtools.git/blobdiff - bam2bcf.h
* samtools-0.1.8-13 (r698)
[samtools.git] / bam2bcf.h
index b96488b1ee29ed90b99bdad59f11e941a4c14cb7..0dddb924dcf62fee4f1352a9a20eecb7001da450 100644 (file)
--- a/bam2bcf.h
+++ b/bam2bcf.h
@@ -2,21 +2,21 @@
 #define BAM2BCF_H
 
 #include <stdint.h>
-#include "bcf.h"
+#include "bcftools/bcf.h"
 
 struct __bcf_callaux_t;
 typedef struct __bcf_callaux_t bcf_callaux_t;
 
 typedef struct {
-       int depth;
-       uint64_t sum_Q2;
-       float p[16], esum[4];
+       int depth, qsum[4];
+       int anno[16];
+       float p[25];
 } bcf_callret1_t;
 
 typedef struct {
-       int a[4]; // alleles: ref, alt, alt2, alt3
+       int a[5]; // alleles: ref, alt, alt2, alt3
        int n, n_alleles, shift, ori_ref, unseen;
-       int depth, rmsQ;
+       int anno[16], depth;
        uint8_t *PL;
 } bcf_call_t;
 
@@ -24,7 +24,7 @@ typedef struct {
 extern "C" {
 #endif
 
-       bcf_callaux_t *bcf_call_init(double theta);
+       bcf_callaux_t *bcf_call_init(double theta, int min_baseQ);
        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);