X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bam2bcf.c;h=f7c48aa94f32e417d718371ee0c621b906ea0b85;hb=ff6d24e37138561b372621eb4b7418e6292c1494;hp=384e481cbc5e6d9d4cae4f2e50a66008f29f1c84;hpb=e2d4caa430112346f387709bd016eb1a8c737d8e;p=samtools.git diff --git a/bam2bcf.c b/bam2bcf.c index 384e481..f7c48aa 100644 --- a/bam2bcf.c +++ b/bam2bcf.c @@ -20,7 +20,7 @@ bcf_callaux_t *bcf_call_init(double theta, int min_baseQ) if (theta <= 0.) theta = CALL_DEFTHETA; bca = calloc(1, sizeof(bcf_callaux_t)); bca->capQ = 60; - bca->openQ = 40; bca->extQ = 20; bca->tandemQ = 80; + bca->openQ = 40; bca->extQ = 20; bca->tandemQ = 100; bca->min_baseQ = min_baseQ; bca->e = errmod_init(1. - theta); return bca;