Hi,
I recently ran into an issue where a pipeline I wrote did not work on a new vcf file. As it turns out the problem was simply that the vcf file used "chr7" instead of just 7 for chromosome notation which confused tabix.
Is there any header in vcf files that indicates what annotation is used? I could convert them to a common format but that would take a lot longer than changing the command string for tabix.
Thanks
after indexing bgzipped vcf with tabix,
tabix -l <input.vcf.gz>
should print the chromosomes.