]> git.donarmstrong.com Git - samtools.git/blob - bam2bcf.h
indel calling is apparently working, but more information needs to be collected
[samtools.git] / bam2bcf.h
1 #ifndef BAM2BCF_H
2 #define BAM2BCF_H
3
4 #include <stdint.h>
5 #include "errmod.h"
6 #include "bcftools/bcf.h"
7
8 #define B2B_INDEL_NULL 10000
9
10 typedef struct __bcf_callaux_t {
11         int capQ, min_baseQ;
12         int openQ, extQ, tandemQ;
13         // for internal uses
14         int max_bases;
15         int indel_types[4];
16         uint16_t *bases;
17         errmod_t *e;
18 } bcf_callaux_t;
19
20 typedef struct {
21         int depth, qsum[4];
22         int anno[16];
23         float p[25];
24 } bcf_callret1_t;
25
26 typedef struct {
27         int a[5]; // alleles: ref, alt, alt2, alt3
28         int n, n_alleles, shift, ori_ref, unseen;
29         int anno[16], depth;
30         uint8_t *PL;
31 } bcf_call_t;
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37         bcf_callaux_t *bcf_call_init(double theta, int min_baseQ);
38         void bcf_call_destroy(bcf_callaux_t *bca);
39         int bcf_call_glfgen(int _n, const bam_pileup1_t *pl, int ref_base, bcf_callaux_t *bca, bcf_callret1_t *r);
40         int bcf_call_combine(int n, const bcf_callret1_t *calls, int ref_base /*4-bit*/, bcf_call_t *call);
41         int bcf_call2bcf(int tid, int pos, bcf_call_t *bc, bcf1_t *b, bcf_callret1_t *bcr, int is_SP);
42         int bcf_call_gap_prep(int n, int *n_plp, bam_pileup1_t **plp, int pos, bcf_callaux_t *bca, const char *ref);
43
44 #ifdef __cplusplus
45 }
46 #endif
47
48 #endif