VCF Preprocessing
Learn about preprocessing VCF data before using it in an analysis.
Last updated
Learn about preprocessing VCF data before using it in an analysis.
Last updated
Copyright 2024 DNAnexus
It may be necessary to preprocess, or harmonize, the data before you load them.
The raw data is expected to be a set of gVCF files -- one file per sample in the cohort.
GLnexus is used to harmonize sites across all gVCFs and generate a single pVCF file containing all harmonized sites and all genotypes for all samples.
Note: To learn more about GLnexus, see GLnexus or Getting started with GLnexus.
The VCF data can include variant annotations. Of particular interest are SnpEff annotations, which are included in VCFs as INFO/ANN
tags--SnpEff annotations, if present, are loaded into databases. If desired, then you may pre-annotate your VCF data to include SnpEff annotations after harmonizing your data -- just pass your pVCF to any standard SnpEff annotator. If your pVCF is especially large, it may be advantageous to rely on the internal annotation step in the VCF loader instead of annotating the pVCF yourself. The VCF loader annotation step annotates the pVCF in a distributed, massively parallel way.
Note that the VCF loader does not persist the intermediate, annotated pVCF as a file, so if you want to have access to the annotated file up front, you should annotate it yourself.
VCF annotation flows. In (a) the annotation step is external to the VCF loader, whereas in (b) the annotation step is internal. In any case, SnpEff annotations present as INFO/ANN
tags are loaded into the database by the VCF loader.