Abstract
Anticancer drug responses can be varied for individual patients. This difference is mainly caused by genetic reasons, like mutations and RNA expression. Thus, these genetic features are often used to construct classification models to predict the drug response. This research focuses on the feature selection issue for the classification models. Because of the vast dimensions of the feature space for predicting drug response, the autoencoder network was first built, and a subset of inputs with the important contribution was selected. Then by using the Boruta algorithm, a further small set of features was determined for the random forest, which was used to predict drug response. Two datasets, GDSC and CCLE, were used to illustrate the efficiency of the proposed method.
Keywords: anticancer drug response, autoencoder, classification model, feature selection, random forest
1. Introduction
The prediction of drug responses for individual patients is an essential issue in the research of precision medicine. It is known that the drug response for various patients can be different (Wilkinson, 2005). Thus, there are different therapeutic effects when using the same anticancer drug for a cohort of patients (Dong et al., 2015). It has been suggested that the patients with similar response to an anticancer drug can have similar genetic features, like gene mutations and expressions (Wang et al., 2017). These features can be used as the biomarkers to predict the drug response (La Thangue and Kerr, 2011).
Because the clinical trials are of high time and economic costs, the researchers prefer to use the cell lines obtained from the cancer patients for investigating drug responses. These investigations lead to several drug response databases, like Genomics of Drug Sensitivity in Cancer (GDSC) (Yang et al., 2012) and Cancer Cell Line Encyclopedia (CCLE) (Barretina et al., 2012). By using these databases, constructing models for the prediction of drug response becomes feasible. Primarily, researchers always use IC50 (Barretina et al., 2012; Garnett et al., 2012), which indicates the concentration required for 50% inhibition in vitro, to measure the sensitivity of drug response. Taking IC50 as the dependent variable, linear regression models, including ridge regression, lasso, and elastic net, were developed to predict drug response (Barretina et al., 2012; Garnett et al., 2012; Basu et al., 2013; Iorio et al., 2016). Further complex models, like support vector regression, artificial neural network, and random forest (RF), were also constructed for this purpose (Riddick et al., 2010; Menden et al., 2013; Ammad-Ud-Din et al., 2014; Ammad-ud din et al., 2016; Costello et al., 2014; Ospina et al., 2014; Cichonska et al., 2015; Dong et al., 2015; Zhang et al., 2015). Neto et al. (2014) proposed the STREAM algorithm that combined a Bayesian inference strategy with ridge regression for the prediction of drug response. Besides the regressions, several network-based models were also proposed (Wang et al., 2014; Fey et al., 2015; Zhang et al., 2015). Model ensembles have also been considered by some works (Wan and Pal, 2014; Cortés-Ciriano et al., 2015). Meanwhile, deciding whether an individual patient is sensitive or not to the anticancer drugs is meaningful for treatment. By setting a proper threshold value for IC50, drug response can be divided into two categories: sensitivity and non-sensitivity. In this case, classification models can be fitted for predicting drug response. To this end, the recommender system, naive Bayes classifier and support vector machine have been used (Barretina et al., 2012; Dong et al., 2015; Suphavilai et al., 2018).
Nilsson et al. (2007) indicated that the appropriate selection of small feature set gives the best possible classification results. Thus, selecting an appropriate feature set from a large number of genetic feature candidates is a crucial issue for classification models for predicting drug response. In this paper, we developed a drug response prediction model, called AutoBorutaRF, by using autoencoder (Liou et al., 2008) and Boruta algorithm (Kursa et al., 2010) for feature selection and RF for classification. We first constructed the autoencoder network (Liou et al., 2008), which is a type of artificial neural network, for the reduction of genetic features. By using the Gedeon method (Gedeon, 1997), we initially reduced the total number of features. We further selected a smaller feature set feasible for RF by using the Boruta algorithm. By applying AutoBorutaRF to GDSC and CCLE, we proved that our proposed method is of excellent prediction accuracy. We further analyzed the biomarkers obtained from the lung cell lines in GDSC by the proposed feature selection method.
2. Materials and Methods
2.1. Datasets and Preprocessing
In this research, we used two datasets, including GDSC (Garnett et al., 2012) and CCLE (Barretina et al., 2012). The datasets were downloaded by using R package PharmacoGx (Smirnov et al., 2015). We used the sensitivity measure IC50 (Barretina et al., 2012; Garnett et al., 2012) as the response variable (denoted by yrs, c) for cell line c. We used three types of genetic features as the explanatory variables, including the gene expression (denoted by xrna, g), the single-nucleotide mutation (denoted by xsnv, g), and the copy number alternation (denoted by xcna, g) for gene g. Note that the elements in xrna, g and xcna, g are real-valued; the elements in xsnv, g are binary-valued, i.e., “1” for mutation and “0” for wild type. In the two datasets, some cell lines missed the values of the response variable, the single-nucleotide mutation features, and the copy number alteration features. There was no missing value in the gene expression features. We first removed the features with the cell lines missing values more than 50%. Then, we removed the cell lines with more than 50% features missing values from the datasets. For the remaining cell lines with missing values, we used a weight mean method to compensate the missing values as follows:
Let denote the missing value for the cell line c in the response variable or the genetic feature g. Let xrna, c denote the vector of gene expression features for the cell line c.
Assume the cell line k has no missing data for the features involved in . The diversity between the cell lines c and k is obtained by . Search K cell lines nearest to g with respect to d(c, i).
- If g is the response variable or the copy number alternation feature, is compensated by
- If g is the single-nucleotide mutation feature, zc, g is compensated by
where 1() = 1 for the true statement in the parenthesis and 1() = 0 for the negative statement in the parenthesis.
We set K = 10 for the preprocessing of GDSC and CCLE datasets.
2.2. Label Assignment for Cell Lines According to IC50
This research is to construct classification models for predicting how the cell lines respond to the drugs under study. The drug responses can be divided into two categories: “sensitivity" and “non-sensitivity” (Liu et al., 2016). So far, several works have used various threshold values of IC50 to classify the drug responses (Brubaker et al., 2014; Li et al., 2015). Brubaker et al. (2014) used a hard threshold 0.1 to label sensitivity for IC50< 0.1 and to label non-sensitivity (i.e., resistance in this work) for IC50≥ 0.1. However, by investigating the histograms of IC50, we found that the statistics of drugs are various. It can be supposed that the decision of labels should be driven by the data of individual drugs. To this end, we adopted the strategy introduced in Li et al. (2015), which used the median of the observed IC50 values as a data-driven threshold. We labeled a cell line as “sensitivity” if its IC50 is smaller than the median overall the cell lines for an individual drug. We labeled a cell line “non-sensitivity” if its IC50 is equal to or larger than the median overall the cell lines for an individual drug.
2.3. Classification Model and Feature Selection for Predicting Drug Response
2.3.1. Classification Model
The drug response data are often of imbalanced classifications. Because RF is outstanding for the imbalanced classification problem, we used it as the classification model. In RF, we used classification and regression trees (CART) algorithm as the basic classifier. RF randomly generalizes 1,000 CARTs. Each CART is trained by using ⌈0.632 × Nsample⌉ bootstrapping samples, where Nsample is a total of cell lines. The ultimate results were determined through voting with the prediction results of all CARTs.
2.3.2. Feature Selection With the Autoencoder and Boruta Algorithm
Feature selection is crucial for improving the prediction performance of the classification models. We used the Boruta algorithm, which aims to the feature selection problem for RF (Kursa et al., 2010) (Figure 1). The considerable cardinality of the feature candidate set leads to the curse of dimensionality for the Boruta algorithm. Thus, we first used the autoencoder network, to roughly screen out the features to a proper dimension. The detailed two-stepwise feature selection procedure is described as follows:
-
Step 1: We trained two single-hidden-layer autoencoder networks, with hyperbolic tangent being the activation functions, for screening out the features of the gene expression and the features of the copy number alteration, respectively. Different from the straight application of the hidden layers of the autoencoder, we used Gedeon method (Gedeon, 1997) to calculate the proportional contributions to select the significant genes. The contribution of the ith input (gene) to the jth output (gene) is calculated asHere K denotes the total number of the neurons of the hidden layer. Pik is the contribution of the ith input to the kth neuron of the hidden layer calculated bywith G being the total number of the inputs and s being the weights linking the corresponding neuron couples. Pkj is the contribution of the kth neuron of the hidden layer to the jth output, whose calculation is similar to that of Pik. The total contribution of the ith input is calculated by
We ranked the inputs of the autoencoder in the descending order with respect to qi and removed the last 50% features. We also removed the features, whose means of correlation coefficients with other features were more than 0.95.
-
Step 2: From the features obtained by Step 2, the Boruta algorithm was used to select features for RF as follows:
2-1. Extend the dataset by adding copies of all the features obtained by Step 1.
2-2. Shuffle the values of the copied features, called shadow features, to remove their correlations with the response variable, i.e., IC50.
2-3. The shadow features are combined with the original ones.
2-4. Run a random forest classifier on the combined dataset and perform a variable importance measure, in which the mean decrease accuracy (MDA) is used.
2-5. Z score is calculated by dividing MDA with the standard deviation of accuracy loss.
2-6. Find the maximum Z score among shadow attributes (MZSA).
2-7. The features with importance significantly lower than MZSA are permanently removed from the dataset. The features with importance significantly higher than MZSA are retained as important features.
2-8. The shadow features are removed from the dataset.
2-9. Repeat the above steps until for the prefixed iterations (200 was prefixed in our study), or all the retained features are important features.
2.4. EasyEnsemble for Imbalanced Datasets
The total number of cell lines sensitive to drugs is much smaller than that of cell lines non-sensitive to drugs. Thus, the datasets in this research are the class imbalance. Let and denote the sample set of majority class (non-sensitivity) and that of minority class (sensitivity), respectively. The imbalance ratio is used to measure the class imbalance, with | · | being the cardinality of a set. For the various drugs under study, the values of IR are different. In this research, for the drugs with IR≤ 2, the feature selection and classification method were directly used; for the drugs with IR >2, we used EasyEnsemble (Liu et al., 2009) resampling strategy to deal with the imbalance class problem. The core procedure of EasyEnsemble used here is described as follows:
Equally divide into T subsets , with T = ⌊IR⌋. Such that .
The RF classifier Fi(x) is constructed on each training subsets for i = 1, 2, ⋯ , T.
Take the majority vote according to the T predictions of {Fi(x)|i = 1, 2, ⋯ , T}.
2.5. Evaluation Criteria
We used the following metrics to evaluate the performance of the classification models:
Accuracy:
Recall:
Specificity:
F1 score:
Matthews correlation coefficient:
where
TP (true positive) is the number of cell lines labeled with sensitivity and predicted as sensitivity;
FP (false positive) is the number of cell lines labeled with resistance and predicted as sensitivity;
FN (false negative) is the number of cell lines labeled with sensitivity and predicted as non-sensivity;
TN (true negative) is the number of cell lines labeled with resistance and predicted as non-sensivity.
Besides the metrics above, AUC was also obtained.
Because the total number of samples was much smaller than that of the features, the above evaluation criteria were obtained by using 10-fold cross validation (CV). The dataset was randomly partitioned into 10 equal sized subsets. Of the ten subsets, a single subset was used as the test set to calculate the evaluation criteria of the models trained by the remaining nine subsets. The above process was then repeated 10 times, and the mean of the evaluation criteria obtained in the 10 times was used as the final criteria. In this way, the test datasets can be ensured to be independent of the training datasets.
3. Results
3.1. Data Description
There are missing data in both datasets. These missing data were compensated by using the weighted mean method described in the section Materials and Methods. The total numbers of samples for each variable are listed in Table 1.
Table 1.
Dataset | State | Drugs | Cell lines | xrna | xsnv | xcna |
---|---|---|---|---|---|---|
GDSC | Raw | 139 | 1,124 | 11,833 (789) | 70 (778) | 24,960 (936) |
Preprocessed | 98 | 555 | 11,712 (555) | 54 (555) | 24,959 (555) | |
CCLE | Raw | 24 | 1,061 | 20,049 (1,028) | 1,667 (1,044) | 24,960 (742) |
Preprocessed | 24 | 363 | 19,389 (363) | 1,667 (363) | 24,960 (363) |
The number in the parenthesis means a total of cell lines corresponding to the features.
According to their histograms, the most of distributions of drug responses of cell lines in two datasets can be approximated by the Gauss distribution (Figure 2). t-hypothesis test showed that the significance of two groups divided by median of IC50 in GDSC is of p-values from 4.27 × 10−160 to 6.89 × 10−46; such significance in CCLE is of p-value from 7.14 × 10−95 to 4.05 × 10−4.
3.2. Prediction Performance of AutoBorutaRF
To illustrate the effectiveness of our AutoBorutaRF method, we demonstrated its prediction performance on GDSC and CCLE datasets. Meanwhile, we compared it with other four algorithms, including naive Bayes classifier (Barretina et al., 2012), SVM-RFE (Dong et al., 2015), FSelector for k-nearest-neighbors (KNN) algorithm (Soufan et al., 2015), and AutoHidden. The naive Bayes method first selected the top 30 features using either non-parametric Wilcoxon Sum Rank Test (for the gene expression features) or Fisher Exact Test (for the gene mutations). Then, the remaining significant features (p < 0.25) were clustered using a message-passing algorithm for each type of features. Then, they combined these two-part features and used a naive Bayes classifier for the drug response classification prediction. SVM-RFE is a wrapper method using a recursive feature selection and SVM classifier. The parameters of feature number, gamma and cost were set to be 10, 0.5, and 10, which were the optimal parameters selected by SVM-RFE. FSelector selected features using FSelector based on the information entropy and applied to the KNN algorithm. In AutoHidden, we directly use the hidden layer of the autoencoder constructed in our AutoBorutaRF, as the features.
The overall prediction performance of the five methods for the two datasets is illustrated in Tables 2, 3 and Figure 3. All the metrics in the figure were obtained by using 10-fold CV. Figure 3 showed that our method was of the best performance with respect to AUC, accuracy, recall, specificity, F1 score, and Matthews correlation coefficient.
Table 2.
Method | AUC | ACC | REC | SPC | F_1 | MCC |
---|---|---|---|---|---|---|
AutoBorutaRF | 0.7116 | 0.6534 | 0.6527 | 0.6542 | 0.6501 | 0.3109 |
Naive Bayes | 0.6792 | 0.6109 | 0.4242 | 0.7969 | 0.4947 | 0.2475 |
SVM-RFE | 0.5159 | 0.5945 | 0.5797 | 0.6092 | 0.5855 | 0.1915 |
FSelector | 0.6477 | 0.6061 | 0.6171 | 0.5952 | 0.6068 | 0.2155 |
AutoHidden | 0.6095 | 0.5780 | 0.5576 | 0.5984 | 0.5651 | 0.1584 |
The bold number indicates the best result.
Table 3.
Method | AUC | ACC | REC | SPC | F_1 | MCC |
---|---|---|---|---|---|---|
AutoBorutaRF | 0.8210 | 0.7638 | 0.6560 | 0.8137 | 0.6248 | 0.4520 |
Naive Bayes | 0.7793 | 0.6838 | 0.3325 | 0.9194 | 0.3662 | 0.2759 |
SVM-RFE | 0.5516 | 0.7287 | 0.4286 | 0.8129 | 0.5239 | 0.2961 |
FSelector | 0.7372 | 0.7430 | 0.5061 | 0.8058 | 0.5639 | 0.3535 |
AutoHidden | 0.7063 | 0.6970 | 0.1338 | 0.9501 | 0.3567 | 0.2198 |
The bold number indicates the best result.
Among the 98 drugs in GDSC, ABT-888 presented the worst prediction with AUC being 0.5935, and the best prediction is for RDEA119 with AUC being 0.8282. Meanwhile, RDEA119, PD-0325901, 17-AAG, and Vorinostat were the only four drugs with AUC >0.8. However, there were 59 drugs, whose AUCs were higher than 0.7. Among the 24 drugs in CCLE, the worst prediction is for AEW541 with AUC being 0.6509. The best three predictions are for Nutlin-3, LBW242, and AZD6244, with AUC being 0.9633, 0.9300, and 0.9079, respectively. The AUCs of Irinotecan, Panobinostat, PD-0332991, PD-0325901, PHA-665752, PLX4720, and Topotecan are higher than 0.85. The receiver operating characteristic (ROC) curves are listed in Supplementary File 1.
3.3. Identified Biomarkers Are Associated With Cancer and Drug Target Pathway
We used 95 lung cell lines in the GDSC database to illustrate the biological significance of the identified biomarkers. Figure 4A shows the prediction performance of AutoBorutaRF for the lung cell lines. AutoBorutaRF showed satisfying prediction performance for predicting the drug responses for the lung cell lines. We used the non-parametric Wilcoxon sum rank test for the genetic features of gene expression and copy number alternation and a Fisher exact test for the genetic feature of single-nucleotide mutation, to test the significant difference of the genetic features between the sensitive and non-sensitive populations. Among all the identified 1,087 features (Supplementary File 2), a total of features with p < 0.05 was 1029, shown by Figure 4B. These results showed that most of the identified features were of significantly different genetic profiles between two classes (Supplementary File 3).
We further use PLX4720 and BIBW2992 as two examples to illustrate the biological significance of the features selected for the lung cell lines. Prediction metrics of these two drugs are shown in Figure 5. PLX4720 is the inhibitor for B-raf and targets at MAPK signaling pathway (Michaelis et al., 2014). The selected significant features for PLX4720 were CCL19, CCRL2, CST7, GPR143, HDAC5, and IDO1. CCRL2 inhibits p38 MAPK phosphorylation and up-regulates the expression of E-cadherin (Wang et al., 2015). Besides, CCR7, CST7, GPR143, HDAC5, and IDO1 are also related to lung cancer or the MAPK pathway (Liu et al., 2014, 2018; Li and Seto, 2016; Matthews et al., 2016;Rose et al., 2016).
BIBW2992 inhibits ERBB2 and EGFR and targets at EGFR signaling pathway (Iorio et al., 2016) and has been widely investigated for cancers, like lung cancer and melanoma (Rinehart et al., 2004; Nehs et al., 2010; Varmeh et al., 2016). The selected significant features were FYN, KCNH2, REST, CDH12, LRRC8E, SCG2, PHF8, PCSK1, ANXA2, and MIR6730. FYN was an authentic Effector of oncogenic EGFR signaling, by limiting EGFR tumor cell motility (Lu et al., 2009). CDH12 plays an important role in non-small-cell lung cancer(NSCLC) geneses, resulting from that the mutations of CDH12 and other PRAME family members were equally distributed among tumors of different grades and stages (Bankovic et al., 2010). SCG2 is in connection with the alteration of miRNA profiles in A549 human non-small-cell lung cancer cells (Shin et al., 2009). KCNH2, REST, LRRC8E, PHF8, PCSK1, ANXA2, and MIR6730 have been also proved to be related to signaling pathway EGFR and lung cancer (Bonilla and Geha, 2006; de Castro et al., 2006; Kreisler et al., 2010; Wang et al., 2012; Demidyuk et al., 2013; Shen et al., 2014; D́ıaz-Rodŕıguez et al., 2018). The function descriptions and interaction networks of the identified features for PLX4720 and BIBW2992 are included in Supplementary File 4.
Discussion
The prediction of anticancer drug response is crucial for many applications, like the preclinical setting and clinical trial design. The prediction models for drug response include regression models and classification models. This research developed AutoBorutaRF for predicting the drug response for a two-fold aim: achieving proper features for RF and investigating biologically significant biomarkers for the explaining drug response. Because the genetic feature candidates are a vast set, we cannot directly apply the well developed Boruta algorithm for feature selection. We first drastically reduced the dimension by constructing the autoencoder network. Different from the typical application of a hidden layer of the autoencoder, we extracted the inputs with large contributions evaluated by the Gedeon method.
Considering AUC = 0.7 as a pass mark, 22 of 24 drugs in CCLE were of qualified prediction performance; 59 of 98 drugs in GDSC were of qualified prediction performance. Further analysis should be conducted to investigate the reasons leading to the prediction difference between two datasets.
We further investigated the biological significance. We proved that most of the identified genetic features between the sensitive and non-sensitive cell lines were significantly different. By using PLX4720 and BIBW2992 as two examples, we illustrated that many genes identified by AutoBorutaRF were reported to have close relationship with tumorigenesis or cancer progression. The detailed function explanations and interaction networks of the selected features can be referred to Supplementary File 4. Thus, AutoBorutaRF can be considered to be a capable machine learning method for determining the biomarkers for predicting the drug response for the preclinical and clinical purposes.
Note that our proposed method used no prior information to obtain the optimal feature set in the sense of prediction performance. In future research, the pre-determined information, like pathway knowledge, and the prior distribution describing the uncertainties of anticancer drugs can be considered to be embedded in our method.
Data Availability
The source code and datasets for this study can be downloaded from https://github.com/bioinformatics-xu/AutoBorutaRF.
Author Contributions
XX and PQ processed the data, designed the algorithm, and the programming codes, and wrote the manuscript. YW supported result interpretation and manuscript writing. JW and HG supervised the project and contributed to writing the manuscript.
Conflict of Interest Statement
The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.
Acknowledgments
We thank Pi Xu Liu and Hailing Cheng for useful discussion.
Footnotes
Funding. This work was supported by the National Natural Science Foundation of China (61633006, 61502074, 81602309, 81422038, 81872247, 91540110, and 31471235).
Supplementary Material
The Supplementary Material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fgene.2019.00233/full#supplementary-material
References
- Ammad-ud din M., Khan S. A., Malani D., Murumägi A., Kallioniemi O., Aittokallio T., et al. (2016). Drug response prediction by inferring pathway-response associations with kernelized bayesian matrix factorization. Bioinformatics 32, i455–i463. 10.1093/bioinformatics/btw433 [DOI] [PubMed] [Google Scholar]
- Ammad-Ud-Din M., Georgii E., Gonen M., Laitinen T., Kallioniemi O., Wennerberg K., et al. (2014). Integrative and personalized QSAR analysis in cancer by kernelized bayesian matrix factorization. J. Chem. Inform. Model. 54, 2347–2359. 10.1021/ci500152b [DOI] [PubMed] [Google Scholar]
- Bankovic J., Stojsic J., Jovanovic D., Andjelkovic T., Milinkovic V., Ruzdijic S., et al. (2010). Identification of genes associated with non-small-cell lung cancer promotion and progression. Lung Cancer 67, 151–159. 10.1016/j.lungcan.2009.04.010 [DOI] [PubMed] [Google Scholar]
- Barretina J., Caponigro G., Stransky N., Venkatesan K., Margolin A. A., Kim S., et al. (2012). The cancer cell line encyclopedia enables predictive modelling of anticancer drug sensitivity. Nature 483, 603–607. 10.1038/nature11003 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Basu A., Bodycombe N. E., Cheah J. H., Price E. V., Liu K., Schaefer G. I., et al. (2013). An interactive resource to identify cancer genetic and lineage dependencies targeted by small molecules. Cell 154, 1151–1161. 10.1016/j.cell.2013.08.003 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Bonilla F. A., Geha R. S. (2006). 2. update on primary immunodeficiency diseases. J. Allergy Clin. Immunol. 117, S435–S441. 10.1016/j.jaci.2005.09.051 [DOI] [PubMed] [Google Scholar]
- Brubaker D., Difeo A., Chen Y., Pearl T., Zhai K., Bebek G., et al. (2014). Drug intervention response predictions with paradigm (dirpp) identifies drug resistant cancer cell lines and pathway mechanisms of resistance, in Biocomputing 2014, eds Altman R. B., Dunker A. K., Hunter L., Murray T. A., Klein T. E., Ritchie M. D. (Hawaii, HI: World Scientific; ), 125–135. [PMC free article] [PubMed] [Google Scholar]
- Cichonska A., Rousu J., Aittokallio T. (2015). Identification of drug candidates and repurposing opportunities through compound–target interaction networks. Expert Opin. Drug Discov. 10, 1333–1345. 10.1517/17460441.2015.1096926 [DOI] [PubMed] [Google Scholar]
- Cortés-Ciriano I., van Westen G. J., Bouvier G., Nilges M., Overington J. P., Bender A., et al. (2015). Improved large-scale prediction of growth inhibition patterns using the NCI60 cancer cell line panel. Bioinformatics 32, 85–95. 10.1093/bioinformatics/btv529 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Costello J. C., Heiser L. M., Georgii E., Gönen M., Menden M. P., Wang N. J., et al. (2014). A community effort to assess and improve drug sensitivity prediction algorithms. Nat. Biotechnol. 32, 1202–1212. 10.1038/nbt.2877 [DOI] [PMC free article] [PubMed] [Google Scholar]
- de Castro M. P., Aránega A., Franco D. (2006). Protein distribution of Kcnq1, Kcnh2, and Kcne3 potassium channel subunits during mouse embryonic development. Anat. Rec. Part A 288, 304–315. 10.1002/ar.a.20312 [DOI] [PubMed] [Google Scholar]
- Demidyuk I. V., Shubin A. V., Gasanov E. V., Kurinov A. M., Demkin V. V., Vinogradova T. V., et al. (2013). Alterations in gene expression of proprotein convertases in human lung cancer have a limited number of scenarios. PLoS ONE 8:e55752. 10.1371/journal.pone.0055752 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Díaz-Rodríguez E., Sanz E., Pandiella A. (2018). Antitumoral effect of ocoxin, a natural compound-containing nutritional supplement, in small cell lung cancer. Int. J. Oncol. 53, 113–123. 10.3892/ijo.2018.4373 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Dong Z., Zhang N., Li C., Wang H., Fang Y., Wang J., et al. (2015). Anticancer drug sensitivity prediction in cell lines from baseline gene expression through recursive feature selection. BMC Cancer 15:489. 10.1186/s12885-015-1492-6 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Fey D., Halasz M., Dreidax D., Kennedy S. P., Hastings J. F., Rauch N., et al. (2015). Signaling pathway models as biomarkers: patient-specific simulations of JNK activity predict the survival of neuroblastoma patients. Sci. Signal. 8, ra130–ra130. 10.1126/scisignal.aab0990 [DOI] [PubMed] [Google Scholar]
- Garnett M. J., Edelman E. J., Heidorn S. J., Greenman C. D., Dastur A., Lau K. W., et al. (2012). Systematic identification of genomic markers of drug sensitivity in cancer cells. Nature 483, 570–575. 10.1038/nature11005 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Gedeon T. D. (1997). Data mining of inputs: analysing magnitude and functional measures. Int. J. Neural Syst. 8, 209–218. 10.1142/S0129065797000227 [DOI] [PubMed] [Google Scholar]
- Iorio F., Knijnenburg T. A., Vis D. J., Bignell G. R., Menden M. P., Schubert M., et al. (2016). A landscape of pharmacogenomic interactions in cancer. Cell 166, 740–754. 10.1016/j.cell.2016.06.017 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Kreisler A., Strissel P., Strick R., Neumann S., Schumacher U., Becker C. (2010). Regulation of the NRSF/REST gene by methylation and CREB affects the cellular phenotype of small-cell lung cancer. Oncogene 29, 5828–5838. 10.1038/onc.2010.321 [DOI] [PubMed] [Google Scholar]
- Kursa M. B., Rudnicki W. R., et al. (2010). Feature selection with the boruta package. J. Stat. Softw. 36, 1–13. 10.18637/jss.v036.i11 [DOI] [Google Scholar]
- La Thangue N. B., Kerr D. J. (2011). Predictive biomarkers: a paradigm shift towards personalized cancer medicine. Nat. Rev. Clin. Oncol. 8, 587–596. 10.1038/nrclinonc.2011.121 [DOI] [PubMed] [Google Scholar]
- Li B., Shin H., Gulbekyan G., Pustovalova O., Nikolsky Y., Hope A., et al. (2015). Development of a drug-response modeling framework to identify cell line derived translational biomarkers that can predict treatment outcome to erlotinib or sorafenib. PLoS ONE 10:e0130700 10.1371/journal.pone.0130700 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Li Y., Seto E. (2016). HDACs and HDAC inhibitors in cancer development and therapy. Cold Spring Harb. Perspect. Med. 6:a026831. 10.1101/cshperspect.a026831 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Liou C.-Y., Huang J.-C., Yang W.-C. (2008). Modeling word perception using the Elman network. Neurocomputing 71, 3150–3157. 10.1016/j.neucom.2008.04.030 [DOI] [Google Scholar]
- Liu F.-Y., Safdar J., Li Z.-N., Fang Q.-G., Zhang X., Xu Z.-F., et al. (2014). CCR7 regulates cell migration and invasion through MAPKs in metastatic squamous cell carcinoma of head and neck. Int. J. Oncol. 45, 2502–2510. 10.3892/ijo.2014.2674 [DOI] [PubMed] [Google Scholar]
- Liu M., Wang X., Wang L., Ma X., Gong Z., Zhang S., et al. (2018). Targeting the IDO1 pathway in cancer: from bench to bedside. J. Hematol. Oncol. 11:100. 10.1186/s13045-018-0644-y [DOI] [PMC free article] [PubMed] [Google Scholar]
- Liu X., Yang J., Zhang Y., Fang Y., Wang F., Wang J., et al. (2016). A systematic study on drug-response associated genes using baseline gene expressions of the cancer cell line encyclopedia. Sci. Rep. 6:22811. 10.1038/srep22811 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Liu X.-Y., Wu J., Zhou Z.-H. (2009). Exploratory undersampling for class-imbalance learning. IEEE Trans. Syst. Man Cybern. Part B 39, 539–550. 10.1109/TSMCB.2008.2007853 [DOI] [PubMed] [Google Scholar]
- Lu K. V., Zhu S., Cvrljevic A., Huang T. T., Sarkaria S., Ahkavan D., et al. (2009). Fyn and SRC are effectors of oncogenic epidermal growth factor receptor signaling in glioblastoma patients. Cancer Res. 69, 6889–6898. 10.1158/0008-5472.CAN-09-0347. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Matthews S. P., McMillan S. J., Colbert J. D., Lawrence R. A., Watts C. (2016). Cystatin F ensures eosinophil survival by regulating granule biogenesis. Immunity 44, 795–806. 10.1016/j.immuni.2016.03.003 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Menden M. P., Iorio F., Garnett M., McDermott U., Benes C. H., Ballester P. J., et al. (2013). Machine learning prediction of cancer cell sensitivity to drugs based on genomic and chemical properties. PLoS ONE 8:e61318. 10.1371/journal.pone.0061318 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Michaelis M., Rothweiler F., Nerreter T., Van Rikxoort M., Sharifi M., Wiese M., et al. (2014). Differential effects of the oncogenic BRAF inhibitor PLX4032 (vemurafenib) and its progenitor PLX4720 on ABCB1 function. J. Pharm. Pharm. Sci. 17, 154–168. 10.18433/J3TW24 [DOI] [PubMed] [Google Scholar]
- Nehs M. A., Nagarkatti S., Nucera C., Hodin R. A., Parangi S. (2010). Thyroidectomy with neoadjuvant PLX4720 extends survival and decreases tumor burden in an orthotopic mouse model of anaplastic thyroid cancer. Surgery 148, 1154–1162. 10.1016/j.surg.2010.09.001 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Neto E. C., Jang I. S., Friend S. H., Margolin A. A. (2014). The stream algorithm: computationally efficient ridge-regression via bayesian model averaging, and applications to pharmacogenomic prediction of cancer cell line sensitivity, in Biocomputing 2014, Altman R. B., Dunker A. K., Hunter L., Murray T. A., Klein T. E., Ritchie M. D. (Hawaii, HI: World Scientific; ), 27–38. [PMC free article] [PubMed] [Google Scholar]
- Nilsson R., Peña J. M., Björkegren J., Tegnér J. (2007). Consistent feature selection for pattern recognition in polynomial time. J. Mach. Learn. Res. 8, 589–612. [Google Scholar]
- Ospina J. D., Zhu J., Chira C., Bossi A., Delobel J. B., Beckendorf V., et al. (2014). Random forests to predict rectal toxicity following prostate cancer radiation therapy. Int. J. Radiat. Oncol. Biol. Phys. 89, 1024–1031. 10.1016/j.ijrobp.2014.04.02 [DOI] [PubMed] [Google Scholar]
- Riddick G., Song H., Ahn S., Walling J., Borges-Rivera D., Zhang W., et al. (2010). Predicting in vitro drug sensitivity using random forests. Bioinformatics 27, 220–224. 10.1093/bioinformatics/btq628 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Rinehart J., Adjei A. A., LoRusso P. M., Waterhouse D., Hecht J. R., Natale R. B., et al. (2004). Multicenter phase II study of the oral MEK inhibitor, CI-1040, in patients with advanced non-small-cell lung, breast, colon, and pancreatic cancer. J. Clin. Oncol. 22, 4456–4462. 10.1200/JCO.2004.01.185 [DOI] [PubMed] [Google Scholar]
- Rose A. A., Annis M. G., Frederick D. T., Biondini M., Dong Z., Kwong L., et al. (2016). MAPK pathway inhibitors sensitize BRAF-mutant melanoma to an antibody-drug conjugate targeting GPNMB. Clin. Cancer Res. 22, 6088–6098. 10.1158/1078-0432.CCR-16-1192 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Shen Y., Pan X., Zhao H. (2014). The histone demethylase PHF8 is an oncogenic protein in human non-small cell lung cancer. Biochem. Biophys. Res. Commun. 451, 119–125. 10.1016/j.bbrc.2014.07.076 [DOI] [PubMed] [Google Scholar]
- Shin S., Cha H. J., Lee E.-M., Lee S.-J., Seo S.-K., Jin H.-O., et al. (2009). Alteration of miRNA profiles by ionizing radiation in A549 human non-small cell lung cancer cells. Int. J. Oncol. 35, 81–86. 10.3892/ijo_00000315 [DOI] [PubMed] [Google Scholar]
- Smirnov P., Safikhani Z., El-Hachem N., Wang D., She A., Olsen C., et al. (2015). Pharmacogx: an R package for analysis of large pharmacogenomic datasets. Bioinformatics 32, 1244–1246. 10.1093/bioinformatics/btv723 [DOI] [PubMed] [Google Scholar]
- Soufan O., Kleftogiannis D., Kalnis P., Bajic V. B. (2015). DWFS: a wrapper feature selection tool based on a parallel genetic algorithm. PLoS ONE 10:e0117988. 10.1371/journal.pone.0117988 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Suphavilai C., Bertrand D., Nagarajan N. (2018). Predicting cancer drug response using a recommender system. Bioinformatics 34, 3907–3914. 10.1093/bioinformatics/bty452 [DOI] [PubMed] [Google Scholar]
- Varmeh S., Borre P. V., Gunda V., Brauner E., Holm T., Wang Y., et al. (2016). Genome-wide analysis of differentially expressed miRNA in PLX4720-resistant and parental human thyroid cancer cell lines. Surgery 159, 152–162. 10.1016/j.surg.2015.06.046 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wan Q., Pal R. (2014). An ensemble based top performing approach for NCI-dream drug sensitivity prediction challenge. PLoS ONE 9:e101183. 10.1371/journal.pone.0101183 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wang B., Mezlini A. M., Demir F., Fiume M., Tu Z., Brudno M., et al. (2014). Similarity network fusion for aggregating data types on a genomic scale. Nat. Methods 11, 333–337. 10.1038/nmeth.2810 [DOI] [PubMed] [Google Scholar]
- Wang C.-Y., Chen C.-L., Tseng Y.-L., Fang Y.-T., Lin Y.-S., Su W.-C., et al. (2012). Annexin A2 silencing induces G2 arrest of non-small cell lung cancer cells through p53-dependent and-independent mechanisms. J. Biol. Chem. 287, 32512–32524. 10.1074/jbc.M112.351957 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wang L., Li X., Zhang L., Gao Q. (2017). Improved anticancer drug response prediction in cell lines using matrix factorization with similarity regularization. BMC Cancer 17:513. 10.1186/s12885-017-3500-5 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wang L.-P., Cao J., Zhang J., Wang B.-Y., Hu X.-C., Shao Z.-M., et al. (2015). The human chemokine receptor CCRl2 suppresses chemotaxis and invasion by blocking CCL2-induced phosphorylation of p38 MAPK in human breast cancer cells. Med. Oncol. 32:254. 10.1007/s12032-015-0696-6 [DOI] [PubMed] [Google Scholar]
- Wilkinson G. R. (2005). Drug metabolism and variability among patients in drug response. N. Engl. J. Med. 352, 2211–2221. 10.1056/NEJMra032424 [DOI] [PubMed] [Google Scholar]
- Yang W., Soares J., Greninger P., Edelman E. J., Lightfoot H., Forbes S., et al. (2012). Genomics of drug sensitivity in cancer (GDSC): a resource for therapeutic biomarker discovery in cancer cells. Nucleic Acids Res. 41, D955–D961. 10.1093/nar/gks1111 [DOI] [PMC free article] [PubMed] [Google Scholar]
- Zhang N., Wang H., Fang Y., Wang J., Zheng X., Liu X. S. (2015). Predicting anticancer drug responses using a dual-layer integrated cell line-drug network model. PLoS Comput. Biol. 11:e1004498. 10.1371/journal.pcbi.1004498 [DOI] [PMC free article] [PubMed] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Supplementary Materials
Data Availability Statement
The source code and datasets for this study can be downloaded from https://github.com/bioinformatics-xu/AutoBorutaRF.