Merge commit 'upstream/0.1.16'
[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, perm_rank; // NB: perm_rank is always set to -1 by bcf_p1_cal()
11         double f_exp, f_flat, p_ref_folded, p_ref, p_var_folded, p_var;
12         double cil, cih;
13         double cmp[3], p_chi2; // used by contrast2()
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, uint8_t *ploidy);
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(const bcf1_t *b, int do_contrast, 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         int bcf_p1_set_n1(bcf_p1aux_t *b, int n1);
33         void bcf_p1_set_folded(bcf_p1aux_t *p1a); // only effective when set_n1() is not called
34
35         int bcf_em1(const bcf1_t *b, int n1, int flag, double x[9]);
36
37 #ifdef __cplusplus
38 }
39 #endif
40
41 #endif