--- title: "VCF data" author: "Brian J. Knaus" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{vcf data} %\VignetteEngine{knitr::rmarkdown} --- Most variant calling pipelines result in files containing variant information. The [variant call format (VCF)](http://samtools.github.io/hts-specs/ "VCF format at hts-specs") is a popular format for this data. Variant callers typically attempt to agressively call variants with the perspective that a downstream quality control step will remove low quality variants. A first step in working with this data is to understand their contents. ## Three sections A VCF file can be thought of as having three sections: a **meta region**, a **fix region** and a **gt region**. The meta region is at the top of the file. The information in the meta region defines the abbreviations used elsewhere in the file. It may also document software used to create the file as well as parameters used by this software. Below the meta region, the data are tabular. The first eight columns of this table contain information about each variant. This data may be common over all variants, such as its chromosomal position, or a summary over all samples, such as quality metrics. These data are fixed, or the same, over all samples. The fix region is required in a VCF file, subsequent columns are optional but are common in my experience. Beginning at column ten is a column for every sample. The values in these columns are information for each sample and each variant. The organization of each cell containing a genotype and associated information is specified in column nine. The location of these three regions within a file can be represented by the cartoon below. ```{r, fig.cap="Cartoon representation of VCF file organization", echo=FALSE, fig.height=4, fig.width=4, fig.align='center', } par(mar=c(0.1,0.1,0.1,0.1)) plot(c(0,5), c(0,5), type="n", frame.plot=FALSE, axes=FALSE, xlab="", ylab="") rect(xleft=0, ybottom=4, xright=3, ytop=5) rect(xleft=0, ybottom=0, xright=2, ytop=4) rect(xleft=2, ybottom=0, xright=5, ytop=4) text(1.5, 4.7, "Meta information", cex=1) text(1.5, 4.4, "(@meta)", cex=1) text(1.0, 2.5, "Fixed information", cex=1) text(1.0, 2.2, "(@fix)", cex=1) text(3.5, 2.5, "Genotype information", cex=1) text(3.5, 2.2, "(@gt)", cex=1) par(mar=c(5,4,4,2)) ``` The VCF file specification is flexible. This means that there are slots for certain types of data, but any particular software which creates a VCF file does not necessarily use them all. Similarly, authors have the opportunity to include new forms of data, forms which may not have been foreseen by the authors of the VCF specification. The result is that all VCF files do not contain the same information. For this example, we'll use example data provided with vcfR. ```{r} library(vcfR) data(vcfR_example) vcf ``` The function `library()` loads libraries, in this case the package vcfR. The function `data()` loads datasets that were included with R and its packages. Our usage of `data()` loads the objects 'gff', 'dna' and 'vcf' from the 'vcfR_example' dataset. Here we're only interested in the object 'vcf' which contains example VCF data. When we call the object name with no function it invokes the 'show' method which prints some summary information to the console. ## The meta region The meta region contains information about the file, its creation, as well as information to interpret abbreviations used elsewhere in the file. Each line of the meta region begins with a double pound sign ('##'). The example which comes with vcfR is shown below. (Only the first 10 lines are shown for brevity.) ```{r, echo=TRUE} strwrap(vcf@meta[1:7]) ``` The first line contains the version of the VCF format used in the file. This line is required. The second line specifies the software which created the VCF file. This is not required, so not all VCF files include it. When they do, the file becomes self documenting. Note that the alignment software is not included here because it was used upstream of the VCF file's creation (aligners typically create \*.SAM or \*.BAM format files). Because the file can only include information about the software that created it, the entire pipeline does not get documented. Some VCF files may contain a line for every chromosome (or supercontig or contig depending on your genome), so they may become rather long. Here, the remaining lines contain INFO and FORMAT specifications which define abbreviations used in the fix and gt portions of the file. The meta region may include long lines that may not be easy to view. In vcfR we've created a function to help prcess this data. ```{r} queryMETA(vcf) ``` When the function `queryMETA()` is called with only a vcfR object as a parameter, it attempts to summarize the meta information. Not all of the information is returned. For example, 'contig' elements are not returned. This is an attempt to summarize information that may be most useful for comprehension of the file's contents. ```{r} queryMETA(vcf, element = 'DP') ``` When an element parameter is included, only the information about that element is returned. In this example the element 'DP' is returned. We see that this acronym is defined as both a 'FORMAT' and 'INFO' acronym. We can narrow down our query by including more information in the element parameter. ```{r} queryMETA(vcf, element = 'FORMAT=