tabix -p vcf listOfVariants.vcf.gz
From my tests it looks like unfortunately .tbi indexed positions > 512 Mb are skipped by Platypus, and thus these cannot be genotyped.
In my view, the obvious fix to this would be using:
tabix -C -p vcf listOfVariants.vcf.gz
This generates listOfVariants.vcf.gz.csi, however Platypus' genotyping can't cope with these index files as input, error messages read:
Exception IOError: IOError('index `listOfVariants.vcf.gz.tbi` not found',) in 'variantcaller.callVariantsInRegion' ignored
Any idea if .csi index support for large chromosomes would be possible within foreseeable time? It feels like this wouldn't be too much of a hustle to implement, although simply replacing all "tbi" mentionings with "csi" in the source code doesn't do the job (I just tried that).
Happy to provide more detailed examples, log files, test dev branches, etc.
Many thanks,
Max