Literature DB >> 27990260

Genomic variant annotation workflow for clinical applications.

Thomas Thurnherr1, Franziska Singer2, Daniel J Stekhoven2, Niko Beerenwinkel1.   

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.

Entities:  

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

Year:  2016        PMID: 27990260      PMCID: PMC5130070          DOI: 10.12688/f1000research.9357.2

Source DB:  PubMed          Journal:  F1000Res        ISSN: 2046-1402


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 available [2, 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-types [4]. 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 sequencing [5– 8]. 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. Alternatively, variants can be loaded from a variant call format (VCF) file and annotated using the Bioconductor VariantAnnotation workflow [10] ( 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. 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”. 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- ClinicalTrialGuideTo- Pharmacology- InteractionsCIViCDoCMScore
DDR2DASATINIB010113
DDR2ERLOTINIB000112
DDR2REGORAFENIB110002
DDR2SORAFENIB001001
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.

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.

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.
Table 2.

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

SourceLinkReference
CancerCommons https://www.cancercommons.org [11]
ChEMBL https://www.ebi.ac.uk/chembl [12]
CIViC https://civic.genome.wustl.edu [13]
ClearityFoundationBiomarkers http://www.clearityfoundation.org [14]
ClearityFoundationClinicalTrial http://www.clearityfoundation.org/clinical-trials [14]
DoCM http://docm.genome.wustl.edu [15]
DrugBank http://www.drugbank.ca [16]
GuideToPharmacologyInteractions http://www.guidetopharmacology.org [17]
MyCancerGenome https://www.mycancergenome.org [4]
MyCancerGenomeClinicalTrial https://www.mycancergenome.org/clinicaltrials [4]
PharmGKB https://www.pharmgkb.org/ [18]
TALC [19]
TEND [20]
TdgClinicalTrial [21]
TTD http://bidd.nus.edu.sg/group/cjttd [22]
The package provides a helper function that prints a list of all available source databases.

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. There are 41 different gene categories available. The following command lists all available gene categories.

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. To print a list of all available interaction types, one can use the following method:

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.

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.
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.

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 available from: http://bioconductor.org/packages/rDGIdb/ Latest source code: https://github.com/Bioconductor-mirror/rDGIdb Archived source code as at time of publication: http://dx.doi.org/10.5281/zenodo.59253 [23] License: MIT license The authors have addressed the concerns raised by reviewers and made necessary changes in the manuscript. The manuscript is fully approved for indexing in F1000research. I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard. Points raised were addressed in the revision I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard. 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 organized except for results section which has a room for improvement. The minor concerns are outlined as follows:-  We encountered a problem in installation of package “rDGidb”in R (version 3.3.1, release date 2016-06-21) with a warning message i.e. Package ‘rDGIdb’ is not available (for R version3.3.1). We recommend authors to demonstrate results shown in Table 1 as a pictorial representation such as drug-gene interaction network to increase readability. We suggest inclusion of the information related to Source Trust Level. It would be nice to include query option using reference SNP ID number (“ rs” ID) or by chromosomal position of genomic aberrations obtained from Next Generation Sequencing pipeline to directly identify drugs associated with these clinically actionable variations. We recommend authors to make “rDGidb” working and if this warning message is platform dependent, then please provide detailed documentation on software’s or any updates needed in existing packages before installation of package. We have read this submission. We believe that we have an appropriate level of expertise to confirm that it is of an acceptable scientific standard, however we have significant reservations, as outlined above. We would like to thank Ankush Sharma and Sahidul Islam for their time and effort to review our manuscript. The concerns are addressed below: Finally, the package is not yet available in the current Bioconductor release branch (version 3.3). This is likely the reason why you encountered an error while installing the package. The release is scheduled for October 2016 (version 3.4). The release will make the package available through the standard installation procedure. Installation instructions for packages in the development branch are provided on the Bioconductor website (https://www.bioconductor.org/developers/). As suggested, we added a figure to the manuscript that illustrates drug-gene interactions of DDR2. “Source trust level” is a parameter available through the DGIdb API, but not through the DGIdb web interface. The parameter can either be set to “expert curated” or “non-curated”. We did not include it as a parameter in rDGIdb for mainly two reasons: 1) We aim to reflect the web interface as consistently as possible and “Source trust level” is not available for DGIdb website queries; and 2) It is not clear which resources or drug-gene interactions are considered “expert curated” and which are not. Thank you for the suggestion. Other packages implement variant call format (VCF) file import and annotation functionality. We recommend to use those. However, we added a paragraph to the manuscript (section “R session setup”) on that topic. Moreover, in the package vignette, we show how to employ the workflow with a VCF file as input. With this, we now provide a complete annotation workflow, from variants in VCF format to drug-gene interactions. Finally, we would like to point out that DGIdb queries are currently only possible on a gene level, but not on a variant level. Therefore, the association of a mutation in a specific position of the genome with a drug requires manual curation of the results obtained through rDGIdb. 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. As the application of NGS to cancer samples accelerates the resultant explosion of somatic variants threatens to swamp user’s ability to select them to input to this tool. What filters can be put in place to reduce huge aberration lists associated with passenger (i.e. probably non-causative and spurious) rather than driver mutations? Given the latest Nature publication on the analysis of protein-coding genetic variation in 60,706 humans now available in the ExAC resource I suggest the utility emphasis for looking at germ-line vs somatic target aberrations should be re-balanced. According to their website,  DGIdb (v2.22 - sha1 aa9170e) was last updated 2016-02-21 and not all primary sources loaded were the latest versions even then.  For example DrugBank is now up to 5.0 and GtoPdb is up to 2016.3 and it is not clear if it has only ChEMBL 20 rather than 21. Unless DGIdb can be prevailed upon to update more frequently and provide the release statistics of content, the utility of this tool is constrained because users cannot trust the results to be up to date. The main goal of this tool for the identification of targetable aberrations will be confounded by the conflation of loss vs gain of function on both the target and drug sides.  As we know, genetic aberrations are predominantly LOF but most drugs also negatively modulate their targets. This should be discussed and perhaps even made filterable in some way? Why does Table 1 show such an apparently inconsistent mosaic of results? Reasons for discordance between the individual sources need to be explained. Given this tool was developed by SIB would it be possible to add in Swiss-Var as an independent source via Swiss-Prot or NeXtProt? I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard, however I have significant reservations, as outlined above. We would like to thank Christoper Southan for his thoughtful comments. Please find our response below: There are several strategies that can be put in place to reduce the number of somatic aberrations to those which are likely relevant/functional. These include, but are not limited to: 1) Identification of recurrent mutations; 2) Prediction of the functional impact of a mutation; 3) Identification of recurrent combinations of mutations; and 4) Experimental validation. At this point, we would like to remark that the aim of rDGIdb is to annotate variants with potential drug-gene interactions and not to filter somatic variants. Other methods take care of filtering variants. Finally, rDGIdb is not limited in the number of genes to query. We query drug-gene interactions for several thousand genes at the time. We agree that germline mutations play a role in a variety of diseases, specifically in cancer. Although rDGIdb is not limited to somatic mutations, we aim to identify potential targeted therapies. That is, drugs that specifically target malignant cells. Therefore, we think that considering somatic mutations rather than germline mutations is justified in this case. We agree with the reviewer that DGIdb does not currently use the latest versions of all the resources it integrates. As a consequence, drug-gene interactions queried through rDGIdb might not agree with results from the most up-to-date resources. Results queried through rDGIdb are based on results from DGIdb and the resources it integrates. As a consequence, we have no control over how frequently resources are updated by DGIdb. However, we added a function to the package that prints the versions of all resource integrated by DGIdb. This helps the user to decide if the version available in rDGIdb/DGIdb is sufficient for the intended purpose. The function is documented in the updated manuscript and in the package vignette. The type of a drug-gene interaction can be filtered through an optional argument (interactionType) to the main query function. Possible values include suppressor, inhibitor, or activator. These limit reported drug-gene interactions to the interaction type of interest. Moreover, rDGIdb allows to query for specific gene categories, for instance tumor suppressor. These information/filters may help the user interpret the results provided by rDGIdb. Finally, we would like to point out that the interpretation of mutations in regard of their suitability as targetable mutations is beyond the scope of rDGIdb. All described filters and additional information can only assist the user in the interpretation of a specific mutation or interaction. The applicability of a certain therapy depends on a number of factors: cancer type, treatment history, and many others. We selected an example that is brief enough to be presented as a table in the manuscript. DDR2 seemed reasonable, with drug interactions in five different resources. The diversity of the drug-gene interactions in Table 1 can be explained by the diversity of these resources. For example, DrugBank lists experimental and approved drugs in any disease. In contrast, MyCancerGenomeClinicalTrials and CIViC list drugs in cancer only, which have either been approved by the authorities or are currently investigated through a clinical study. Finally, in the manuscript we mention that the most appropriate resources to be queried might depend on the application. We further explain how to filter for specific resources. To our knowledge, SwissVar does not catalogue drug-gene interactions, but provides information on variants and their disease relations. At the moment, the main focus of the package is to report drug-gene interactions. However, we agree that SwissVar provides useful additional information on the genes queried through rDGIdb. Therefore, we consider an extension of the scope in regard to disease associations for a future release of the package.
  14 in total

Review 1.  The druggable genome: Evaluation of drug targets in clinical trials suggests major shifts in molecular class and indication.

Authors:  Mathias Rask-Andersen; Surendar Masuram; Helgi B Schiöth
Journal:  Annu Rev Pharmacol Toxicol       Date:  2013-08-30       Impact factor: 13.820

2.  Update of TTD: Therapeutic Target Database.

Authors:  Feng Zhu; BuCong Han; Pankaj Kumar; XiangHui Liu; XiaoHua Ma; Xiaona Wei; Lu Huang; YangFan Guo; LianYi Han; ChanJuan Zheng; YuZong Chen
Journal:  Nucleic Acids Res       Date:  2009-11-20       Impact factor: 16.971

3.  VariantAnnotation: a Bioconductor package for exploration and annotation of genetic variants.

Authors:  Valerie Obenchain; Michael Lawrence; Vincent Carey; Stephanie Gogarten; Paul Shannon; Martin Morgan
Journal:  Bioinformatics       Date:  2014-03-28       Impact factor: 6.937

Review 4.  Diagnostics based on nucleic acid sequence variant profiling: PCR, hybridization, and NGS approaches.

Authors:  Dmitriy Khodakov; Chunyan Wang; David Yu Zhang
Journal:  Adv Drug Deliv Rev       Date:  2016-04-16       Impact factor: 15.470

Review 5.  Pharmacogenomics knowledge for personalized medicine.

Authors:  M Whirl-Carrillo; E M McDonagh; J M Hebert; L Gong; K Sangkuhl; C F Thorn; R B Altman; T E Klein
Journal:  Clin Pharmacol Ther       Date:  2012-10       Impact factor: 6.875

6.  Gene-panel sequencing and the prediction of breast-cancer risk.

Authors:  Douglas F Easton; Paul D P Pharoah; Antonis C Antoniou; Marc Tischkowitz; Sean V Tavtigian; Katherine L Nathanson; Peter Devilee; Alfons Meindl; Fergus J Couch; Melissa Southey; David E Goldgar; D Gareth R Evans; Georgia Chenevix-Trench; Nazneen Rahman; Mark Robson; Susan M Domchek; William D Foulkes
Journal:  N Engl J Med       Date:  2015-05-27       Impact factor: 91.245

7.  Translating genomic information into clinical medicine: lung cancer as a paradigm.

Authors:  Mia A Levy; Christine M Lovly; William Pao
Journal:  Genome Res       Date:  2012-09-27       Impact factor: 9.043

8.  Comprehensive genomic characterization defines human glioblastoma genes and core pathways.

Authors: 
Journal:  Nature       Date:  2008-09-04       Impact factor: 49.962

9.  The IUPHAR/BPS Guide to PHARMACOLOGY: an expert-driven knowledgebase of drug targets and their ligands.

Authors:  Adam J Pawson; Joanna L Sharman; Helen E Benson; Elena Faccenda; Stephen P H Alexander; O Peter Buneman; Anthony P Davenport; John C McGrath; John A Peters; Christopher Southan; Michael Spedding; Wenyuan Yu; Anthony J Harmar
Journal:  Nucleic Acids Res       Date:  2013-11-14       Impact factor: 16.971

10.  DGIdb 2.0: mining clinically relevant drug-gene interactions.

Authors:  Alex H Wagner; Adam C Coffman; Benjamin J Ainscough; Nicholas C Spies; Zachary L Skidmore; Katie M Campbell; Kilannin Krysiak; Deng Pan; Joshua F McMichael; James M Eldred; Jason R Walker; Richard K Wilson; Elaine R Mardis; Malachi Griffith; Obi L Griffith
Journal:  Nucleic Acids Res       Date:  2015-11-03       Impact factor: 16.971

View more
  9 in total

1.  Multitype Network-Guided Target Controllability in Phenotypically Characterized Osteosarcoma: Role of Tumor Microenvironment.

Authors:  Ankush Sharma; Caterina Cinti; Enrico Capobianco
Journal:  Front Immunol       Date:  2017-07-31       Impact factor: 7.561

Review 2.  Bioinformatics for precision oncology.

Authors:  Jochen Singer; Anja Irmisch; Hans-Joachim Ruscheweyh; Franziska Singer; Nora C Toussaint; Mitchell P Levesque; Daniel J Stekhoven; Niko Beerenwinkel
Journal:  Brief Bioinform       Date:  2019-05-21       Impact factor: 11.622

3.  Evidence-Based Network Approach to Recommending Targeted Cancer Therapies.

Authors:  Jayaram Kancherla; Shruti Rao; Krithika Bhuvaneshwar; Rebecca B Riggins; Robert A Beckman; Subha Madhavan; Héctor Corrada Bravo; Simina M Boca
Journal:  JCO Clin Cancer Inform       Date:  2020-01

4.  Heterogeneity of Myc expression in breast cancer exposes pharmacological vulnerabilities revealed through executable mechanistic modeling.

Authors:  Peter Kreuzaler; Matthew A Clarke; Elizabeth J Brown; Catherine H Wilson; Roderik M Kortlever; Nir Piterman; Trevor Littlewood; Gerard I Evan; Jasmin Fisher
Journal:  Proc Natl Acad Sci U S A       Date:  2019-10-14       Impact factor: 11.205

5.  IGF2BP1, a Conserved Regulator of RNA Turnover in Cancer.

Authors:  Markus Glaß; Danny Misiak; Nadine Bley; Simon Müller; Sven Hagemann; Bianca Busch; Alexander Rausch; Stefan Hüttelmaier
Journal:  Front Mol Biosci       Date:  2021-03-22

6.  A showcase study on personalized in silico drug response prediction based on the genetic landscape of muscle invasive bladder cancer.

Authors:  Friedemann Krentel; Franziska Singer; María Lourdes Rosano-Gonzalez; Ewan A Gibb; Yang Liu; Elai Davicioni; Nicola Keller; Daniel J Stekhoven; Marianna Kruithof-de Julio; Roland Seiler
Journal:  Sci Rep       Date:  2021-03-12       Impact factor: 4.379

7.  DGIdb 3.0: a redesign and expansion of the drug-gene interaction database.

Authors:  Kelsy C Cotto; Alex H Wagner; Yang-Yang Feng; Susanna Kiwala; Adam C Coffman; Gregory Spies; Alex Wollam; Nicholas C Spies; Obi L Griffith; Malachi Griffith
Journal:  Nucleic Acids Res       Date:  2018-01-04       Impact factor: 16.971

8.  Mutational interactions define novel cancer subgroups.

Authors:  Jack Kuipers; Thomas Thurnherr; Giusi Moffa; Polina Suter; Jonas Behr; Ryan Goosen; Gerhard Christofori; Niko Beerenwinkel
Journal:  Nat Commun       Date:  2018-10-19       Impact factor: 14.919

9.  SwissMTB: establishing comprehensive molecular cancer diagnostics in Swiss clinics.

Authors:  Franziska Singer; Anja Irmisch; Nora C Toussaint; Linda Grob; Jochen Singer; Thomas Thurnherr; Niko Beerenwinkel; Mitchell P Levesque; Reinhard Dummer; Luca Quagliata; Sacha I Rothschild; Andreas Wicki; Christian Beisel; Daniel J Stekhoven
Journal:  BMC Med Inform Decis Mak       Date:  2018-10-29       Impact factor: 2.796

  9 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.