]> git.donarmstrong.com Git - samtools.git/blob - bam2bcf.h
* samtools-0.1.9-2 (r797)
[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         int maxins, indelreg;
17         char *inscns;
18         uint16_t *bases;
19         errmod_t *e;
20 } bcf_callaux_t;
21
22 typedef struct {
23         int depth, qsum[4];
24         int anno[16];
25         float p[25];
26 } bcf_callret1_t;
27
28 typedef struct {
29         int a[5]; // alleles: ref, alt, alt2, alt3
30         int n, n_alleles, shift, ori_ref, unseen;
31         int anno[16], depth;
32         uint8_t *PL;
33 } bcf_call_t;
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39         bcf_callaux_t *bcf_call_init(double theta, int min_baseQ);
40         void bcf_call_destroy(bcf_callaux_t *bca);
41         int bcf_call_glfgen(int _n, const bam_pileup1_t *pl, int ref_base, bcf_callaux_t *bca, bcf_callret1_t *r);
42         int bcf_call_combine(int n, const bcf_callret1_t *calls, int ref_base /*4-bit*/, bcf_call_t *call);
43         int bcf_call2bcf(int tid, int pos, bcf_call_t *bc, bcf1_t *b, bcf_callret1_t *bcr, int is_SP,
44                                          const bcf_callaux_t *bca, const char *ref);
45         int bcf_call_gap_prep(int n, int *n_plp, bam_pileup1_t **plp, int pos, bcf_callaux_t *bca, const char *ref);
46
47 #ifdef __cplusplus
48 }
49 #endif
50
51 #endif