Skip to main content
Genomics, Proteomics & Bioinformatics logoLink to Genomics, Proteomics & Bioinformatics
. 2017 Dec 12;15(6):389–395. doi: 10.1016/j.gpb.2017.08.002

Hybrid Method Based on Information Gain and Support Vector Machine for Gene Selection in Cancer Classification

Lingyun Gao 1,a, Mingquan Ye 1,⁎,b, Xiaojie Lu 1,c, Daobin Huang 1,d
PMCID: PMC5828665  PMID: 29246519

Abstract

It remains a great challenge to achieve sufficient cancer classification accuracy with the entire set of genes, due to the high dimensions, small sample size, and big noise of gene expression data. We thus proposed a hybrid gene selection method, Information Gain-Support Vector Machine (IG-SVM) in this study. IG was initially employed to filter irrelevant and redundant genes. Then, further removal of redundant genes was performed using SVM to eliminate the noise in the datasets more effectively. Finally, the informative genes selected by IG-SVM served as the input for the LIBSVM classifier. Compared to other related algorithms, IG-SVM showed the highest classification accuracy and superior performance as evaluated using five cancer gene expression datasets based on a few selected genes. As an example, IG-SVM achieved a classification accuracy of 90.32% for colon cancer, which is difficult to be accurately classified, only based on three genes including CSRP1, MYL9, and GUCA2B.

Keywords: Gene selection, Cancer classification, Information gain, Support vector machine, Small sample size with high dimension

Introduction

The incidence and mortality of cancer have been increasing in recent years, posing a serious threat to human health. Uncontrolled proliferation and metastasis of cancer cells pose challenges in identification of cancer types. Moreover, most patients are diagnosed with cancer only when it is at an advanced stage [1], further increasing the difficulty in cancer treatment. DNA microarray technology is able to simultaneously evaluate the expression levels of numerous genes [2], enabling the identification of cancer types at the molecular level. However, the massive amount of data generated and unavoidable errors occurring during experimental processes pose great challenges to the analysis of gene expression data.

Gene expression data are featured with high dimensions, small sample size, and big noise, whereas only a few genes among the genes examined could play an important role in cancer prediction [3]. Therefore, various methods had been developed to select as few informative genes as possible, while maintaining high classification accuracy. Generally, gene selection approaches are divided into two categories: filter and wrapper [4]. Filter methods use feature-ranking techniques as the basis for gene selection. The top-ranked genes are chosen as informative genes. Common ranking methods include information gain (IG) [5], t-statistic [5], reliefF [6], and signal-to-noise ratio [7]. For instance, IG, also known as the Kullback–Leibler divergence, can analyze the correlation between attributes and classes. The wrapper methods identify a powerful gene subset according to the evaluation of a classifier, such as genetic algorithm [8], decision tree [9], and support vector machine (SVM) [10]. Filter methods generally run faster; however, they are unable to analyze the relationships among genes. Conversely, wrapper methods have better performance; however, they require great computational expenses [11]. Therefore, numerous hybrid methods have been proposed to achieve optimal performance [12], [13], [14], [15], [16].

SVM is a machine-learning algorithm based on the principle of structural risk minimization [17]. It shows superior classification performance with better global minimization and generalization ability than traditional classifiers [18]. Therefore, SVM-based methods have been commonly developed for the selection and classification of genes. For instance, Li et al. [19] used a weighted doubly regularized SVM to adaptively identify informative genes. Chan et al. [20] developed a firefly-optimized penalized SVM with SCADL2 penalty function, SVM-SCADL2-FFA, to optimize tuning parameters for the efficient identification of informative genes and pathways. Apart from the extended versions, there are also many integrated methods involving the traditional implementation of SVM [21], [22]. Briefly, SVMs can be used to solve various problems with outstanding performance in the real world.

In this study, considering the huge computational cost of SVM to handle numerous genes, we employed a hybrid method combining IG with SVM for selecting informative genes. IG was initially used to select genes in order to reduce the original data dimension, and further filtration of redundant genes was performed next using SVM. The obtained informative genes were finally evaluated by the LIBSVM classifier.

Method

IG

The importance of genes in a specific category can be evaluated using differences between entropy and conditional entropy, i.e., IG [5], [23]. IG g(Y, X) indicates the reduction of uncertainty [24] as define below

g(Y,X)=H(Y)-H(Y|X) (1)

where H(Y) denotes the entropy of dataset Y, which quantifies the uncertainty involved in predicting the value of a random variable, whereas H(Y|X) denotes the conditional entropy, which represents the uncertainty based on the known variable X. p denotes probability distribution. H(Y) and H(Y|X) are defined as follows:

H(Y)=-p(y)logp(y) (2)
H(Y|X)=xXp(x)H(Y|X=x) (3)

The order of every single gene is arranged in line with the IG value, and high-ranked genes are selected as input features.

SVM

The characteristics of gene expression data, such as small sample size and high dimensions, are well-suited for SVM. Particularly, only a few support vectors in the training set are applied for constructing the decision function that leaves the largest separate margin. By doing this, SVM obtains the optimal hyperplane, which would result in the maximal generalization ability [25].

Given training set

T={(xi,yi)|i=1,2,,m},xiRn,yi{-1,1} (4)

where yi is the label class, m is the number of examples. The main purpose of SVM is to establish the optimal hyperplane:

D(x)=ω·x+b (5)

where ω denotes the weight vector, and b denotes the bias value. When addressing nonlinear problems, SVM adopts the kernel function to map data into high-dimensional space. C denotes the penalty factor, and ξ denotes the relaxation factor. To maximize the separating margin, and minimize the training error, the objective function can be expressed as:

minJ=12ω2+Ci=1mξis.t.yi(ω·x+b)1-ξiξi0,i=1,2,,m (6)

The optimal solution (ω, b) about (ω, b) can be achieved using the Lagrange duality theorem and quadratic programming, thereby decision function can be calculated. αi is the Lagrange multiplier:

f(x)=sgni=1maiyiK(xi·x)+bs.t.0aiC (7)

Particularly, the kernel function K(xi, x) plays an important role in addressing nonlinear problems. The commonlyused functions include the linear kernel function, polynomial function, radial basis function (RBF) [26], and sigmoid kernel function. Of them, the linear kernel function is a special case of RBF. Compared with the polynomial kernel function, RBF has fewer parameters to be determined and was adopted in the current study:

K(xi,x)=exp(-γxi-x2) (8)

Proposed approach

In this study, IG was applied to make a preliminary gene selection. We used the InfoGainAttributeEval and Ranker evaluation tools of WEKA to complete this process. InfoGainAttributeEval evaluates genes relevant to clinical outcomes according to IG, and Ranker ranks individual genes on the basis of evaluation outcomes.

Considering the efficiency of filters, this study also used three other filter methods including gain ratio, reliefF, and correlation. Based on IG, the gain ratio algorithm is, frequently used in decision tree C4.5. ReliefF is a feature-weighting algorithm, which assigns different weights to features based on correlation. The correlation between every single gene and the class is usually measured using the Pearson correlation coefficient, with a higher value indicating a more important gene.

In order to choose genes with high classification value, we combined the high efficiency of filters and the excellent performance of wrappers. In addition to the application of IG, a further feature selection algorithm, SVM, was also employed. Meanwhile, gain ratio, reliefF, and correlation attribute evaluation combined with SVM were implemented, respectively, to select genes as well. The ultimately obtained informative genes served as the input data for the LIBSVM classifier to assess classification accuracy. Because of the small sample size of gene expression data, 10-fold cross-validation was utilized for the evaluation of the selected genes. Figure 1 illustrates the schematic diagram of the proposed method.

Figure 1.

Figure 1

Workflow of proposed approach

With two stages included in the process of selecting optimal gene, the hybrid method fully utilizes different algorithms to obtain fewer informative genes and achieve better classification accuracy.

Results and discussion

Experimental datasets

Five benchmark microarray datasets of two classes were evaluated in this study. Among the five datasets, three were obtained from normal or cancerous tissues, which include lung cancer, colon cancer, and prostate cancer. The dataset for the diffuse large B-cell lymphoma (DLBCL) was obtained from two different DLBCL subgroups, i.e., germinal center B-cell like subgroup and activated B-cell like subgroup. Similarly, the dataset for leukemia was obtained from acute myeloid leukemia (AML) and acute lymphoblastic leukemia (ALL) cases. All these datasets were downloaded from http://datam.i2r.a-star.edu.sg/datasets/krbd/. The detailed description is provided in Table 1.

Table 1.

Details of gene expression datasets examined

Dataset No. of classes No. of genes No. of samples Negative samples Positive samples
Lung cancer 2 7129 96 86 primary lung adenocarcinoma samples 10 non-neoplastic lung samples
DLBCL 2 4026 47 24 GCB subgroup cases 23 ABC subgroup cases
Colon cancer 2 2000 62 40 tumor biopsy samples 22 normal biopsy samples
Prostate cancer 2 12,600 102 52 prostate tumor samples 50 non-tumor prostate samples
Leukemia 2 7129 72 25 AML bone marrow samples 47 ALL bone marrow samples

Note: DLBCL, diffuse large B-cell lymphoma; GCB, germinal center B-like; ABC, activated B-cell like; AML, acute myelocytic leukemia. ALL, acute lymphoblastic leukemia.

Performance of genes selected by filter methods

First, the raw gene expression data in the five microarray datasets were normalized to zero mean and unit variance to account for the expression differences among genes. We then applied the filter methods, namely IG, gain ratio, reliefF, and correlation, for gene selection. The required number of genes selected cannot be determined using a common standard, but several hundred of genes are demonstrated to be sufficient to achieve high accuracy [18]. Therefore, different numbers of genes are selected for different filters with the number of genes ranging from 1 to 200. The LIBSVM classifier was used to evaluate the performance of the different numbers of selected genes.

As shown in Figure 2, patterns for accuracies achieved with the numbers of selected genes appear to be different among the five different datasets tested. The highest accuracy for the five datasets differed. However, the overall trend was similar, indicating that the highest classification accuracy was commonly achieved using less than 50 genes. For instance, 3 genes were sufficient to reach a classification accuracy of 100% for lung cancer dataset, whereas the 100% of classification accuracy was achieved for the DLBCL dataset using 30 genes. The accuracies were maintained at a high level even when the gene number increased. For colon cancer, high performance was realized with no more than 10 genes, although a transient reduction in accuracy was found when the gene number was approximately 20.

Figure 2.

Figure 2

Cancer classification performance using different filtersClassification accuracies plotted according to the number of genes selected using different filters, including information gain, gain ratio, reliefF, and correlation, are shown for lung cancer (A), DLBCL (B), colon cancer (C), prostate cancer (D), and leukemia (E), respectively. DLBCL, diffuse large B-cell lymphoma.

Significant increases in the highest accuracy are not found with more than 50 genes selected, suggesting that considerable noise was present in the cancer datasets. Furthermore, slight and frequent fluctuations in accuracies were observed, owing to the presence of remaining redundant genes, and thus, further gene selection was required to obtain fewer significant genes.

Performance of informative genes selected by hybrid methods

We next employed the wrapper method SVM to obtain informative genes. In addition, a 10-fold cross-validation of the LIBSVM classifier was adopted to evaluate the classification ability of the selected informative genes.

Considering that a small number of genes are sufficient to achieve high accuracy, 150 genes selected by the four types of filters were used as the input data for SVM. Since the top-ranked genes were more closely related to cancer classification, finally, the top 3 genes were selected for further cancer classification, using as few genes as possible.

Table 2 shows the classification accuracy of the four hybrid methods, i.e., IG-SVM, gain ratio (GR)-SVM, reliefF-SVM, and correlation (Cor)-SVM. High accuracies were achieved using 3 genes only. The proposed method, IG-SVM, consistently performed better than the other hybrid methods. For instance, a classification accuracy of 100% was achieved for lung cancer and DLBCL using IG-SVM. Furthermore, both IG-SVM and Cor-SVM achieved 100% accuracy for the DLBCL dataset. Unlike that for lung cancer and DLBCL, the classification accuracy for colon cancer was relatively low, which was 90.32% for IG-SVM. Nonetheless the classification accuracy achieved in this study for colon cancer was still higher than that reported in another study (83.87%), which used the same number of selected genes by singular value decomposition and IG [18]. Since default settings were used for various tools, the possibility to achieve high accuracy with altered settings and selections can’t be ruled out.

Table 2.

Cancer classification accuracies (%) obtained based on the top 3 genes selected using hybrid methods

Dataset IG-SVM GR-SVM ReliefF-SVM Cor-SVM
Lung cancer 100 98.96 98.96 98.96
DLBCL 100 97.87 95.74 100
Colon cancer 90.32 85.48 87.10 87.10
Prostate cancer 96.08 93.14 91.18 93.14
Leukemia 98.61 94.44 97.22 97.22

Note: Numbers in bold represent the highest accuracies achieved for the hybrid gene selection methods tested. DLBCL, diffuse large B-cell lymphoma; IG, information gain; GR, gain ratio; Cor, correlation; SVM, support vector machine.

Mao et al. [27] analyzed the same prostate cancer dataset and reported a mean classification accuracy of 95.10% by adopting randomization test (RT) as a gene selection method, which is lower than the accuracy achieved using IG-SVM in this study (96.08%). Using the aforementioned method, they obtained classification accuracies of 97.06% and 91.18% for the training and test sets for prostate cancer, respectively. As for the same leukemia dataset, the accuracies of 97.37% and 94.12% were reported for the training and test sets, respectively, using RT [27], which were below the accuracy we obtained for the entire dataset (98.61%).

Disease association of selected informative genes

The important attributes derived from the microarray datasets are largely determined by the gene selection methods. In this study, the three datasets obtained from cancerous tissues with normal tissues as controls were further analyzed, including lung cancer, colon cancer, and prostate cancer datasets. The informative genes selected by the proposed IG-SVM method and their detailed description are listed in Table 3.

Table 3.

Informative genes selected using IG-SVM

Dataset Selected genes Probe set IG value Annotated gene Annotation
Lung cancer F2968 M61906_at 0.377 PIK3R1 Phosphoinositide-3-kinase regulatory subunit 1
F4530 U45973_at 0.322 INPP5K Inositol polyphosphate-5-phosphatase K
F5983 X61118_rna1_at 0.292 LMO2 LIM domain only 2



Colon cancer F765 M76378_at 0.356 CSRP1 Cysteine and glycine rich protein 1
F1423 0.315 MYL9 Myosin light chain 9
F377 0.229 GUCA2B Guanylate cyclase activator 2B



Prostate cancer F6185 37639_at 0.675 HPN Hepsin
F7067 40436_g_at 0.366 SLC25A6 Solute carrier family 25 member 6
F10234 41504_s_at 0.238 MAF MAF bZIP transcription factor

Note: IG value of each gene in a dataset was calculated as described in the Methods section. All genes are ranked according to the IG values and the three selected informative genes are obtained using SVM.

In the lung cancer dataset, the top 3 genes selected are PIK3R1, INPP5K, and LMO2. LMO2, which encodes a LIM domain transcription regulator, is a proto-oncogene, and increased LMO expression has been reported in human lung tumors [28]. Similarly, PIK3R1, which encodes regulatory subunit 1 of phosphoinositide 3-kinase (PI3K) complex, has also been suggested as a lung cancer oncogene [29]. In a recent study, Deng and colleagues analyzed genomic variation in lung adenocarcinoma patients and found several PI3K family components including PIK3R1 among the highly recurrent mutated genes, suggesting a critical role of PI3K signaling in the lung adenocarcinoma [30]. Notably, INPP5K, which encodes inositol polyphosphate-5-phosphatase K (also known as skeletal muscle and kidney enriched inositol phosphatase), was also selected in our study. INPP5K can hydrolyze PI(3,4,5)P3 generated by PI3 kinase to negatively regulate PI3K signaling [31]. Recent studies also identified INPP5K mutations in individuals exhibiting congenital muscular dystrophy [32], [33] or congenital cataract [34]. Although involvement of INPP5K in cancer progression has not been reported, INPP5K is located in a commonly deleted chromosomal region at 17p13.3 in various tumors [35]. In addition, a strong and significant reduction in INPP5K expression had been reported in a rat primary cell culture for endometrial carcinoma compared to the non-malignant endometrium [35]. These findings suggest that INPP5K could be a new tumor suppressor gene, which warrants further investigation.

CSRP1, MYL9, and GUCA2B were selected from the colon cancer dataset. CSRP1 encodes a member of the cysteine-rich protein (CSRP) family, which may serve as an important biomarker of malignancy. CSRP1 is inactivated in hepatocellular carcinoma [36], whereas MYL9, which encodes myosin light chain 9, shows prognostic significance in esophageal squamous cell carcinoma [37]. The third gene GUCA2B encodes guanylate cyclase activator 2B (also known as uroguanylin). Binding of uroguanylin to the receptor guanylate cyclase 2C may regulate salt and water homeostasis in the intestine and kidney [38]. It was observed that GUCA2B was significantly down-regulated in inflamed colonic mucosa of patients with inflammatory bowel disease (IBD) [39]. However, there is no direct evidence showing that these genes are associated with colon cancer. Therefore, their roles in colon cancer should be further investigated.

The three genes selected from the prostate dataset include HPN, SLC25A6, and MAF. HPN, which encodes the cell surface serine protease hepsin, is one of the most consistently overexpressed genes for prostate cancer, and hepsin protein expression is associated with the growth and progression of cancers, particularly prostate cancer [40]. In addition, some polymorphisms in the HPN gene might also be associated with the risk of developing prostate cancer [41]. The protein encoded by SLC25A6 is a member of the mitochondrial ADP/ATP carrier subfamily of solute carrier protein genes. SLC25 family proteins play a role in cancer due to their decisive effect in the programmed cell death [42]. However, whether SLC25A6 is related to prostate cancer still needs to be explored. The third gene MAF encodes a transcription factor. Defects in MAF can cause juvenile-onset pulverulent cataract as well as congenital cerulean cataract [43]. MAF is also a mediator of breast cancer bone metastasis [44]. Given the ubiquitous MAF expression in kidney, further studies are needed to investigate the relationship between MAF and prostate cancer. In short, there are several lines of evidence supporting that these genes may play important roles in cancer regulatory network, although their involvement in specific cancer types should be further examined.

Conclusion

In this study, we proposed a hybrid method, IG-SVM to select informative genes for cancer classification. IG is a filter method that can efficiently eliminate numerous irrelevant features in high-dimensional gene expression data. The wrapper SVM method was used to further eliminate redundant genes based on 150 genes selected by filters. We finally obtained 3 informative genes, which served as the input for the LIBSVM classifier. By employing the tools for five gene expression datasets, we demonstrated better performance of the IG-SVM approach for cancer classification.

In summary, our study confirms that a few informative genes are sufficient to accomplish the accurate classification of tumor samples. Some of these selected informative genes have been shown to be associated with various cancers, whereas more evidence is needed for other genes selected, which may provide clues to functional studies and potential biomarker discovery. Given the small size of the datasets tested, the method proposed in this study need to be further validated in larger datasets.

Authors' contributions

LG implemented the hybrid method and drafted the manuscript. MY participated in study design and coordination. XL and DH were involved in revising the manuscript. All authors read and approved the final manuscript.

Competing interests

The authors declare that there are no potential conflicts of interest.

Acknowledgments

This study was supported by the National Natural Science Foundation of China (Grant No. 61672386), Humanities and Social Sciences Planning Project of Ministry of Education, China (Grant No. 16YJAZH071), Anhui Provincial Natural Science Foundation of China (Grant No. 1708085MF142), and the Natural Science Research Key Project of Anhui Colleges, China (Grant No. KJ2014A266).The authors would like to acknowledge excellent scientists who provided the public resources used in this study. The authors would also like to thank the reviewers for their insightful comments.

Handled by Edwin Wang

Footnotes

Peer review under responsibility of Beijing Institute of Genomics, Chinese Academy of Sciences and Genetics Society of China.

References

  • 1.Yilmaz A., Malya F., Ozturk G., Citgez B., Ozdenkaya Y., Ersavas C. Effect of pre-operative red blood cell distribution on cancer stage and morbidity rate in patients with pancreatic cancer. Int J Clin Exp Med. 2014;7:3072–3075. [PMC free article] [PubMed] [Google Scholar]
  • 2.Heller M.J. DNA microarray technology: devices, systems, and applications. Annu Rev Biomed Eng. 2002;4:129–153. doi: 10.1146/annurev.bioeng.4.020702.153438. [DOI] [PubMed] [Google Scholar]
  • 3.Yu L., Liu H. Efficient feature selection via analysis of relevance and redundancy. J Mach Learn Res. 2004;5:1205–1224. [Google Scholar]
  • 4.Nguyen T., Khosravi A., Creighton D., Nahavandi S. A novel aggregate gene selection method for microarray data classification. Pattern Recogn Lett. 2015;60–61:16–23. [Google Scholar]
  • 5.Wang Y., Makedon F.S., Ford J.C., Pearlman J. HykGene: a hybrid approach for selecting marker genes for phenotype classification using microarray gene expression data. Bioinformatics. 2005;21:1530–1537. doi: 10.1093/bioinformatics/bti192. [DOI] [PubMed] [Google Scholar]
  • 6.Latkowski T., Osowski S. Data mining for feature selection in gene expression autism data. Expert Syst Appl. 2015;42:864–872. [Google Scholar]
  • 7.Golub T.R., Slonim D.K., Tamayo P., Huard C., Gaasenbeek M., Mesirov J.P. Molecular classification of cancer: class discovery and class prediction by gene expression monitoring. Science. 1999;286:531–537. doi: 10.1126/science.286.5439.531. [DOI] [PubMed] [Google Scholar]
  • 8.Li L., Darden T.A., Weinberg C.R., Levine A.J., Pedersen L.G. Gene assessment and sample classification for gene expression data using a genetic algorithm/k-nearest neighbor method. Comb Chem High Throughput Screen. 2001;4:727–739. doi: 10.2174/1386207013330733. [DOI] [PubMed] [Google Scholar]
  • 9.Chen K.H., Wang K.J., Tsai M.L., Wang K.M., Adrian A.M., Cheng W.C. Gene selection for cancer identification: a decision tree model empowered by particle swarm optimization algorithm. BMC Bioinformatics. 2014;15:49–58. doi: 10.1186/1471-2105-15-49. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 10.Li Y., Ray D., Ye P. Identification of germ cell-specific genes in mammalian meiotic prophase. BMC Bioinformatics. 2013;14:72–84. doi: 10.1186/1471-2105-14-72. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 11.Inza I., Larrañaga P., Blanco R., Cerrolaza A.J. Filter versus wrapper gene selection approaches in DNA microarray domains. Artif Intell Med. 2004;31:91–103. doi: 10.1016/j.artmed.2004.01.007. [DOI] [PubMed] [Google Scholar]
  • 12.Li S., Wu X., Tan M. Gene selection using hybrid particle swarm optimization and genetic algorithm. Soft Comput. 2008;12:1039–1048. [Google Scholar]
  • 13.Akadi A.E., Amine A., Ouardighi A.E., Aboutajdine D. A two-stage gene selection scheme utilizing MRMR filter and GA wrapper. Knowl Inf Syst. 2011;26:487–500. [Google Scholar]
  • 14.Abdel S.N.M., Solouma N.H., Kadah Y.M. Detection of biomarkers for hepatocellular carcinoma using a hybrid univariate gene selection methods. Theor Biol Med Model. 2012;9:34–50. doi: 10.1186/1742-4682-9-34. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 15.Sharbaf F.V., Mosafer S., Moattar M.H. A hybrid gene selection approach for microarray data classification using cellular learning automata and ant colony optimization. Genomics. 2016;107:231–238. doi: 10.1016/j.ygeno.2016.05.001. [DOI] [PubMed] [Google Scholar]
  • 16.Elyasigomari V., Lee D.A., Screen H.R.C., Shaheed M.H. Development of a two-stage gene selection method that incorporates a novel hybrid approach using the cuckoo optimization algorithm and harmony search for cancer classification. J Biomed Inform. 2017;67:11–20. doi: 10.1016/j.jbi.2017.01.016. [DOI] [PubMed] [Google Scholar]
  • 17.Cortes C., Vapnik V. Support-vector networks. Mach Learn. 1995;20:273–297. [Google Scholar]
  • 18.Vural H., Subasi A. Data-mining techniques to classify microarray gene expression data using gene selection by SVD and information gain. Model Artificial Intel. 2015;6:171–182. [Google Scholar]
  • 19.Li J., Wang Y., Cao Y., Xu C. Weighted doubly regularized support vector machine and its application to microarray classification with noise. Neurocomputing. 2015;173:595–605. [Google Scholar]
  • 20.Chan W.H., Mohamad M.S., Deris S., Corchado J.M., Omatu S., Ibrahim Z. An improved gSVM-SCADL2 with firefly algorithm for identification of informative genes and pathways. Int J Bioinform Res Appl. 2016;12:72–93. [Google Scholar]
  • 21.Li L., Jiang W., Li X., Moser K.L., Guo Z., Du L. A robust hybrid between genetic algorithm and support vector machine for extracting an optimal feature gene subset. Genomics. 2005;85:16–23. doi: 10.1016/j.ygeno.2004.09.007. [DOI] [PubMed] [Google Scholar]
  • 22.Vanitha C.D.A., Devaraj D., Venkatesulu M. Gene expression data classification using support vector machine and mutual information-based gene selection. Proc Comp Sci. 2015;47:13–21. [Google Scholar]
  • 23.Lai C.M., Yeh W.C., Chang C.Y. Gene selection using information gain and improved simplified swarm optimization. Neurocomputing. 2016;218:331–338. [Google Scholar]
  • 24.Cook R.D., Weisberg S. Information gain and a general measure of correlation. Biometrika. 1983;70:163–173. [Google Scholar]
  • 25.Furey T.S., Cristianini N., Duffy N., Bednarski D.W., Schummer M., Haussler D. Support vector machine classification and validation of cancer tissue samples using microarray expression data. Bioinformatics. 2000;16:906–914. doi: 10.1093/bioinformatics/16.10.906. [DOI] [PubMed] [Google Scholar]
  • 26.Chandrashekar G., Sahin F. A survey on feature selection methods. Comput Electr Eng. 2014;40:16–28. [Google Scholar]
  • 27.Mao Z., Cai W., Shao X. Selecting significant genes by randomization test for cancer classification using gene expression data. J Biomed Inform. 2013;39:594–601. doi: 10.1016/j.jbi.2013.03.009. [DOI] [PubMed] [Google Scholar]
  • 28.Yamada Y., Pannell R., Forster A. RabbittsTHH. The LIM-domain protein Lmo2 is a key regulator of tumour angiogenesis: a new anti-angiogenesis drug target. Oncogene. 2002;21:1309–1315. doi: 10.1038/sj.onc.1205285. [DOI] [PubMed] [Google Scholar]
  • 29.Wang Y., Mei Q., Ai Y.Q., Li R.Q., Chang L., Li Y.F. Identification of lung cancer oncogenes based on the mRNA expression and single nucleotide polymorphism profile data. Neoplasma. 2015;62:966–973. doi: 10.4149/neo_2015_117. [DOI] [PubMed] [Google Scholar]
  • 30.Deng Z.M., Liu L., Qiu W.H., Zhang Y.Q., Zhong H.Y., Liao P. Analysis of genomic variation in lung adenocarcinoma patients revealed the critical role of PI3K complex. Peer J. 2017;5:e3216. doi: 10.7717/peerj.3216. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 31.Ijuin T., Takenawa T. SKIP negatively regulates insulin-induced GLUT4 translocation and membrane ruffle formation. Mol Cell Biol. 2003;23:1209–1220. doi: 10.1128/MCB.23.4.1209-1220.2003. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 32.Osborn D.P.S., Pond H.L., Mazaheri N., Dejardin J., Munn C.J., Mushref K. Mutations in INPP5K cause a form of congenital muscular dystrophy overlapping Marinesco-Sjögren syndrome and dystroglycanopathy. Am J Hum Genet. 2017;100:537–545. doi: 10.1016/j.ajhg.2017.01.019. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 33.Wiessner M., Roos A., Munn C.J., Viswanathan R., Whyte T., Cox D. Mutation in INPP5K, encoding a phosphoinositide 5-phosphatase, cause congenital muscular dystrophy with cataracts and mild cognitive impairment. Am J Hum Genet. 2017;100:523–536. doi: 10.1016/j.ajhg.2017.01.024. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 34.Yousaf S., Sheikh S.A., Riazuddin S., Waryah A.M., Ahmed Z.M. INPP5K variant causes autosomal recessive congenital cataract in a Pakistani family. Clin Genet. 2017 doi: 10.1111/cge.13143. [DOI] [PubMed] [Google Scholar]
  • 35.Oldfors C.H., Dios D.G., Linder A., Visuttijai K., Samuelson E., Karlsson S. Analysis of an independent tumor suppressor locus telomeric to Tp53 suggested Inpp5k and Myo1c as novel tumor suppressor gene candidates in this region. BMC Genetics. 2015;16:80–92. doi: 10.1186/s12863-015-0238-4. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 36.Hirasawa Y., Arai M., Imazeki F., Tada M., Mikata R., Fukai K. Methylation status of genes upregulated by demethylating agent 5-aza-2'-deoxycytidine in hepatocellular carcinoma. Oncology. 2006;71:77–85. doi: 10.1159/000100475. [DOI] [PubMed] [Google Scholar]
  • 37.Wang J.H., Zhang L., Huang S.T., Xu J., Zhou Y., Yu X.J. Expression and prognostic significance of MYL9 in esophageal squamous cell carcinoma. PLoS One. 2017;12:1–13. doi: 10.1371/journal.pone.0175280. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 38.Maake C., Auf der Maur F., Jovanovic K., Reinecke M., Hauri D., John H. Occurrence and localization of uroguanylin in the aging human prostate. Histochem Cell Biol. 2003;119:69–76. doi: 10.1007/s00418-002-0490-3. [DOI] [PubMed] [Google Scholar]
  • 39.Brenna Ø., Bruland T., Furnes M.W., Granlund A.V., Drozdov I., Emgård J. The guanylate cyclase-C signaling pathway is down-regulated in inflammatory bowel disease. Scand J Gastroenterol. 2015;50:1241–1252. doi: 10.3109/00365521.2015.1038849. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 40.Holt S.K., Kwon E.M., Lin D.W., Ostrander E.A., Stanford J.L. Association of hepsin gene variants with prostate cancer risk and prognosis. Prostate. 2010;70:1012–1019. doi: 10.1002/pros.21135. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 41.Kim H.J., Han J.H., Chang I.H., Kim W., Myung S.C. Variants in the HEPSIN gene are associated with susceptibility to prostate cancer. Prostate Cancer Prostatic Dis. 2012;15:353–358. doi: 10.1038/pcan.2012.17. [DOI] [PubMed] [Google Scholar]
  • 42.Clémençon B., Babot M. TrézéguetV. The motochindrial ADP/ATP carrier (SLC25 family): pathological implications of its dysfunction. Mol Aspects Med. 2013;34:485–493. doi: 10.1016/j.mam.2012.05.006. [DOI] [PubMed] [Google Scholar]
  • 43.Javadiyan S., Craig J.E., Sharma S., Lower K.M., Casey T., Haan E. Novel missense mutation in the bZIP transcription factor, MAF, associated with congenital cataract, developmental delay, seizures and hearing loss (Aymé-Gripp syndrome) BMC Med Genet. 2017;18:52–57. doi: 10.1186/s12881-017-0414-7. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 44.Pavlovic M., Arnal-Estapé A., Rojo F., Bellmunt A., Tarragona M., Guiu M. Enhanced MAF oncogene expression and breast cancer bone metastasis. J Natl Cancer Inst. 2015;107:1–12. doi: 10.1093/jnci/djv256. [DOI] [PMC free article] [PubMed] [Google Scholar]

Articles from Genomics, Proteomics & Bioinformatics are provided here courtesy of Oxford University Press

RESOURCES