Open lculibrk opened 9 months ago
Hi. I also encounter this error on gatk v 4.6.0.0. Did you find a workaround or has any progress been made to address this? Thank you!
Hi all. We do have a PR in the master branch to fix this issue. However keep in mind that the variant you are trying to call is probably way above the size that one can call a simple INDEL. https://github.com/broadinstitute/gatk/pull/6388
Same error here with gatk v 4.6.0.0. Please help!
@ahwanpandey the way I've worked around this in my workflows is to filter very large REF/ALT lengths. However from what I can tell the critical length is inconsistent, somewhere between 100-150 from memory, depending on the variant/data.
Hi @lculibrk Thank you so much for sharing your workaround! I will give it a go and let you know how I go. Really appreciate it, thanks again.
@lculibrk worked great! I just filtered for any variants with length >=250bp. Didn't really want to try other thresholds but maybe it only breaks at >300. Anyways, filtering for >=250bp is good enough :)
And if anyone finds it useful, vt has a quick way to filter these long variants:
https://genome.sph.umich.edu/wiki/Vt
vt view -f "LEN<250" -h full.VCF.gz > filtered.VCF.gz
Bug Report
Affected tool(s) or class(es)
Mutect2
Affected version(s)
4.4.0.0
Description
Hello GATK team,
I am working on a pipeline that calls variants using Mutect2 and uses those mutations for somatic variant calling in other samples. To achieve this I'm using the -allele flag in Mutect2 to pass the desired positions to genotype to Mutect2. However it appears that Mutect2 will output variants that it then is unable to parse as an -allele file. I believe this is because the REF column is too long.
Steps to reproduce
Try to variant call using an -allele VCF containing this line:
Expected behavior
Mutect2 should either not emit an invalid variant or it should be able to parse it
Actual behavior