Skip to main content

An improved clear cell renal cell carcinoma stage prediction model based on gene sets

Abstract

Background

Clear cell renal cell carcinoma (ccRCC) is the most common subtype of renal cell carcinoma and accounts for cancer-related deaths. Survival rates are very low when the tumor is discovered in the late-stage. Thus, developing an efficient strategy to stratify patients by the stage of the cancer and inner mechanisms that drive the development and progression of cancers is critical in early prevention and treatment.

Results

In this study, we developed new strategies to extract important gene features and trained machine learning-based classifiers to predict stages of ccRCC samples. The novelty of our approach is that (i) We improved the feature preprocessing procedure by binning and coding, and increased the stability of data and robustness of the classification model. (ii) We proposed a joint gene selection algorithm by combining the Fast-Correlation-Based Filter (FCBF) search with the information value, the linear correlation coefficient, and variance inflation factor, and removed irrelevant/redundant features. Then the logistic regression-based feature selection method was used to determine influencing factors. (iii) Classification models were developed using machine learning algorithms. This method is evaluated on RNA expression value of clear cell renal cell carcinoma derived from The Cancer Genome Atlas (TCGA). The results showed that the result on the testing set (accuracy of 81.15% and AUC 0.86) outperformed state-of-the-art models (accuracy of 72.64% and AUC 0.81) and a gene set FJL-set was developed, which contained 23 genes, far less than 64. Furthermore, a gene function analysis was used to explore molecular mechanisms that might affect cancer development.

Conclusions

The results suggested that our model can extract more prognostic information, and is worthy of further investigation and validation in order to understand the progression mechanism.

Introduction

Clear cell renal cell carcinoma (ccRCC) accounts for 60–85% of RCC [1, 2], which represents 2–3% of all cancers with a general annual increase of 5% [3, 4]. ccRCC is usually asymptomatic in the early stages, with about 25–30% of patients having metastasis by the time of diagnosis [5]. Moreover, patients who had localized ccRCCs removed by nephrectomy have a high risk of metastatic relapse [6]. ccRCC has high resistance to chemotherapy and radiotherapy, leading to poor prognosis [7, 8]. Detecting ccRCC in the early stage can help prevent and treat cancer at early stages. Also, understanding key genetic drivers for progression can help to develop new treatments.

Gene expression profiling has the potential for the classification of different tumor types since they play an important role in tumor development and metastasis. Machine learning-based methods which make use of gene expression profiling have been developed for discriminating stages in various cancers [9], including ccRCC [10, 11]. Rahimi [9] recommended using a multiple kernel learning (MKL) formulation on pathways/gene sets to learn an early- and late-stage cancer classification model. Jagga [10] and Bhalla [11] trained different machine learning models using genes selected by Weka and achieved a maximum AUROC of 0.8 and 0.81 on ccRCC respectively. Although some researchers have distinguished early and advanced stages of ccRCC using the classification models, the stability of the classification model is not guaranteed and there is still room for improvement in model performance.

This work aimed to extract significant features from high-dimensional gene data using data mining techniques and make more accurate and reliable predictions of ccRCC tumor stages with machine learning algorithms. For data preprocessing, we used the Chi-merge binning and WOE encoding algorithm to accomplish data discretization, thus reducing the impact of statistical noise and increasing the stability of the classification model. For gene selection, a joint selection strategy to remove irrelevant/redundant features was proposed, and the final FJL-set with 23 genes was derived as an aggregated result. Specifically, we aggregate Fast-Correlation-Based Filter search (FCBFSearch), joint statistical measures (the information value, the linear correlation coefficient, and variance inflation factor) and logistic regression-based feature selection. For the classification model, five different supervised machine learning algorithms were evaluated on an independent testing set. Finally, a simple and comprehensible SVM based prediction model using 23 selected genes performed best with an accuracy of 81.15% and AUC 0.86 — higher than the state-of-the-art method with fewer genes.

Materials

The RNAseq expression data along with their clinical information for Kidney Renal Clear Cell Carcinoma (KIRC) samples from The Cancer Genome Atlas (TCGA) project were used to distinguish between early- and late-stage ccRCC. RSEM values of KIRC used as gene expression values and clinical annotations for cancer patients were derived from UCSC Xena (https://xenabrowser.net/datapages/). FPKM values of KIRC were derived in TCGA for comparison with RSEM.

Samples with Stage I and II were considered as early-stage (i.e. localized cancers) and the remaining samples with Stage III and IV were labeled as late-stage cancers. After this processing, 604 samples from early- and late- stages were retained. 80% samples (482 samples) were picked randomly as the training set and the remaining 20% (122 samples) were used as the independent test set. Table 1 shows the datasets used in this study.

Table 1 Summary of TCGA - KIRC that was used in the training and test set

Methods

Feature selection and classification algorithms with preprocessed gene expression profiles were used to detect early- and late-stage samples. Due to the wide range and highly correlated nature of gene expression data, the performance of classification models with raw features were not robust. Therefore, feature selection was conducted before classification, and only on the training set. Five supervised machine learning algorithms were used on gene sets to predict their pathological stages. Figure 1 demonstrates the overall algorithm framework used in this work.

Fig. 1
figure 1

The overall algorithm framework

Feature preprocessing

To increase the stability and robustness of the classification model, Chi-merge binning and WOE encoding for discretizing genetic features were conducted. The range of each numeric RSEM attribute for different genes can be very wide. While some extremely large values seldom appear, they can cause prediction impairment because of seldom reversal patterns and extreme values. Grouping similar properties with similar predictive intensity will increase the instability of models and allow the understanding of the logical trend of “early−/ late-stage” bias of each feature.

Discretization

Chi-merge binning

Binning and encoding are techniques purposed to reduce the impact of statistical noise. It is widely used in credit risk prediction and other applications. However, no prior works apply this method to cancer classification problems. Instead, they put the normalized genetic features into machine learning models directly.

Chi-merge is the most widely used automatic grading algorithm. It is partitioned in such a way that the early-stage and late-stage samples are as different as possible in the proportion of adjacent boxes. The disadvantage of Chi-merge is that it requires mass computation, so it may not be a good choice for selecting features from all genes.

WOE encoding

After binning, the original numeric characteristics are transformed into categorical ones, and it is impossible to put the discretized variables directly into the model. Therefore, variables of discrete type need to be coded. WOE encoding was used in our experiments to encode these categorical variables.

Weight of evidence (WOE) is based on the ratio of early-stage to late-stage samples at each level. It weighs the strength of feature attributes to distinguish between early- and late-stage accounts.

$$ {WOE}_i=1\mathrm{n}\left(\frac{E_i/E}{L_i/L}\right)=1\mathrm{n}\left(\frac{E_i/{L}_i}{E/L}\right)=1\mathrm{n}\left(\frac{E_i}{L_i}\right)-1\mathrm{n}\left(\frac{E}{\;L}\right) $$
(1)

Here Ei is the number of early-stage samples in bin i, Li is the number of bad early-stage samples in bin i, E is the total number of early-stage samples, and L is the total number of bad early-stage samples.

Standardization

In the second set of experiments, the RSEM values were transformed using log2 after adding 1.0. Then the log2 transformed values were normalized. The following equations were used for computing the transformation and normalization:

$$ x={\log}_2\left( RSEM+1\right) $$
(2)
$$ z=\frac{x-\overline{x}}{s} $$
(3)

Where x is the log-transformed gene expression, \( \overline{x} \) is the mean of training samples, and s is the standard deviation of the training samples.

Feature selection

A hybrid feature selection method was developed which aimed to produce a feature subset from aggregated feature selection algorithms. All these algorithms were conducted on the training set. The feature selection method was composed of three parts: (1) FCBFSearch, (2) joint statistical measures, and (3) logistic regression-based feature selection. In this way, irrelevant/redundant attributes in data sets can be removed, the instability and perturbation issues of single feature selection algorithms can be alleviated, and the subsequent learning task can be enhanced.

Fast correlation-based filter search

When there are a lot of variables, there is a strong relevance/redundance between the variables. If all the variables are put together into classification models, the significance of important variables is reduced, and in extreme cases, sign distortion occurs. The Fast Correlation-Based Filter (FCBF) Search algorithm is a feature selection algorithm based on information theory [12], which takes into account both feature correlation and feature redundancy. It uses dominant correlation to distinguish related features in high-dimensional datasets.

FCBFSearch was performed on the original training data without data preprocessing. In addition, a random sampling method was used to select the robust features. FCBFSearch was conducted 10 times with random sampling 10-fold cross-validation every time on the training dataset, after which 10 subsets of features were obtained. The features with an overlap number of more than 8 were selected for the data preprocessing and the following joint statistical measures processions.

Joint statistical measures

Joint statistical feature selection was done on preprocessed FCBFSearch features. The method combines various statistical measures to assess feature importance and relevance and filter out redundant features.

  1. (1)

    Univariate Analysis

The information value (IV) is used to assess the overall predictive power of the feature, i.e. the ability of the feature to separate early-and late-stage samples. It expresses the amount of information of the predictor in separating early- from late-stage in the target variable.

\( IV=\sum \left(\frac{G_i}{G}-\frac{B_i}{B}\right)\ln \left(\frac{G_i/G\ }{B_i/B\ }\right) \)\( \mathrm{IV}=\sum \left(\frac{{\mathrm{G}}_{\mathrm{i}}}{\mathrm{G}}-\frac{{\mathrm{B}}_{\mathrm{i}}}{\mathrm{B}}\right)\ln \left(\frac{{\mathrm{G}}_{\mathrm{i}}/\mathrm{G}}{{\mathrm{B}}_{\mathrm{i}}/\mathrm{B}}\right) \) (4).

Where Gi is the proportion of early-stage samples of bin i in all early-stage samples and Bi is the proportion of late-stage samples of bin i in all late-stage samples.

IV < 0.02 represents an unpredicted variable, 0.02–0.10 is weakly predictive, 0.10–0.30 is moderately predictive, and > 0.30 is strongly predictive. In the experiment, we rejected variables whose IV was lower than 0.1.

  1. (2)

    Multivariate Analysis

The linear correlation coefficient was used to measure the correlation between two variables. The larger the absolute value of the linear correlation coefficient is, the more likely it is to be a linear expression for another variable. Linear correlation has two meanings: positive correlation and negative correlation. It is desirable to avoid both of these situations because it is hoped that the correlation between the two variables is as small as possible. In the present study, 0.7 was chosen as the baseline. If the absolute value of the correlation coefficient was greater than 0.7, the one with lower IV score was selected.

After this, collinearity analysis was performed since the collinearity problem tends to reduce the significance of a variable. The Variance Inflation Factor (VIF) was used to evaluate multivariate linear correlation.

$$ {VIF}_i=\frac{1}{1-{R}_i^2} $$
(5)

Where Ri is the R2 value of xi and {x1, x2, …, xi − 1, xi + 1, xi + 2, …, xN} . When the calculated VIF is far less than 10, there is no collinearity problem.

Logistic regression-based feature selection

In the present study, logistic regression (LR) was used as the classification model in feature selection progress in order to find which factors were influential in discriminating early- and late-stage samples, and how these factors quantitatively affect the model.

To guarantee the validity and significance of the variables sent to the logistic regression model, we checked the coefficients and p values of the input variables which indicate the influence of the independent variable on the dependent variable and whether early- and late-stage genetic expression significantly change. Some variables’ p values are higher than 0.1 before checking, and it means that there is no obvious correlation between the two parameters. In our study, we filtered variables whose p-value exceeded the threshold 0.1 and the values of coefficients were positive.

Classification algorithm

Five machine learning algorithms: Support Vector Machine (SVM), Logistic Regression, Multi-Layer Perception (MLP), Random Forest (RF) and Naive Bayes (NB) were used for generating the classification models. RBF kernel of SVM at different parameters, gamma[10− 9, 10− 7, ..., 10, 103], c[− 5, − 3, ..., 13, 15] was used for optimizing the SVM performance. SVM, MLP, RF, and NB were implemented using the Sklearn package in Python.

10-fold cross-validation

The five supervised machine learning algorithms were trained on the subset features from feature selection and further validated by 10-fold cross-validation.

Independent dataset test

An independent testing set is used to exclude the “memory” effect or bias for trained classification models. We did not use this testing set for feature selection or model training. We only evaluated the performance of the classification model on it, and the model was trained on the training set.

Analysis of selected genes

The Database for Annotation, Visualization and Integrated Discovery (DAVID, version 6.7) [13] and KEGG [14] database was used to explain the meaning of functional from the molecular or higher levels and associate the genes with related pathways. As a main bioinformatics database for analyzing gene function and understanding the biological functions, GO is integrated with other databases in DAVID [15]. A meaningful biological explanation for the selected genes through the enrichment analysis, and correlating genes with diseases in the mechanism is needed. P < 0.05 was considered statistically significant.

Results

Experiments were performed on the TCGA - KIRC dataset that was constructed with labeling strategies shown in Table 1. The results of every feature selection procedures and performance of the classification algorithm are shown.

Experiment settings

The feature selection process and classification models were conducted on the training set while the performance of models was evaluated using 10-fold cross-validation on the training set as well as on the independent testing set. We implemented the initial FCBFSearch in Weka 3.8, and the attribute evaluator ‘SymmetricalUncertAttributeSetEval’ with the search method of ‘FCBFSearch’ was used to accomplish this process. All data preprocessing feature extraction, joint statistical feature selection measures, and classification algorithms were in Python programming language, and the related code is publicly available in the github (https://github.com/lfj95/FJL-model). The details of experimental settings in compared methods are described in the Supplementary Methods.

Data preprocessing results

Binning and encoding deals with the long tail data distribution

To show the role of binning and encoding, the data distribution of 3 representative genes were plotted. Expression values of these 3 genes (Fig. 2) shows that the original dataset had long tail distributions, and the probability of occurrence of maximum value was very small. In addition, this kind of data distribution can cause great interference to the classification procedure so that it is unstable. After Chi-merge binning and WOE encoding, the training data were discretized and mapped to values between − 3 and 3. These results indicate that binning and encoding could normalize variables to similar scales and reduce the effect of the data distribution.

Fig. 2
figure 2

Comparison of data distribution of 3 representative genes before and after binning and encoding

Feature selection results

In this section, the results of each feature selection step: (1) FCBFSearch, (2) joint statistical measures, and (3) logistic regression-based feature selection are shown.

FCBFSearch

The selection frequencies of genes selected by FCBFSearch are shown in Table S2. The 101 genes that were selected more than 8 times are marked in bold. FCBFSearch was conducted on gene data without preprocessing, following the discretization process which eliminated 6 genes whose maximum bin occupied more than 90% during the preprocessing process. So only 95 genes went to joint statistical measures.

Joint statistical measures

The information value was employed for finding the importance of genes, linear correlation coefficient, and the variance inflation factor for discovering associations among genes. Thirty genes whose IV score was lower than 0.1 were removed (Table S3) since the predictor was not useful for modeling. After this process, there were 65 genes left, and gene MFSD2A had the highest IV 0.455. In addition, 27 genes reached an IV score of 0.2, as shown in Fig. 3A. Therefore, the prediction ability of individual variables collected was strong, and the prediction ability of selecting the appropriate feature combination was available.

Fig. 3
figure 3

Performance of feature selection algorithms. (a) IV score of 95 genes (higher than 0.1 in blue, lower than 0.1 in red). (b) Validity and significance test of variables. The coefficients of all selected variables are negative but the p values of some genes are higher than 0.1. After the phase-out, the significance of residual variables are guaranteed

Correlation coefficients between genes were all lower than the threshold value 0.7 and the calculated VIF were all far less than 10. So, no genes were removed in this step, indicating that genes included in the classification model all had high importance and low correlation.

Logistic regression-based feature selection

To guarantee the correctness and significance of the variables sent to the logistic regression model, the coefficients and p values of the input variables were checked to eliminate variables that were not valid and not significant, respectively. Figure 3B shows variables before and after filtering, the coefficients and p values which indicate the influence of the independent variable on the dependent variable and whether early- and late-stage genetic expression significantly changed. As can be seen, some variables’ p values were higher than 0.1 before checking. This means that there is no obvious correlation between the two parameters. The variable size was reduced from 65 to 23 after stepwise iteration removed insignificant variables, while the remaining p-values did not exceed the threshold 0.1 and the values of coefficients were all negative.

Classification results

In this section, the classification results of the model and the baseline models are shown. Prediction models on the independent test set with 122 samples, in terms of area under the receiver operating characteristic curve (AUC), accuracy, Matthews Correlation Coefficient (MCC), specificity, and sensitivity were evaluated. The generalization ability of the algorithm was also reflected by a 10-fold cross-validation experiment. For each fold, separate classifiers were trained, and the result finally obtained was the average of 10-folds.

FJL-set-based models

Twenty-three genes in the FJL-set with the preprocessing method shown in 3.1.1 were used to classify “early- and late-stage” on the five machine learning algorithms -- SVM, MLP, Random Forest, Decision Tree, and Naive Bayes (Table 2).

Table 2 The performance of machine learning based-models developed using FLJ-set of 23 selected features on the training set with 10-fold cross-validation set and independent testing set for gene data without discretization

Sensitivities of all the models were in the range of 0.612–0.776 with the highest sensitivity of 0.776 for MLP. Specificities of the models varied in a range with the lowest of 0.767 for logistic regression and the highest of 0.877 for SVM. The best sensitivity-specificity trade-off was observed for the SVM Classifier with a sensitivity of 0.714 and specificity of 0.877. The classification accuracy of the generated prediction models ranged from 76.23% for Random Forest to 81.15% for SVM, and the AUC score ranged from 0.819 for Naive Bayes to 0.860 for SVM. Based on accuracy and AUC, we inferred the SVM based prediction model outperformed the other four machine learning algorithms implemented in the study. The MCC of the models developed in the study was between 0.496 and 0.609. It is notable that among the four evaluated prediction models, the model based on SVM had the highest specificity, accuracy, AUC.

The ROC curve (Fig. 4) was plotted to summarize the performance of different models in discriminating early- and late-stage ccRCC in the preprocessed test data sets. One hundred and twenty-two test samples were used to evaluate the prediction power of the five classifiers with two preprocessing methods. Among the prediction models, SVM and Logistic Regression achieved the maximum value of 0.860 for AUC. Naive Bayes had the least AUC of 0.819, about 0.04 lower than SVM. In real-word applications, logistic regression is also a good choice.

Fig. 4
figure 4

Receivers Operating Characteristic curve (ROC) for all the five classifiers with discretization

No feature selection based models

We first conducted experiments without feature selection to explain the performance of models developed using machine learning techniques. We used 20,530 gene features with the preprocessing method as shown in 3.1.2. The classification result on the testing set is shown in Table 3.

Table 3 The performance of machine learning-based models developed using different sets of selected features, which include whole gene sets without feature selection, RCSP-set-Weka-Hall, FCBF-set, and FJL-set

The performance of AUC on the testing set was 0.806 in SVM and 0.768 in LR. The results of traditional machine learning algorithms before feature selection were not high, especially for logistic regression, whose performance was highly affected by the wide range and highly correlated gene expression data. Therefore, feature selection is essential to improve prediction accuracy.

RCSP-set-Weka-hall based models

The best results were compared with Bhalla’s results. The research [11] that Bhalla et al. did selected a subset of genes that are components of cancer hallmark processes and obtained a good performance of the model. We conducted experiments with these 38 genes on both training set with 10-fold cross-validation and on a test set. The preprocessing method used is as described in 3.1.2, the same as that used in their study. The classification result on the testing set is shown in Table 3.

As reported in their paper, they achieved an accuracy of 77.7% with AUC 0.83 on their training data and accuracy of 72.64% with AUC of 0.78 on their validation data with 104 test samples. In the present experiment, their method was repeated in Python and an accuracy of 77.87% with AUC of 0.844 with SVM on our test data with 122 test samples was obtained, while the results on the training set using 10-fold cross-validation were 70.35% in accuracy and 0.769 in AUC (Table 3).

FCBF-set-based models

In this section, the feature selection was performed by Weka on preprocessed data with the method described in 3.1.2 and the number of features was reduced from 20,530 to 101 features (FCBF-set). LR based models did not perform well with these 101 genes, with an accuracy of 72.95% and AUC of 0.789 on the test set. SVM based models gave the best performance with an accuracy of 74.23% with AUC 0.793 on the training data using 10-fold cross-validation and an accuracy of 75.41% with AUC of 0.826 on the testing set (Table 3), which were higher than the results of RCSP-set-Weka-Hall based model. For certainty of results, we made 100 random sets from 60% validation samples to test the biomarkers in these random sets as well, and the mean of randomized experiments is shown in Table 3.

It can be seen that FJL set-based models perform best, which confirms that the genes selected with our method have a certain significance for the division of pathological stages. Also, there is a consistency between the results of 10-fold cross-validation and results on the testing set.

Besides, FPKM values were experimented in the same process with RSEM. Accuracy and AUC are also better than RCSP-set-Weka-Hall set, as were shown in the Table S5, indicating that the experimental method is also applicable to FPKM and it also can get a good classification result.

Biological mechanisms identified by selected genes

Many filtered genes in our method were confirmed to associate with tumor in the previous literature. UFSP2 combined with the nuclear receptor coactivator ASC1 is involved in the development of breast cancer [16]. GPR68 is a mediator interacting with pancreatic cancer-associated fibroblasts and tumor cells [17]. RXRA mutation drives about a quarter of bladder cancer [18]. CACNA1D mutation causes increased Ca2+ influx, further stimulating aldosterone production and cell proliferation in adrenal glomerulosa [19]. CASP9 expression has an apoptosis-inducing and anti-proliferative effect in breast cancer [20]. High expression of PLA2G2A can cause short survival in human rectal cancer [21]. KIAA0652 (ATG13) mediates the inhibition of autophagy in DNA damage via the mTOR pathway [22]. CTSG (Cathepsin G) is thought to be an effective therapeutic target in acute myeloid leukemia patients [23] and could rapidly enhance NK cytotoxicity [24]. HUS1b is confirmed to have the function of checkpoint activation in the response to DNA damage, and its overexpression induces cell death [25]. Saitohin polymorphism is associated with the susceptibility of late-onset Alzheimer’s disease [26] and does not associate with the cancer. RNF115 is broadly overexpressed in ERα-positive breast tumors [27]. Wintergerst L et al. [28] reported that CENPBD1 can predict clinical outcomes of head and neck squamous cell carcinoma patients. Tumor cells produce IL-31, and IL-31 and its receptor are confirmed to affect the tumor microenvironment [28].

Functional roles of the 23 hub genes are shown in Table S4. The results in GO analysis showed that the biological processes (BP) were proteolysis, G-protein coupled receptor signaling pathway, and regulation of insulin secretion (Fig. 5). G-protein coupled receptor signaling mediates kidney dysfunction [29]. Also, elevated circulating levels of urea in chronic kidney disease can cause the dysfunction of secretory insulin [30]. Genetic changes in molecular function (MF) show that there are enrichment terms including protein kinase binding and peptidase activity. The most varied term in cell component (CC) was the extracellular region. KEGG analysis found that the selected genes were mostly enriched in the Neuroactive ligand-receptor interaction.

Fig. 5
figure 5

GO and KEGG pathway enrichment analysis of selected genes

Discussion

In this study, we presented an effective computational framework with a higher capability to discriminate the stage of ccRCC tumor samples. Previous work identified a panel with these genes that can use gene expression data to effectively distinguish between early and late ccRCC patients [11]. Different machine learning algorithms have also been applied [9, 11]. However, given the selected gene set, we speculated that the prediction performance can be improved with better feature processing methods. The major contributions of the proposed method are (1) an improved feature preprocessing method by discretization of gene expression data through Chi-merge binning and WOE encoding, (2) gene panel selection through FCBFSearch, joint statistical measures (IV, the linear correlation coefficient and VIF), and logistic regression-based feature selection. We eliminated noisy and extraneous genetic features during this process and finally obtained a hub gene set (FJL-set) which consists of 23 genes, (3) validation of the performances of machine learning algorithms. Our model can achieve a higher predictive accuracy than baseline models while using less selected genes, and (4) analyzation of the genes’ functions. It was found that the targeted genes were confirmed to associate with cancer in the existing research.

There are two main directions of our future work. We will first try other basic feature selection methods other than FCBFSearch on the whole gene set, leading to more accurate classifiers. Then this discrimination algorithm will be applied to other diseases and datasets. By doing so, we will be able to validate the generalization ability of our model.

Availability of data and materials

All code are available at https://github.com/lfj95/FJL-model.

References

  1. Hakimi Ari A, Pham CG, Hsieh JJ. A clear picture of renal cell carcinoma. Nat Genet. 2013;45(8):849.

    Article  CAS  Google Scholar 

  2. Cancer Genome Atlas Research Network. "Comprehensive molecular charac-terization of clear cell renal cell carcinoma." Nature 499.7456 (2013): 43.

  3. Ljungberg, Börje, et al. "Guidelines on renal cell carcinoma." European associ-ation of urology (2013): 5–56.

  4. Fitzmaurice C, et al. Global, regional, and national cancer incidence, mortality, years of life lost, years lived with disability, and disability-adjusted life-years for 32 cancer groups, 1990 to 2015: a systematic analysis for the global burden of disease study. JAMA Oncol. 2017;3(4):524–48.

    Article  Google Scholar 

  5. Karakiewicz PI, et al. Multi-institutional validation of a new renal cancer-specific survival nomogram. J Clin Oncol. 2007;25:1316.

    Article  Google Scholar 

  6. Pantuck AJ, Zisman A, Belldegrun AS. The changing natural history of renal cell carcinoma. J Urol. 2001;166(5):1611–23.

    Article  CAS  Google Scholar 

  7. Wood CG. Multimodal approaches in the management of locally advanced and metastatic renal cell carcinoma: combining surgery and system-ic therapies to improve patient outcome. Clin cancer res 13: 697s–702s. [6] Singh, Noor Pratap, Raju S. Bapi, and P. K. Vinod. "machine learning models to predict the progression from early to late stages of papillary renal cell car-cinoma.". Comput Biol Med. 2007;100(2018):92–9.

    Google Scholar 

  8. Muselaers CHJ, et al. Indium-111-labeled girentuximab immunoSPECT as a diagnostic tool in clear cell renal cell carcinoma. Eur Urol. 2013;63:1101–6.

    Article  CAS  Google Scholar 

  9. Rahimi A, Gönen M. Discriminating early-and late-stage cancers using multiple kernel learning on gene sets. Bioinformatics. 2018;34(13):i412–21.

    Article  CAS  Google Scholar 

  10. Jagga, Zeenia, and Dinesh Gupta. "Classification models for clear cell renal carcinoma stage progression, based on tumor RNAseq expression trained su-pervised machine learning algorithms." BMC proceedings. Vol. 8. No. 6. Bio-Med Central, 2014.

  11. Bhalla, Sherry, et al. Gene expression-based biomarkers for discriminating early and late stage of clear cell renal cancer. Sci Rep. 2017;7:44997.

  12. Hubbard T, et al. The Ensembl genome database project. Nucleic Acids Res. 2002;30(1):38–41.

  13. Safran M, et al. GeneCards version 3: the human gene integrator. Database. 2010;2010.

  14. Kanehisa M. The KEGG database. Silico simulation of biological processes. 2002;247(914):91–103.

  15. Ashburner M, et al. Gene ontology: tool for the unification of biolo-gy. Nat Genet. 2000;25(1):25.

  16. Yoo HM, Kang SH, Kim JY, Lee JE, Seong MW, Lee SW, Ka SH, Sou YS, Komatsu M, Tanaka K, Lee ST, Noh DY, Baek SH, Jeon YJ, Chung CH. Modification of ASC1 by UFM1 is crucial for ERα transactivation and breast cancer development. Mol Cell. 2014 Oct 23;56(2):261–74. https://0-doi-org.brum.beds.ac.uk/10.1016/j.molcel.2014.08.007.

    Article  CAS  PubMed  Google Scholar 

  17. Wiley SZ, Sriram K, Liang W, Chang SE, French R, McCann T, Sicklick J, Nishihara H, Lowy AM, Insel PA. GPR68, a proton-sensing GPCR, mediates interaction of cancer-associated fibroblasts and cancer cells. FASEB J. 2018 Mar;32(3):1170–83. https://0-doi-org.brum.beds.ac.uk/10.1096/fj.201700834R.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  18. Halstead AM, Kapadia CD, Bolzenius J, Chu CE, Schriefer A, Wartman LD, Bowman GR, Arora VK. Bladder-cancer-associated mutations in RXRA activate peroxisome proliferator-activated receptors to drive urothelial proliferation. Elife. 2017 Nov 16;6. doi: https://0-doi-org.brum.beds.ac.uk/10.7554/eLife.30862.

  19. Scholl UI, Goh G, Stölting G, de Oliveira RC, Choi M, Overton JD, et al. Somatic and germline CACNA1D calcium channel mutations in aldosterone-producing adenomas and primary aldosteronism. Nat Genet. 2013;45(9):1050–4. https://0-doi-org.brum.beds.ac.uk/10.1038/ng.2695.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  20. Sharifi M, Moridnia A. Apoptosis-inducing and antiproliferative effect by inhibition of miR-182-5p through the regulation of CASP9 expression in human breast cancer. Cancer Gene Ther. 2017;24(2):75–82. https://0-doi-org.brum.beds.ac.uk/10.1038/cgt.2016.79.

    Article  CAS  PubMed  Google Scholar 

  21. He HL, Lee YE, Shiue YL, Lee SW, Lin LC, Chen TJ, et al. PLA2G2A overexpression is associated with poor therapeutic response and inferior outcome in rectal cancer patients receiving neoadjuvant concurrent chemoradiotherapy. Histopathology. 2015 Jun;66(7):991–1002. https://0-doi-org.brum.beds.ac.uk/10.1111/his.12613.

    Article  PubMed  Google Scholar 

  22. Czarny P, Pawlowska E, Bialkowska-Warzecha J, Kaarniranta K, Blasiak J. Autophagy in DNA damage response. Int J Mol Sci. 2015;16(2):2641–62. https://0-doi-org.brum.beds.ac.uk/10.3390/ijms16022641.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  23. Alatrash G, Garber HR, Zhang M, Sukhumalchandra P, Qiu Y, Jakher H, et al. Cathepsin G is broadly expressed in acute myeloid leukemia and is an effective immunotherapeutic target. Leukemia. 2017;31(1):234–7. https://0-doi-org.brum.beds.ac.uk/10.1038/leu.2016.249.

    Article  CAS  PubMed  Google Scholar 

  24. Yamazaki T, Aoki Y. Cathepsin G enhances human natural killer cytotoxicity. Immunology. 1998;93(1):115–21. https://0-doi-org.brum.beds.ac.uk/10.1046/j.1365-2567.1998.00397.x.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  25. Rumbajan JM, et al. The HUS1B promoter is hypomethylated in the placentas of low-birth-weight infants. Gene. 2016;583(2):141–146. https://0-doi-org.brum.beds.ac.uk/https://0-doi-org.brum.beds.ac.uk/10.1016/j.gene.2016.02.025.

  26. Huang R, Tian S, Cai R, Sun J, Xia W, Dong X, et al. Saitohin Q7R polymorphism is associated with late-onset Alzheimer's disease susceptibility among caucasian populations: a meta-analysis. J Cell Mol Med. 2017;21(8):1448–56. https://0-doi-org.brum.beds.ac.uk/10.1111/jcmm.13079.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  27. Wang Z, Nie Z, Chen W, Zhou Z, Kong Q, Seth AK, et al. RNF115/BCA2 E3 ubiquitin ligase promotes breast cancer cell proliferation through targeting p21Waf1/Cip1 for ubiquitin-mediated degradation. Neoplasia. 2013;15(9):1028–35.

    Article  CAS  Google Scholar 

  28. Ferretti E, Corcione A, Pistoia V. The IL-31/IL-31 489 receptor axis: general features and role in tumor microenvironment. J Leukoc Biol. 2017;102(3):711–17. https://0-doi-org.brum.beds.ac.uk/10.1189/jlb.3MR0117-033R.

  29. Kamal FA, Travers JG, Schafer AE, Ma Q, Devarajan P, Blaxall BC. G protein-coupled receptor-G-protein βγ-subunit signaling mediates renal dysfunction and fibrosis in heart failure. J Am Soc Nephrol. 2017;28(1):197–208. https://0-doi-org.brum.beds.ac.uk/10.1681/ASN.2015080852.

    Article  CAS  PubMed  Google Scholar 

  30. Koppe L, Nyam E, Vivot K, Manning Fox JE, Dai XQ, Nguyen BN, et al. Urea impairs β cell glycolysis and insulin secretion in chronic kidney disease. J Clin Invest. 2016;126(9):3598–612. https://0-doi-org.brum.beds.ac.uk/10.1172/JCI86181.

    Article  PubMed  PubMed Central  Google Scholar 

Download references

Acknowledgements

Not applicable.

Funding

The work presented in this paper was supported in part by the Key Research and Development Program of Shandong Province (2016CYJS01A04), the Major Science and Technology Innovation Project of Shandong Province (2018YFJH0503) and the National Natural Science Foundation of China under Grant 61671278, 81570407 and 81970743.

Author information

Authors and Affiliations

Authors

Contributions

FL and YL filtered the features and built predictive model. MY and WW acquired the expression file and clinical data from the public database. MZ performed statistical calculations in the article. DY and DT designed experiment and analyzed results of the model. FL and MY are the major contributors in writting the draft. The author(s) read and approved the final manuscript.

Corresponding authors

Correspondence to Dongfeng Yuan or Dongqi Tang.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Consent for publication

Not applicable.

Competing interests

All authors declare that they have no competing interests.

Additional information

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Fangjun Li and Mu Yang are co-first author.

Supplementary information

Additional file 1: Table S1.

The differences of experimental settings between the compared method in the reference and in this article. Table S2. Gene selection result of FCBFSearch with 10 times of 10-fold cross validation in training set. Table S3. Gene selection result of joint statistical measures, following 30 genes were removed during this process. Table S4. Functional roles of 23 hub genes with selected times ≥8. Table S5. The performance of machine learning-based models using the value of FPKM and RSEM respectively.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Li, F., Yang, M., Li, Y. et al. An improved clear cell renal cell carcinoma stage prediction model based on gene sets. BMC Bioinformatics 21, 232 (2020). https://0-doi-org.brum.beds.ac.uk/10.1186/s12859-020-03543-0

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://0-doi-org.brum.beds.ac.uk/10.1186/s12859-020-03543-0

Keywords