--- title: 'PharmacoGx: An R Package for Analysis of Large Pharmacogenomic Datasets' author: - name: Petr Smirnov affilnum: 1 - name: Zhaleh Safikhani affilnum: '1,2' - name: Benjamin Haibe-Kains affilation: '1, 2, 3' affiliation: - affilnum: 1 affil: Princess Margaret Cancer Centre, University Health Network, Toronto Canada - affilnum: 2 affil: Department of Medical Biophysics, University of Toronto, Toronto Canada - affilnum: 3 affil: Department of Computer Science, University of Toronto, Toronto Canada output: pdf_document: fig_caption: yes fig_width: 7 fig_height: 7 keep_tex: yes number_sections: no template: manuscript.latex includes: in_header: header.tex html_document: null word_document: null documentclass: article toc: true classoption: a4paper capsize: normalsize geometry: margin=1in fontsize: 11pt spacing: singlespacing footerdate: no abstractt: no bibliography: - pharmacogx.bib csl: ecology.csl vignette: > %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} %\usepackage[UTF-8]{inputenc} %\VignetteIndexEntry{PharmacoGx: An R Package for Analysis of Large Pharmacogenomic Datasets} --- \vspace{5pt} \footnotesize ```{r setup, include=FALSE, cache=FALSE, message = FALSE} library("knitr") ### Chunk options: see http://yihui.name/knitr/options/ ### ## Text results opts_chunk$set(echo = TRUE, warning = TRUE, message = TRUE, include = TRUE) ## Code decoration opts_chunk$set(tidy = FALSE, comment = NA, highlight = TRUE) ``` ```{r knitcitation, include=FALSE} library(knitcitations) cleanbib() cite_options(citation_format = "pandoc") ``` \normalsize \clearpage # Introduction Pharmacogenomics holds much potential to aid in discovering drug response biomarkers and developing novel targeted therapies, leading to development of precision medicine and working towards the goal of personalized therapy. Several large experiments have been conducted, both to molecularly characterize drug dose response across many cell lines, and to examine the molecular response to drug administration. However, the experiments lack a standardization of protocols and annotations, hindering meta-analysis across several experiments. `PharmacoGx` was developed to address these challenges, by providing a unified framework for downloading and analyzing large pharmacogenomic datasets which are extensively curated to ensure maximum overlap and consistency. `PharmacoGx` is based on a level of abstraction from the raw experimental data, and allows bioinformaticians and biologists to work with data at the level of genes, drugs and cell lines. This provides a more intuitive interface and, in combination with unified curation, simplifies analyses between multiple datasets. To organize the data released by each experiment, we developed the *PharmacoSet* class. This class efficiently stores different types of data and facilitates interrogating the data by drug or cell line. The *PharmacoSet* is also versatile in its ability to deal with two distinct types of pharmacogenomic datasets. The first type, known as *sensitivity* datasets, are datasets where cell lines were profiled on the molecular level, and then tested for drug dose response. The second type of dataset is the *perturbation* dataset. These types of datasets profile a cell line on the molecular level before and after administration of a compound, to characterize the action of the compound on the molecular level. With the first release of *PharmacoGx* we have fully curated and created PharmacoSet objects for three publicly available large pharmacogenomic datasets. Two of these datasets are of the *sensitivity* type. These are the Genomics of Drug Sensitivity in Cancer Project (GDSC) [@garnett_systematic_2012] and the Cancer Cell Line Encyclopedia (CCLE) [@barretina_cancer_2012]. The third dataset is of the *perturbation* type, the Connectivity Map (CMAP) project [@lamb_connectivity_2006]. Furthermore, `PharmacoGx` provides a suite of parallized functions which facilitate drug response biomarker discovery, and molecular drug characterization. This vignette will provide two example analysis case studies. The first will be comparing gene expression and drug sensitivity measures across the CCLE and GDSC projects. The second case study will interrogate the CMAP database with a known signature of up and down regulated genes for HDAC inhibitors as published in [@glaser_gene_2003}. Using the Connectivity Score as defined in [@lamb_connectivity_2006], it will be seen that known HDAC inhibitors have a high numerical score and high significance. For the purpose of this vignette, an extremely minuscule subset of all three *PharmacoSet* objects are included with the package as example data. They are included for illustrative purposes only, and the results obtained with them will likely be meaningless. ## Installation and Settings `PharmacoGx` requires that several packages are installed. However, all dependencies are available from CRAN or Bioconductor. \vspace{5pt} \footnotesize ```{r install-pkg, eval=FALSE, results='hide'} if (!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager") BiocManager::install('PharmacoGx') ``` \normalsize Load `PharamacoGx` into your current workspace: \vspace{5pt} \footnotesize ```{r, eval=FALSE, results='hide'} library(PharmacoGx) ``` \normalsize ## Requirements `PharmacoGx` has been tested on Windows, Mac and Cent OS platforms. The packages uses the core R package `parallel` to preform parallel computations, and therefore if parallelization is desired, the dependencies for the parallel package must be met. # Downloading PharmacoSet Objects We have made the PharmacoSet objects of the curated datasets available for download using functions provided in the package. A table of available PharmacoSet objects can be obtained by using the `availablePSets()` function. Any of the PharmacoSets in the table can then be downloaded by calling *downloadPSet*, which saves the datasets into a directory of the users choice, and returns the data into the R session. \vspace{5pt} \footnotesize ```{r download-example, eval=FALSE} availablePSets() GDSC <- downloadPSet("GDSC") ``` \normalsize ## Downlading Drug Signatures The package also provides tools to compute drug perturbation and sensitivity signatures, as explained below. However, the computation of the perturbation signatures is very lengthy, so for users' convenience we have precomputed the signatures for our perturbation PharmacoSet objects and made them available for download using the function `downloadPertSig()`. # Case Study ## (In)Consistency across large pharmacogenomic studies Our first case study illustrates the functions for analysis of the *sensitivity* type of dataset. The case study will investigate the consistency between the GDSC and CCLE datasets, recreating the analysis similar to our *Inconsistency in Large Pharmacogenomic Studies* paper [@haibe-kains_inconsistency_2013]. In both CCLE and GDSC, the transcriptome of cells was profiled using an Affymatrix microarray chip. Cells were also tested for their response to increasing concentrations of various compounds, and form this the IC50 and AUC were computed. However, the cell and drugs names used between the two datasets were not consistent. Furthermore, two different microarray platforms were used. However, `PharmacoGx` allows us to overcome these differences to do a comparative study between these two datasets. GDSC was profiled using the hgu133a platform, while CCLE was profiled with the expanded hgu133plus2 platform. While in this case the hgu133a is almost a strict subset of hgu133plus2 platform, the expression information in `PharmacoSet` objects is summarized by Ensemble Gene Ids, allowing datasets with different platforms to be directly compared. The probe to gene mapping is done using the BrainArray customCDF for each platform [@sabatti_thresholding_2002]. To begin, you would load the datasets from disk or download them using the *downloadPSet* function above. In the following example, we use the toy datasets provided with the package to illustrate the process, but to recreate the full analysis the full PharmacoSets have to be downloaded. We want to investigate the consistency of the data between the two datasets. The common intersection between the datasets can then be found using *intersectPSet*. We create a summary of the gene expression and drug sensitivity measures for both datasets, so we are left with one gene expression profile and one sensitivity profile per cell line within each dataset. We can then compare the gene expression and sensitivity measures between the datasets using a standard correlation coefficient. \vspace{5pt} \footnotesize ```{r inconsistencies, results='hide', eval=TRUE, message = FALSE } library(Biobase) library(SummarizedExperiment) library(S4Vectors) library(PharmacoGx) data("GDSCsmall") data("CCLEsmall") commonGenes <- intersect(fNames(GDSCsmall, "rna"), fNames(CCLEsmall,"rna")) common <- intersectPSet(list('CCLE'=CCLEsmall, 'GDSC'=GDSCsmall), intersectOn=c("cell.lines", "drugs"), strictIntersect=TRUE) GDSC.auc <- summarizeSensitivityProfiles( common$GDSC, sensitivity.measure='auc_published', summary.stat="median", verbose=FALSE) CCLE.auc <- summarizeSensitivityProfiles( common$CCLE, sensitivity.measure='auc_published', summary.stat="median", verbose=FALSE) GDSC.ic50 <- summarizeSensitivityProfiles( common$GDSC, sensitivity.measure='ic50_published', summary.stat="median", verbose=FALSE) CCLE.ic50 <- summarizeSensitivityProfiles( common$CCLE, sensitivity.measure='ic50_published', summary.stat="median", verbose=FALSE) GDSCexpression <- summarizeMolecularProfiles(common$GDSC, cellNames(common$GDSC), mDataType="rna", features=commonGenes, verbose=FALSE) CCLEexpression <- summarizeMolecularProfiles(common$CCLE, cellNames(common$CCLE), mDataType="rna", features=commonGenes, verbose=FALSE) gg <- fNames(common[[1]], 'rna') cc <- cellNames(common[[1]]) ge.cor <- sapply(cc, function (x, d1, d2) { return (stats::cor(d1[ , x], d2[ , x], method="spearman", use="pairwise.complete.obs")) ## TO DO:: Ensure all assays are name so we can call by name instead of index }, d1=assay(GDSCexpression, 1), d2=assay(CCLEexpression, 1)) ic50.cor <- sapply(cc, function (x, d1, d2) { return (stats::cor(d1[, x], d2[ , x], method="spearman", use="pairwise.complete.obs")) }, d1=GDSC.ic50, d2=CCLE.ic50) auc.cor <- sapply(cc, function (x, d1, d2) { return (stats::cor(d1[ , x], d2[ , x], method="spearman", use="pairwise.complete.obs")) }, d1=GDSC.auc, d2=CCLE.auc) w1 <- stats::wilcox.test(x=ge.cor, y=auc.cor, conf.int=TRUE, exact=FALSE) w2 <- stats::wilcox.test(x=ge.cor, y=ic50.cor, conf.int=TRUE, exact=FALSE) yylim <- c(-1, 1) ss <- sprintf("GE vs. AUC = %.1E\nGE vs. IC50 = %.1E", w1$p.value, w2$p.value) ``` ```{r fig1 } boxplot(list("GE"=ge.cor, "AUC"=auc.cor, "IC50"=ic50.cor), main="Concordance between cell lines", ylab=expression(R[s]), sub=ss, ylim=yylim, col="lightgrey", pch=20, border="black") ``` \normalsize ## Query the Connectivity Map The second case study illustrates the analysis of a perturbation type datasets, where the changes in cellular molecular profiles are compared before and after administering a compound to the cell line. Of these datasets, we have currently curated and made available for download the Connectivity Map (CMAP) dataset [@lamb_connectivity_2006]. For this case study, we will recreate an analysis from the paper by Lamb et al., in which a known signature for HDAC inhibitors [@glaser_gene_2003] is used to recover drugs in the CMAP dataset that are also known HDAC inhibitors. For this example, the package includes this signature, already mapped to the gene level, and it can be loaded by calling `data(HDAC\_genes)`. Once again, we load the dataset, downloading it if needed using `downloadPSet` . We then recreate drug signatures for each drug using the function `drugPerturbationSig` to preform statistical modelling of the transcriptomic response to the application of each drug. We then compare the observed up-regulated and down-regulated genes to a the known HDAC signature, using the GSEA connectivity score to determine the correlation between the two signatures. \vspace{5pt} \footnotesize ```{r, eval=TRUE, results='asis'} library(PharmacoGx) library(pander) data(CMAPsmall) drug.perturbation <- drugPerturbationSig(CMAPsmall, mDataType="rna", verbose=FALSE) data(HDAC_genes) res <- apply(drug.perturbation[,,c("tstat", "fdr")], 2, function(x, HDAC){ return(connectivityScore(x=x, y=HDAC[,2,drop=FALSE], method="fgsea", nperm=100)) }, HDAC=HDAC_genes) rownames(res) <- c("Connectivity", "P Value") res <- t(res) res <- res[order(res[,1], decreasing=TRUE),] pander::pandoc.table(res, caption='Connectivity Score results for HDAC inhibitor gene signature.', style = 'rmarkdown') ``` \normalsize As we can see, the known HDAC inhibitor Varinostat has a very strong connectivity score, as well as a very high significance as determined by permutation testing, in comparison to the other drugs, which score poorly. This example serves as a validation of the method, and demonstrates the ease with which drug perturbation analysis can be done using `PharmacoGx`. While in this case we were matching a drug signature with a drug class signature, this method can also be used in the discovery of drugs that are anti-correlated with known disease signatures, to look for potential new treatments and drug repurposing. # Estimating Drug Sensitivity Measures *PharmacoGx* includes functions to calculate estimated AUC (Area Under drug response Curve) and IC50 values from drugs dose response experiments that measure cell viability after applications of varying concentrations of drug. Additionally, these measures are recomputed for every *sensitivity* `PharmacoSet` we create and included alongside any measures published with the original data. The AUC measures originally published are labelled as *auc\_published*, while the recomputed measures are labelled as *auc\_recomputed*, and likewise for the IC50. While the *PharmacoSets* already contain the recomputed data, the AUC and IC50 can be calculated for arbitrary data using the *computeIC50* and *computeAUC* functions. The AUC can be calculated using either the area under the curve defined by the actual points recorded, or the area under the curve fitted to the data. ## Curve Fitting While AUC can be numerically calculated without curve fitting, to estimate the IC50 a drug dose response curve must be fit to the data.The dose-response curves are fitted to the equation $$ y = E_{\infty} + \frac{ 1 - E_{\infty} }{1+(\frac{x}{IC50})^{HS}} $$ where the maximum viability is normalized to be $y = y(0) = 1$, $E_{\infty}$ denotes the minimum possible viability achieved by administering any amount of the drug, $IC50$ is the concentration at which viability is reduced to half of the viability observed in the presence of an arbitrarily large concentration of drug, and $HS$ is a parameter describing the cooperativity of binding. $HS < 1$ denotes negative binding cooperativity, $HS = 1$ denotes noncooperative binding, and $HS > 1$ denotes positive binding cooperativity. The parameters of the curves are fitted using the least squares optimization framework. The fitting of these curves to arbitrary points is implemented by the *logLogisticRegression* function. ## Plotting Drug-Dose Response Data Drug-Dose response data included in the PharmacoSet objects can be conviniently plotted using the `drugDoseResponseCurve` function. Given a list of PharmacoSets, a drug name and a cell name, it will plot the drug dose response curves for the given cell-drug combination in each dataset, allowing direct comparisons of data between datasets. # Gene-Drug Association Modelling `PharmacoGx` provides methods to model the association between drugs and molecular data such as transcriptomics, genomics and proteomics. *Sensitivity* studies allow the discovery of molecular features that improve or inhibit the sensitivity of cell lines to various compounds, by looking at the association between the expression of the feature and the response towards each compound. This allows the selection of drugs to be tailored to each specific patient based on the expressed known sensitivity biomarkers. The function *drugSensitivitySig* models these associations. *Perturbation* studies on the other hand look at the molecular profiles of a cell before and after application of a drug, and therefore can characterize the action of a drug on the molecular level. It is hypothesized that drugs which act to down-regulate expression of known disease biomarkers would be effective in reversing the cell from a diseased to healthy state. The function *drugPerturbationSig* models the molecular profiles of drugs tested in a *perturbation* dataset. ## Sensitivity Modelling The association between molecular features and response to a given drug is modelled using a linear regression model adjusted for tissue source: $$ Y = \beta_{0} + \beta_{i}G_i + \beta_{t}T + \beta_{b}B $$ where $Y$ denotes the drug sensitivity variable, $G_i$, $T$ and $B$ denote the expression of gene i, the tissue source and the experimental batch respectively, and $\beta$s are the regression coefficients. The strength of gene-drug association is quantified by $\beta_i$, above and beyond the relationship between drug sensitivity and tissue source. The variables Y and G are scaled (standard deviation equals to 1) to estimate standardized coefficients from the linear model. Significance of the gene-drug association is estimated by the statistical significance of $\beta_i$ (two-sided t test). P-values are then corrected for multiple testing using the false discovery rate (FDR) approach. As an example of the efficacy of the modelling approach, we can model the significance of the association between two drugs and their known biomarkers in CCLE. We examine the association between drug *17-AAG* and gene *NQO1*, as well as drug *PD-0325901* and gene *BRAF*: \vspace{12pt} \footnotesize ```{r biomarkers, eval=TRUE, results='asis'} library(pander) data(CCLEsmall) features <- fNames(CCLEsmall, "rna")[ which(featureInfo(CCLEsmall, "rna")$Symbol == "NQO1")] sig.rna <- drugSensitivitySig(pSet=CCLEsmall, mDataType="rna", drugs=c("17-AAG"), features=features, sensitivity.measure="auc_published", molecular.summary.stat="median", sensitivity.summary.stat="median", verbose=FALSE) sig.mut <- drugSensitivitySig(pSet=CCLEsmall, mDataType="mutation", drugs=c("PD-0325901"), features="BRAF", sensitivity.measure="auc_published", molecular.summary.stat="and", sensitivity.summary.stat="median", verbose=FALSE) sig <- rbind(sig.rna, sig.mut) rownames(sig) <- c("17-AAG + NQO1","PD-0325901 + BRAF") colnames(sig) <- dimnames(sig.mut)[[3]] pander::pandoc.table(t(sig), style = "rmarkdown", caption='P Value of Gene-Drug Association' ) ``` ## Perturbation Modelling The molecular response profile of a given drug is modelled as a linear regression model adjusted experimental batch effects, cell specific differences, and duration of experiment to isolate the effect of the concentration of the drug applied: $$ G = \beta_{0} + \beta_{i}C_i + \beta_{t}T + \beta_{d}D + \beta_{b}B $$ where $G$ denotes the molecular feature expression (gene), $C_i$ denotes the concentration of the compound applied, $T$ the cell line identity, $D$ denotes the duration of the experiment, $B$ denotes the experimental batch, and $\beta$s are the regression coefficients. The strength of feature response is quantified by $\beta_i$. Unlike the sensitivity signatures, the $G$ and $C$ variables are unscaled. Significance of the gene-drug association is estimated by the statistical significance of $\beta_i$, calculated using an F-test on the improvement in fit after the inclusion of the term. P-values are then corrected for multiple testing using the false discovery rate (FDR) approach. # Connectivity Scoring The package also provides two methods for quantifying the similarity between two molecular signatures of the form returned by *drugPerturbationSig* and *drugSensitivitySig*, or a set of up and down regulated genes as part of a disease signature. The two methods are the *GSEA* method as introduced by Subramanian et at [@subramanian_gene_2005], and *GWC*, a method based on a weighted Spearman correlation coefficient. Both methods are implemented by the *connectivityScore* function. ## GSEA The *GSEA* method is implemented to compare a signature returned by *drugPerturbationSig* with a known set of up and down regulated genes in a disease state. For the disease signature, the function expects a vector of features with a value, either binary (1, -1) or continuous, where the sign signifies if the gene is up or down regulated in the disease. The names of the vector are expected to be the feature names, matching the feature names used in the drug signature. The function then returns a GSEA score measuring the concordance of the disease signature to the drug signature, as well as an estimated P-Value for the significance of the connectivity determined by permutation testing. ## GWC The GWC method (Genome Wide Correlation) is implemented to compare two signatures of the same length, such as two drug signatures returned by *drugPerturbationSig*. The score is a Spearman correlation weighted by the normalized negative logarithm significance of each value. The normalization is done so that datasets of different size can be compared without concern for lower p-values in one dataset due to larger sample sizes. More precisely, take $X_i$ and $Y_i$ to be the ranks of the first and second set of data respectively, and $Px_i$, $Py_i$ to be the p-values of those observations. The weight for each pair of observations is: $$ Wx_i = \frac{-\log_{10}(Px_i)}{\sum_{i}-\log_{10}(Px_i)} $$ $$ Wy_i = \frac{-\log_{10}(Py_i)}{\sum_{i}-\log_{10}(Py_i)} $$ $$ W_i = Wx_i + Wy_i $$ If we further define the weighted mean as follows: $$ m(X;W) = \frac{\sum_i W_i X_i}{\sum_i{W_i}} $$ Then the weighted correlation is given by: $$ cor(X,Y,W) = \frac{\frac{\sum_i W_i (X_i - m(X;W))(Y_i - m(Y,W))}{\sum_i W_i}}{\sqrt{(\frac{\sum_i W_i (X_i - m(X;W))^2}{\sum_i W_i}) (\frac{\sum_i W_i (Y_i - m(Y;W))^2}{\sum_i W_i})}} $$ This correlation therefore takes into account not only the ranking of each feature in a signature, but also of the significance of each rank. # Acknowledgements The authors of the package would like to thank the investigators of the Genomics of Drug Sensitivity in Cancer Project, the Cancer Cell Line Encyclopedia and the Connectivity Map Project who have made their invaluable data available to the scientific community. We would also like to thank Mark Freeman for contributing the code for MLE fitting drug-dose response curves towards this package. We are indebted to Nehme El-Hachem, Donald Wang and Adrian She for their contributions towards the accurate curation of the datasets. Finally, it is important to acknowledge all the members of the Benjamin Haibe-Kains lab for their contribution towards testing and feedback during the design of the package. # Session Info \vspace{5pt} \footnotesize ```{r sessioninfo, eval = TRUE} # set eval = FALSE if you don't want this info (useful for reproducibility) to appear sessionInfo() ``` \normalsize # References