Ensembl’s Variant Effect Predictor is described in McLaren et al. (2016).
Prior to Bioconductor 3.19, the ensemblVEP package provided access to Ensembl’s predictions through an interface between Perl and MySQL.
In 3.19 VariantAnnotation supports the use of the VEP component of the REST API at https://rest.ensembl.org.
The function vep_by_region
will accept
a VCF object as defined in VariantAnnotation.
library(VariantAnnotation)
fl <- system.file("extdata", "chr22.vcf.gz", package="VariantAnnotation")
r22 = readVcf(fl)
r22
## class: CollapsedVCF
## dim: 10376 5
## rowRanges(vcf):
## GRanges with 5 metadata columns: paramRangeID, REF, ALT, QUAL, FILTER
## info(vcf):
## DataFrame with 22 columns: LDAF, AVGPOST, RSQ, ERATE, THETA, CIEND, CIPOS,...
## info(header(vcf)):
## Number Type Description
## LDAF 1 Float MLE Allele Frequency Accounting for LD
## AVGPOST 1 Float Average posterior probability from MaCH/Thunder
## RSQ 1 Float Genotype imputation quality from MaCH/Thunder
## ERATE 1 Float Per-marker Mutation rate from MaCH/Thunder
## THETA 1 Float Per-marker Transition rate from MaCH/Thunder
## CIEND 2 Integer Confidence interval around END for imprecise var...
## CIPOS 2 Integer Confidence interval around POS for imprecise var...
## END 1 Integer End position of the variant described in this re...
## HOMLEN . Integer Length of base pair identical micro-homology at ...
## HOMSEQ . String Sequence of base pair identical micro-homology a...
## SVLEN 1 Integer Difference in length between REF and ALT alleles
## SVTYPE 1 String Type of structural variant
## AC . Integer Alternate Allele Count
## AN 1 Integer Total Allele Count
## AA 1 String Ancestral Allele, ftp://ftp.1000genomes.ebi.ac.u...
## AF 1 Float Global Allele Frequency based on AC/AN
## AMR_AF 1 Float Allele Frequency for samples from AMR based on A...
## ASN_AF 1 Float Allele Frequency for samples from ASN based on A...
## AFR_AF 1 Float Allele Frequency for samples from AFR based on A...
## EUR_AF 1 Float Allele Frequency for samples from EUR based on A...
## VT 1 String indicates what type of variant the line represents
## SNPSOURCE . String indicates if a snp was called when analysing the...
## geno(vcf):
## List of length 3: GT, DS, GL
## geno(header(vcf)):
## Number Type Description
## GT 1 String Genotype
## DS 1 Float Genotype dosage from MaCH/Thunder
## GL G Float Genotype Likelihoods
In this example we confine attention to single nucleotide variants.
There is a limit of 200 locations in a request, and 55000 requests per hour. We’ll base our query on 100 positions in the chr22 VCF.
dr = which(width(rowRanges(r22))!=1)
r22s = r22[-dr]
res = vep_by_region(r22[1:100], snv_only=FALSE, chk_max=FALSE)
jans = toJSON(content(res))
There are various ways to work with the result of this query to the API. We’ll use the rjsoncons JSON processing infrastructure to dig in and understand aspects of the API behavior.
First, the top-level concepts produced for each variant can be retrieved using
## [1] "assembly_name" "id"
## [3] "strand" "start"
## [5] "end" "most_severe_consequence"
## [7] "transcript_consequences" "input"
## [9] "seq_region_name" "allele_string"
## [11] "colocated_variants" "regulatory_feature_consequences"
Annotation of the most severe consequence known will typically be of interest:
##
## 5_prime_UTR_variant intron_variant splice_region_variant
## 1 98 1
There is variability in the structure of data returned for each query.
## [[1]]
## consequence_terms impact regulatory_feature_id biotype variant_allele
## 1 regulato.... MODIFIER ENSR22_5.... CTCF_bin.... T
Furthermore, the content of the motif feature consequences field seems very peculiar.
## < table of extent 0 >
We’ll consider the following approach to converting the API response to a GenomicRanges GRanges instance. Eventually this may become part of the package.
library(GenomicRanges)
.make_GRanges = function( vep_response ) {
stopifnot(inherits(vep_response, "response")) # httr
nested = fromJSON(toJSON(content(vep_response)))
ini = GRanges(seqnames = unlist(nested$seq_region_name),
IRanges(start=unlist(nested$start), end=unlist(nested$end)))
dr = match(c("seq_region_name", "start", "end"), names(nested))
mcols(ini) = DataFrame(nested[,-dr])
ini
}
tstg = .make_GRanges( res )
tstg[,1] # full print is unwieldy
## GRanges object with 100 ranges and 1 metadata column:
## seqnames ranges strand | assembly_name
## <Rle> <IRanges> <Rle> | <list>
## [1] 22 50300078 * | GRCh38
## [2] 22 50300086 * | GRCh38
## [3] 22 50300101 * | GRCh38
## [4] 22 50300113 * | GRCh38
## [5] 22 50300166 * | GRCh38
## ... ... ... ... . ...
## [96] 22 50304748 * | GRCh38
## [97] 22 50304805 * | GRCh38
## [98] 22 50304935 * | GRCh38
## [99] 22 50304943 * | GRCh38
## [100] 22 50305084 * | GRCh38
## -------
## seqinfo: 1 sequence from an unspecified genome; no seqlengths
## [1] "assembly_name" "id"
## [3] "strand" "most_severe_consequence"
## [5] "transcript_consequences" "input"
## [7] "allele_string" "colocated_variants"
## [9] "regulatory_feature_consequences"
Now information about variants can be retrieved with range operations. Deep annotation requires nested structure of the metadata columns.
## [[1]]
## strand gene_id transcript_id consequence_terms gene_symbol
## 1 -1 ENSG0000.... ENST0000.... intron_v.... PLXNB2
## 2 -1 ENSG0000.... ENST0000.... intron_v.... PLXNB2
## 3 -1 ENSG0000.... ENST0000.... intron_v.... PLXNB2
## 4 -1 ENSG0000.... ENST0000.... intron_v.... PLXNB2
## gene_symbol_source impact hgnc_id variant_allele biotype flags
## 1 HGNC MODIFIER HGNC:9104 G protein_....
## 2 HGNC MODIFIER HGNC:9104 G protein_.... cds_end_NF
## 3 HGNC MODIFIER HGNC:9104 G protein_.... cds_end_NF
## 4 HGNC MODIFIER HGNC:9104 G protein_....
An important element of prior work in ensemblVEP supports feeding annotation back into the VCF used to generate the effect prediction query. This seems feasible but concrete use cases are of interest.
McLaren, William, Laurent Gil, Sarah E. Hunt, Harpreet Singh Riat, Graham R. S. Ritchie, Anja Thormann, Paul Flicek, and Fiona Cunningham. 2016. “The Ensembl Variant Effect Predictor.” Genome Biology 17 (1): 122. https://doi.org/10.1186/s13059-016-0974-4.