BiocStyle::markdown()
# Ensure that any errors cause the Vignette build to fail. library(knitr) opts_chunk$set(error=FALSE)
apiKey <- Sys.getenv("GOOGLE_API_KEY") if (nchar(apiKey) == 0) { warning(paste("To build this vignette, please setup the environment variable", "GOOGLE_API_KEY with the public API key from your Google", "Developer Console before loading the GoogleGenomics package,", "or run GoogleGenomics::authenticate.")) knitr::knit_exit() }
Below we compare the results of annotating variants via r Biocpkg("VariantAnnotation")
specifically repeating a subset of the steps in vignette Introduction to VariantAnnotation. We compare using data from 1,000 Genomes Phase 1 Variants:
First we read in the data from the VCF file:
library(VariantAnnotation)
fl <- system.file("extdata", "chr22.vcf.gz", package="VariantAnnotation") vcf <- readVcf(fl, "hg19") vcf <- renameSeqlevels(vcf, c("22"="chr22")) vcf
The file chr22.vcf.gz
within package VariantAnnotation holds data for 5 of the 1,092 individuals in 1,000 Genomes, starting at position 50300078 and ending at position 50999964.
HG00096 HG00097 HG00099 HG00100 HG00101
Important data differences to note:
chr22.vcf.gz
. They are the only two variants within the genomic range with ALT == <DEL>
.library(GoogleGenomics) # This vignette is authenticated on package load from the env variable GOOGLE_API_KEY. # When running interactively, call the authenticate method. # ?authenticate
# We're just getting the first few variants so that this runs quickly. # If we wanted to get them all, we sould set end=50999964. granges <- getVariants(variantSetId="10473108253681171589", chromosome="22", start=50300077, end=50303000, converter=variantsToGRanges)
Ensure that the data retrieved by each matches:
vcf <- vcf[1:length(granges)] # Truncate the VCF data so that it is the same # set as what was retrieved from the API.
library(testthat)
expect_equal(start(granges), start(vcf)) expect_equal(end(granges), end(vcf)) expect_equal(as.character(granges$REF), as.character(ref(vcf))) expect_equal(as.character(unlist(granges$ALT)), as.character(unlist(alt(vcf)))) expect_equal(granges$QUAL, qual(vcf)) expect_equal(granges$FILTER, filt(vcf))
Now locate the protein coding variants in each:
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
txdb <- TxDb.Hsapiens.UCSC.hg19.knownGene rd <- rowRanges(vcf) vcf_locations <- locateVariants(rd, txdb, CodingVariants()) vcf_locations granges_locations <- locateVariants(granges, txdb, CodingVariants()) granges_locations expect_equal(granges_locations, vcf_locations)
And predict the effect of the protein coding variants:
library(BSgenome.Hsapiens.UCSC.hg19)
vcf_coding <- predictCoding(vcf, txdb, seqSource=Hsapiens) vcf_coding granges_coding <- predictCoding(rep(granges, elementNROWS(granges$ALT)), txdb, seqSource=Hsapiens, varAllele=unlist(granges$ALT, use.names=FALSE)) granges_coding expect_equal(as.matrix(granges_coding$REFCODON), as.matrix(vcf_coding$REFCODON)) expect_equal(as.matrix(granges_coding$VARCODON), as.matrix(vcf_coding$VARCODON)) expect_equal(granges_coding$GENEID, vcf_coding$GENEID) expect_equal(granges_coding$CONSEQUENCE, vcf_coding$CONSEQUENCE)
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.