This is a test version of Biostars. For the public version, visit https://www.biostars.org.
QUAL in VCF file

Hello, I am learning the sequencing data and working with VCF files now. I want to know what does Qual '.' means. Does this mean that quality of my variant has not been calculated?

Thank you

ngs variant vcf

Does this mean that quality of my variant has not been calculated?

yes , not-available, not-calculated, unknown

1 answer

what does Qual '.' means.

Section 1.6 of the VCF specification (https://samtools.github.io/hts-specs/VCFv4.3.pdf) states:

In all cases, missing values are specified with a dot (‘.’)

Does this mean that quality of my variant has not been calculated?

Generally speaking, yes.

The exact details depends on the bioinformatics pipeline used to generate the VCF. It's theoretically possible that the variant caller assigned a QUAL, but a downstream step removed it. For example, a tool that merges a set of single-sample VCFs into a single multi-sample VCF might strip out the variant-level QUAL (and move it to a sample-specific FORMAT field) since the meaning of QUAL is different in those two VCFs.

Log in to answer this question.