From: Heng Li Date: Fri, 9 Mar 2012 03:25:34 +0000 (-0500) Subject: On behalf of Petr: multi-allelic GT X-Git-Url: https://git.donarmstrong.com/?p=samtools.git;a=commitdiff_plain;h=dc27682f70713a70d4f31bca652cf78e00757da2 On behalf of Petr: multi-allelic GT --- diff --git a/bcftools/bcf.c b/bcftools/bcf.c index de7bc11..a538e6e 100644 --- a/bcftools/bcf.c +++ b/bcftools/bcf.c @@ -233,7 +233,31 @@ void bcf_fmt_core(const bcf_hdr_t *h, bcf1_t *b, kstring_t *s) } x = b->n_alleles * (b->n_alleles + 1) / 2; if (b->n_gi == 0) return; + int iPL = -1; + if ( b->n_alleles > 2 ) { + for (i=0; in_gi; i++) { + if ( b->gi[i].fmt == bcf_str2int("PL", 2) ) { + iPL = i; + break; + } + } + } for (j = 0; j < h->n_smpl; ++j) { + + // Determine GT with maximum PL (multiple ALT sites only) + int imax=-1; + if ( iPL!=-1 ) { + uint8_t *d = (uint8_t*)b->gi[iPL].data + j * x; + int k,identical=1; + imax=0; + for (k=1; kn_gi; ++i) { if (i) kputc(':', s); @@ -251,14 +275,30 @@ void bcf_fmt_core(const bcf_hdr_t *h, bcf1_t *b, kstring_t *s) } else if (b->gi[i].fmt == bcf_str2int("SP", 2)) { kputw(((int32_t*)b->gi[i].data)[j], s); } else if (b->gi[i].fmt == bcf_str2int("GT", 2)) { - int y = ((uint8_t*)b->gi[i].data)[j]; - if (y>>7&1) { - kputsn("./.", 3, s); - } else { - kputc('0' + (y>>3&7), s); - kputc("/|"[y>>6&1], s); - kputc('0' + (y&7), s); - } + int y = ((uint8_t*)b->gi[i].data)[j]; + if ( y>>7&1 ) + kputsn("./.", 3, s); + else if ( imax==-1 ) + { + kputc('0' + (y>>3&7), s); + kputc("/|"[y>>6&1], s); + kputc('0' + (y&7), s); + } + else + { + // Arguably, the while loop will be faster than two sqrts + int n = 0; + int row = 1; + while ( n>6&1], s); + kputw(row, s); + } } else if (b->gi[i].fmt == bcf_str2int("GL", 2)) { float *d = (float*)b->gi[i].data + j * x; int k;