pbwt icon indicating copy to clipboard operation
pbwt copied to clipboard

Implementation of Positional Burrows-Wheeler Transform for genetic data

Results 9 pbwt issues
Sort by recently updated
recently updated
newest added

The algorithm 3 (`pbwt -longWithin 5`) does not report some long matches. For example, in the following example: ``` 1:1010001 001100 4:1010001 001100 0:0110000 101010 2:0011000 110010 5:0011001 000010 3:1011001...

I'm seeing output that looks like this: ``` 3 112841 rs78923776 C G . PASS RefPanelAF=0.000153988;AN=2;AC=0;INFO=1 GT:ADS:DS:GP 0|0:0,0:0:1,0,0 3 112841 rs78923776 C T . PASS RefPanelAF=0.078534;AN=2;AC=1;INFO=1 GT:ADS:DS:GP 0|1:0,1:1:0,1,0 ``` The...

Looking only at chromosome 3, some 2k rsIDs (from 23andMe data) are not found in the 2.8G SNPs in imputed chromosome 3... Why should SNPs be dropped from the input...

Perhaps it's my anal-retentive personality type, but the fact that you've diverged really bugs me. If you don't want to merge changes, these should be separate projects no? Cheers,

It would be nice if a LICENSE file could be added. This would also make packaging it downstream easier.

Hi, The code from 110 to 118 of pbwtHtslib.c in function pbwtReadVcfGT may bring a bug. ``` if (gt_arr[i] == bcf_int32_vector_end) x[i] = bcf_gt_allele(gt_arr[i-1]); // treat haploid genotypes as diploid...

Hi there, I am currently trying to use PBWT to impute a reference panel A onto another reference panel B, and vice versa. I am able to impute reference panel...

At some point between commit 9a1e0fe and c9764e2, there seems to have been a bug introduced to the writePhase code. The phase file output is now writing raw binary 0/1...