# Install bcftools, its manpage, bcf-fix.pl, vcfutils.pl, and new examples.
[samtools.git] / bcftools / prob1.h
1 #ifndef BCF_PROB1_H
2 #define BCF_PROB1_H
3
4 #include "bcf.h"
5
6 struct __bcf_p1aux_t;
7 typedef struct __bcf_p1aux_t bcf_p1aux_t;
8
9 typedef struct {
10         int rank0;
11         double f_em, f_exp, f_flat, p_ref;
12         double pc[4];
13         double g[3];
14 } bcf_p1rst_t;
15
16 #define MC_PTYPE_FULL  1
17 #define MC_PTYPE_COND2 2
18 #define MC_PTYPE_FLAT  3
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24         bcf_p1aux_t *bcf_p1_init(int n);
25         void bcf_p1_init_prior(bcf_p1aux_t *ma, int type, double theta);
26         void bcf_p1_init_subprior(bcf_p1aux_t *ma, int type, double theta);
27         void bcf_p1_destroy(bcf_p1aux_t *ma);
28         int bcf_p1_cal(bcf1_t *b, bcf_p1aux_t *ma, bcf_p1rst_t *rst);
29         int bcf_p1_call_gt(const bcf_p1aux_t *ma, double f0, int k);
30         void bcf_p1_dump_afs(bcf_p1aux_t *ma);
31         int bcf_p1_read_prior(bcf_p1aux_t *ma, const char *fn);
32         long double bcf_p1_cal_g3(bcf_p1aux_t *p1a, double g[3]);
33         int bcf_p1_set_n1(bcf_p1aux_t *b, int n1);
34
35 #ifdef __cplusplus
36 }
37 #endif
38
39 #endif