-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbam2bcf.h
More file actions
37 lines (29 loc) · 860 Bytes
/
bam2bcf.h
File metadata and controls
37 lines (29 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef BAM2BCF_H
#define BAM2BCF_H
#include <stdint.h>
#include "bcftools/bcf.h"
struct __bcf_callaux_t;
typedef struct __bcf_callaux_t bcf_callaux_t;
typedef struct {
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 anno[16], depth;
uint8_t *PL;
} bcf_call_t;
#ifdef __cplusplus
extern "C" {
#endif
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);
int bcf_call2bcf(int tid, int pos, bcf_call_t *bc, bcf1_t *b);
#ifdef __cplusplus
}
#endif
#endif