]> git.donarmstrong.com Git - samtools.git/blobdiff - bcftools/prob1.h
bcftools: compute equal-tail (Bayesian) credible interval
[samtools.git] / bcftools / prob1.h
index 6bb7440efde77043476de22ca922d590ebf2cf66..6d9d28e3cee6c7d0a66efbd5314912ac511cd384 100644 (file)
@@ -8,7 +8,10 @@ typedef struct __bcf_p1aux_t bcf_p1aux_t;
 
 typedef struct {
        int rank0;
-       double f_em, f_exp, f_flat, p_ref, g[3];
+       double f_em, f_exp, f_flat, p_ref;
+       double cil, cih;
+       double pc[4];
+       double g[3];
 } bcf_p1rst_t;
 
 #define MC_PTYPE_FULL  1
@@ -21,6 +24,7 @@ extern "C" {
 
        bcf_p1aux_t *bcf_p1_init(int n);
        void bcf_p1_init_prior(bcf_p1aux_t *ma, int type, double theta);
+       void bcf_p1_init_subprior(bcf_p1aux_t *ma, int type, double theta);
        void bcf_p1_destroy(bcf_p1aux_t *ma);
        int bcf_p1_cal(bcf1_t *b, bcf_p1aux_t *ma, bcf_p1rst_t *rst);
        int bcf_p1_call_gt(const bcf_p1aux_t *ma, double f0, int k);