ALL Metrics
-
Views
-
Downloads
Get PDF
Get XML
Cite
Export
Track
Software Tool Article
Revised

Genomic variant annotation workflow for clinical applications

[version 2; peer review: 2 approved]
PUBLISHED 24 Oct 2016
Author details Author details
OPEN PEER REVIEW
REVIEWER STATUS

This article is included in the Bioinformatics gateway.

This article is included in the Bioconductor gateway.

This article is included in the RPackage gateway.

Abstract

Annotation and interpretation of DNA aberrations identified through next-generation sequencing is becoming an increasingly important task. Even more so in the context of data analysis pipelines for medical applications, where genomic aberrations are associated with phenotypic and clinical features. Here we describe a workflow to identify potential gene targets in aberrated genes or pathways and their corresponding drugs. To this end, we provide the R/Bioconductor package rDGIdb, an R wrapper to query the drug-gene interaction database (DGIdb). DGIdb accumulates drug-gene interaction data from 15 different resources and allows filtering on different levels. The rDGIdb package makes these resources and tools available to R users. Moreover, rDGIdb queries can be automated through incorporation of the rDGIdb package into NGS sequencing pipelines.

Keywords

Drug-gene interaction, genomics, next-generation sequencing, annotation, somatic variant, clinical application, Bioconductor package, pipeline.

Revised Amendments from Version 1

To address the reviewers comments, we made a few changes to the previous version:
- Added a paragraph under "R session setup"
- As requested by the reviewer, we added a figure (Figure 1) and refer to it in "Query drug-gene interactions"
- Added a section on "Version numbers of DGIdb integrated resources" towards the end of the manuscript

See the authors' detailed response to the review by Ankush Sharma and Md. Sahidul Islam
See the authors' detailed response to the review by Christopher Southan

Introduction

In recent years, next-generation sequencing (NGS) pipelines have been established and employed extensively in research settings. These efforts have helped tremendously to improve our understanding of genetic malignancies such as cancer. More recently, joint efforts of research groups and clinics aim to further enhance our knowledge of these malignancies for better diagnostic and treatment options. For example, the Cancer Genome Atlas (TCGA)1 Consortium has sequenced several thousand samples of more than 20 different cancer types. One of the aims of this project is to better characterize different cancer types, for example through identification of distinct molecular sub-types.

There are also substantial efforts to move NGS technologies and pipelines into molecular diagnostics, for example, for the characterization of somatic variants of individual tumor samples through targeted panel sequencing. Targeted panel sequencing covers a specific set of genes or locations, typically between 50 and a few hundred. Panels focus on frequently mutated or otherwise altered genes or genomic locations. Currently, several generic cancer panels and panels for specific cancer types are available2,3. Based on the panel characterization, targeted therapies for the specific genetic aberrations can be applied.

The number of targeted therapies for cancer available today is still relatively small and their approval is typically limited to one or several cancer sub-types4. However, as the therapeutic options increase, more patients can benefit from these targeted therapies. As a consequence, several clinics or institutes developed and implemented molecular diagnostic approaches based on whole-exome and/or whole-genome sequencing58. Unlike targeted panels, whole-exome or whole-genome sequencing is not limited to a set of pre-selected genes, but allows for the detection of somatic aberrations across all protein coding sequences or the entire genome, respectively.

An exome- or genome-wide approach provides great advantage over targeted gene panels. They allow for a more comprehensive picture of the mutational landscape of a specific tumor. In addition, with more such data available and a better understanding of gene-gene and drug-gene interactions, prediction of drug efficacy as well as adverse drug reactions may become feasible. However, workflows based on whole-exome or whole-genome sequencing require clinical interpretation of the identified genetic variants. The result of an NGS pipeline is generally a list of genes harboring somatic variants or other genomic aberrations. To identify clinically actionable targets, these genomic aberrations need to be associated with drugs specifically targeting them.

Here we suggest a workflow to automate the identification of potential drug targets from a list of genomic aberrations, represented by a list of genes harboring them. For these genes, we mine drug-gene interactions using the drug-gene interaction database (DGIdb)9. DGIdb integrates drug-gene interactions from 15 different resources. We provide the R/Bioconductor package rDGIdb (http://bioconductor.org/packages/rDGIdb/), which allows to efficiently integrate drug-gene annotation with NGS pipelines. rDGIdb can query DGIdb and filter results on different levels, i.e., source databases, interaction types, and gene categories. Through the rDGIdb package, drug-gene interaction mining can be automated and incorporated easily into NGS pipelines. Moreover, the rDGIdb package also provides functionality to visualize results.

Somatic variant calling

Somatic variants or other genomic aberrations are identified from raw sequencing data and filtered using a standard NGS pipeline. The number of somatic variants might vary substantially, depending on the sequencing approach used and the levels or stringency of filtering employed. Next, somatic variants are annotated with gene names, for which interacting drugs can then be queried through rDGIdb.

Identification of targetable aberrations

Provided a list of genes with genomic aberrations, we identify aberrations targetable with a drug or compound. The R/Bioconductor package rDGIdb provides functionality to query drug-gene interactions provided by DGIdb and to apply filtering on different levels.

R session setup

The package can be installed from an open R session. Instructions are provided on the rDGIdb Bioconductor page (http://bioconductor.org/packages/rDGIdb/). After installation of the package and all its dependencies, rDGIdb needs to be attached and a gene vector prepared. Gene names can be loaded from a text file or manually entered. The code below illustrates how to load gene names from a text file called aberrated-genes.txt, assuming the text file lists one gene symbol per line.

library("rDGIdb")
genes <- read.table("aberrated-genes.txt", sep = "\t", header = FALSE, stringsAsFactors = FALSE)
genes <- genes[,1]

Alternatively, variants can be loaded from a variant call format (VCF) file and annotated using the Bioconductor VariantAnnotation workflow10 (http://bioconductor.org/packages/VariantAnnotation). This is illustrated in the rDGIdb package vignette.

Query drug-gene interactions

To query DGIdb, the rDGIdb package provides a simple query function, queryDGIdb. The function takes a vector of official gene symbols for which drug-gene interactions are to be queried. This is the only required argument to the query function, all other arguments are optional.

genes <- c("DDR2")
queryResult <- queryDGIdb(genes)

The function returns the query result as an object of type rDGIdbResult. The result is accessible through S4 methods. These methods format the result according to the result tabs provided on the DGIdb web interface. More specifically, the package provides four methods that return result data resembling the format provided through the DGIdb web interface, namely “Results Summary”, “Detailed Results”, “By Gene”, and “Search Term Summary”.

resultSummary(queryResult) # Summary table of the results
detailedResults(queryResult) # Detailed result table listing source and interaction type
byGene(queryResult) # Gene summary
searchTermSummary(queryResult) # Genes successfully mapped

An example output of resultSummary for the DDR2 gene is shown in Table 1. Interactions are illustrated as a drug-gene interaction network in Figure 1. The figure further shows the resource that reported a specific interaction. Query results can either be further processed using R or saved to a text file for analysis with other software tools.

Table 1. rDGIdb result summary of DDR2 drug interactions.

The number in the table indicates if a drug-gene interaction was found in a source database, where 1 means yes and 0 means no. Drug-gene interactions are sorted by their score, which is the total number of source databases listing the interaction.

GeneDrugDrug-BankMyCancer-
Genome-
ClinicalTrial
GuideTo-
Pharmacology-
Interactions
CIViCDoCMScore
DDR2DASATINIB010113
DDR2ERLOTINIB000112
DDR2REGORAFENIB110002
DDR2SORAFENIB001001
36731705-bc6a-4f1f-8c63-dafbbb114965_figure1.gif

Figure 1. Drug-gene interactions illustrated as a network with DDR2 in the middle (red) and interacting drugs (blue) connected to the gene.

Resources that report a specific drug-gene interactions are colored in green.

Filter drug-gene interactions

Depending on the application, it may be desirable to filter for specific drug-gene interactions. The rDGIdb package allows filtering on the level of (1) source database, (2) gene category, (3) interaction type, and (4) other criteria, applied directly to the query result.

Filter by source database

DGIdb accumulates drug-gene interactions from 15 different source databases. These are summarized in Table 2. Depending on the application for which drug-gene interactions are queried, one or several source databases might be more relevant. The specific database or a group of databases to be queried is specified through the sourceDatabases argument. rDGIdb will only return hits listed in respective source databases. For example, the query below returns drug-gene interactions from databases: MyCancerGenome and MyCancerGenomeClinicalTrials only.

genes <- c("KRAS", "BRAF")
databases <- c("MyCancerGenome","MyCancerGenomeClinicalTrials")
filter1 <- queryDGIdb(genes, sourceDatabases = databases)

Table 2. Sources from which drug-gene interactions are accumulated in DGIdb.

SourceLinkReference
CancerCommonshttps://www.cancercommons.org11
ChEMBLhttps://www.ebi.ac.uk/chembl12
CIViChttps://civic.genome.wustl.edu13
ClearityFoundationBiomarkershttp://www.clearityfoundation.org14
ClearityFoundationClinicalTrialhttp://www.clearityfoundation.org/clinical-trials14
DoCMhttp://docm.genome.wustl.edu15
DrugBankhttp://www.drugbank.ca16
GuideToPharmacologyInteractionshttp://www.guidetopharmacology.org17
MyCancerGenomehttps://www.mycancergenome.org4
MyCancerGenomeClinicalTrialhttps://www.mycancergenome.org/clinicaltrials4
PharmGKBhttps://www.pharmgkb.org/18
TALC19
TEND20
TdgClinicalTrial21
TTDhttp://bidd.nus.edu.sg/group/cjttd22

The package provides a helper function that prints a list of all available source databases.

sourceDatabases()

Filter by gene category

Similarly, we can filter for specific gene categories. With the gene categories filter, drug interactions for genes with a specific category label can be queried. Examples of gene categories are clinically actionable, kinase, or tumor suppressor. The optional geneCategories argument can be used to filter by gene categories.

categories <- c("clinically actionable","kinase", "tumor suppressor")
filter2 <- queryDGIdb(genes, geneCategories = categories)

There are 41 different gene categories available. The following command lists all available gene categories.

geneCategories()

Filter by interaction type

Finally, the package provides filtering by interaction type. An interaction type is a label for the type of drug-gene interaction. 33 different interaction types are available and examples are: activator, inhibitor, cofactor, or modulator. The code below illustrates how to filter for specific interaction types.

interactions <- c("activator","inhibitor")
filter3 <- queryDGIdb(genes, interactionTypes = interactions)

To print a list of all available interaction types, one can use the following method:

interactionTypes()

Manual filtering

Depending on the requirement of a specific application, additional filtering might be applied directly on the query results. For example, to increase confidence of results, drug-gene interactions might be filtered by setting a minimum cutoff on the score. As a result, only drug-gene interactions supported by a minimum number of source databases will be reported. Different score cutoffs may be employed, depending on whether the aim is to query interactions with support from multiple source databases or to include as many drug-gene interactions as there are available in the source databases. The example below illustrates how to filter out drug-gene interactions with only a single supporting source database from the result summary table.

subset(resultSummary(filter2), Score > 1)

Limitations of filtering

Although rDGIdb returns information on the type of interacting drug (such as inhibitor), to assist the follow-up interpretation of drug-gene interactions, querying and filtering through rDGIdb has limitations. For example, it is not possible to filter for specific drug-variant interactions. That is, variants in different locations of the same gene might have different biological effects in a cell or tumor. However, as querying is done on a gene level, variants can not be distinguished. Additional expert knowledge or other approaches will have to be employed to exclude non-relevant drug-gene interactions from the query results.

Plotting of results

The package allows basic plotting of the results. Specifically, the number of interactions by source database can be visualized. An example plot is provided in Figure 2. This plot indicates which source databases report specifically large or small number of drug-gene interactions.

plotInteractionsBySource(filter2)
36731705-bc6a-4f1f-8c63-dafbbb114965_figure2.gif

Figure 2. Example of the number of interactions by source for the KRAS gene.

Version numbers of DGIdb integrated resources

The rDGIdb package provides a function to print the version numbers of all resources integrated in DGIdb. This function helps users to decide if the resource versions available through rDGIdb are sufficient for their intended purpose.

resourceVersions()

Summary

We have described a workflow to identify potentially actionable genomic aberrations. More specifically, we have introduced the R/Bioconductor package rDGIdb, which provides an interface to query DGIdb using R. Given a list of genes with genomic aberrations, rDGIdb queries drug-gene interactions. The package allows filtering on different levels and visualization of the results. The rDGIdb package further includes detailed documentation and a vignette, which provides a step-by-step description of the workflow.

Package content and dependencies

rDGIdb depends on jsonlite and httr, which are available in R version 3.3.1 or higher. Briefly, rDGIdb queries the API provided by DGIdb (http://dgidb.genome.wustl.edu/api) using the POST function implemented in httr. Drug-gene interactions are returned by DGIdb in JSON format. Next, the data is deserialized into an R list object using the jsonlite package. Finally, the list is parsed and stored as an object of type rDGIdbResult. In order for rDGIdb to work, jsonlite, httr, and their dependencies need to be installed. A complete sessionInfo() output is provided below, which includes minimal version numbers of all dependencies.

  • R version 3.3.1 (2016-06-21), x86_64-apple-darwin13.4.0

  • Locale: en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

  • Base packages: base, datasets, graphics, grDevices, methods, stats, utils

  • Other packages: rDGIdb 0.99.4

  • Loaded via a namespace (and not attached): httr 1.1.0, jsonlite 1.0, R6 2.1.2, tools 3.3.1

Software availability

Comments on this article Comments (0)

Version 2
VERSION 2 PUBLISHED 12 Aug 2016
Comment
Author details Author details
Competing interests
Grant information
Copyright
Download
 
Export To
metrics
Views Downloads
F1000Research - -
PubMed Central
Data from PMC are received and updated monthly.
- -
Citations
CITE
how to cite this article
Thurnherr T, Singer F, Stekhoven DJ and Beerenwinkel N. Genomic variant annotation workflow for clinical applications [version 2; peer review: 2 approved] F1000Research 2016, 5:1963 (https://doi.org/10.12688/f1000research.9357.2)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
track
receive updates on this article
Track an article to receive email alerts on any updates to this article.

Open Peer Review

Current Reviewer Status: ?
Key to Reviewer Statuses VIEW
ApprovedThe paper is scientifically sound in its current form and only minor, if any, improvements are suggested
Approved with reservations A number of small changes, sometimes more significant revisions are required to address specific details and improve the papers academic merit.
Not approvedFundamental flaws in the paper seriously undermine the findings and conclusions
Version 2
VERSION 2
PUBLISHED 24 Oct 2016
Revised
Views
12
Cite
Reviewer Report 23 Nov 2016
Ankush Sharma, I​nstitute of Clinical Physiology, National Research Council, Siena, Italy 
Approved
VIEWS 12
The authors have addressed the concerns raised by reviewers and made necessary ... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Sharma A. Reviewer Report For: Genomic variant annotation workflow for clinical applications [version 2; peer review: 2 approved]. F1000Research 2016, 5:1963 (https://doi.org/10.5256/f1000research.10559.r17155)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
Views
20
Cite
Reviewer Report 26 Oct 2016
Christopher Southan, IUPHAR/BPS Guide to PHARMACOLOGY, Center for Integrative Physiology, University of Edinburgh, Edinburgh, UK 
Approved
VIEWS 20
Points raised were ... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Southan C. Reviewer Report For: Genomic variant annotation workflow for clinical applications [version 2; peer review: 2 approved]. F1000Research 2016, 5:1963 (https://doi.org/10.5256/f1000research.10559.r17154)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
Version 1
VERSION 1
PUBLISHED 12 Aug 2016
Views
39
Cite
Reviewer Report 13 Sep 2016
Ankush Sharma, I​nstitute of Clinical Physiology, National Research Council, Siena, Italy 
Md. Sahidul Islam, Department of Statistics, University of Rajshahi, Rajshahi, Bangladesh 
Approved with Reservations
VIEWS 39
This R Package "rDGidb" is of immense usability for genomics and proteomics research community for integrating drug interactions with variations obtained from NGS data and researchers studying complex multi target drug-gene/protein interactions. The research article is written clearly and well ... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Sharma A and Islam MS. Reviewer Report For: Genomic variant annotation workflow for clinical applications [version 2; peer review: 2 approved]. F1000Research 2016, 5:1963 (https://doi.org/10.5256/f1000research.10075.r15658)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
  • Author Response 10 Oct 2016
    Thomas Thurnherr
    10 Oct 2016
    Author Response
    We would like to thank Ankush Sharma and Sahidul Islam for their time and effort to review our manuscript. The concerns are addressed below:
    1. As suggested, we added
    ... Continue reading
COMMENTS ON THIS REPORT
  • Author Response 10 Oct 2016
    Thomas Thurnherr
    10 Oct 2016
    Author Response
    We would like to thank Ankush Sharma and Sahidul Islam for their time and effort to review our manuscript. The concerns are addressed below:
    1. As suggested, we added
    ... Continue reading
Views
67
Cite
Reviewer Report 18 Aug 2016
Christopher Southan, IUPHAR/BPS Guide to PHARMACOLOGY, Center for Integrative Physiology, University of Edinburgh, Edinburgh, UK 
Approved with Reservations
VIEWS 67
This describes an R-based tool to query the drug-gene interactions in DGIdb. The paper is well written and the tool clearly has some utility. However, my reservations are outlined below.
  1. As the application of NGS to
... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Southan C. Reviewer Report For: Genomic variant annotation workflow for clinical applications [version 2; peer review: 2 approved]. F1000Research 2016, 5:1963 (https://doi.org/10.5256/f1000research.10075.r15657)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
  • Author Response 10 Oct 2016
    Thomas Thurnherr
    10 Oct 2016
    Author Response
    We would like to thank Christoper Southan for his thoughtful comments. Please find our response below:
    1. There are several strategies that can be put in place to reduce
    ... Continue reading
COMMENTS ON THIS REPORT
  • Author Response 10 Oct 2016
    Thomas Thurnherr
    10 Oct 2016
    Author Response
    We would like to thank Christoper Southan for his thoughtful comments. Please find our response below:
    1. There are several strategies that can be put in place to reduce
    ... Continue reading

Comments on this article Comments (0)

Version 2
VERSION 2 PUBLISHED 12 Aug 2016
Comment
Alongside their report, reviewers assign a status to the article:
Approved - the paper is scientifically sound in its current form and only minor, if any, improvements are suggested
Approved with reservations - A number of small changes, sometimes more significant revisions are required to address specific details and improve the papers academic merit.
Not approved - fundamental flaws in the paper seriously undermine the findings and conclusions
Sign In
If you've forgotten your password, please enter your email address below and we'll send you instructions on how to reset your password.

The email address should be the one you originally registered with F1000.

Email address not valid, please try again

You registered with F1000 via Google, so we cannot reset your password.

To sign in, please click here.

If you still need help with your Google account password, please click here.

You registered with F1000 via Facebook, so we cannot reset your password.

To sign in, please click here.

If you still need help with your Facebook account password, please click here.

Code not correct, please try again
Email us for further assistance.
Server error, please try again.