Open vappiah opened 3 weeks ago
The coordinates of output / input files depend on the file type. In this case it is a 1 based system because VCF is always 1 based.
From the VCF Spec
- POS - position: The reference position, with the 1st base having position 1.
Some other formats (ex: BED format) use a 0 based position. GATK reads and writes files in their matching coordinates.
Internally it converts them all to a uniform format for processing. The GATK internal format is 1 based and matches VCF.
Dear Developers, I recently used UCSC hg38 as a reference for gatk mutect2 variant calling. I plan to annotate the variants using VEP but from this thread, VEP supports 1-based system. My question is that, is the vcf generated by mutect2 0-based or 1-based.
Thanks