Skip to main content
  • Research article
  • Open access
  • Published:

Identification of disease-causing genes using microarray data mining and Gene Ontology

Abstract

Background

One of the best and most accurate methods for identifying disease-causing genes is monitoring gene expression values in different samples using microarray technology. One of the shortcomings of microarray data is that they provide a small quantity of samples with respect to the number of genes. This problem reduces the classification accuracy of the methods, so gene selection is essential to improve the predictive accuracy and to identify potential marker genes for a disease. Among numerous existing methods for gene selection, support vector machine-based recursive feature elimination (SVMRFE) has become one of the leading methods, but its performance can be reduced because of the small sample size, noisy data and the fact that the method does not remove redundant genes.

Methods

We propose a novel framework for gene selection which uses the advantageous features of conventional methods and addresses their weaknesses. In fact, we have combined the Fisher method and SVMRFE to utilize the advantages of a filtering method as well as an embedded method. Furthermore, we have added a redundancy reduction stage to address the weakness of the Fisher method and SVMRFE. In addition to gene expression values, the proposed method uses Gene Ontology which is a reliable source of information on genes. The use of Gene Ontology can compensate, in part, for the limitations of microarrays, such as having a small number of samples and erroneous measurement results.

Results

The proposed method has been applied to colon, Diffuse Large B-Cell Lymphoma (DLBCL) and prostate cancer datasets. The empirical results show that our method has improved classification performance in terms of accuracy, sensitivity and specificity. In addition, the study of the molecular function of selected genes strengthened the hypothesis that these genes are involved in the process of cancer growth.

Conclusions

The proposed method addresses the weakness of conventional methods by adding a redundancy reduction stage and utilizing Gene Ontology information. It predicts marker genes for colon, DLBCL and prostate cancer with a high accuracy. The predictions made in this study can serve as a list of candidates for subsequent wet-lab verification and might help in the search for a cure for cancers.

Peer Review reports

Background

One of the most important areas of medical research is the identification of disease-causing genes. Identification of these factors can improve the process of diagnosis and the treatment of diseases. It is known that certain diseases, such as cancer, are reflected in the change of the expression values of certain genes. For example, normal cells may become cancerous due to genetic mutations. These changes affect the expression level of genes. Gene expression is the process of transcribing a gene's DNA sequence into RNA. A gene's expression level indicates the approximate number of copies of that gene's RNA produced in a cell and it is correlated with the amount of the corresponding proteins made [1].

The recent advent of microarray technology has made simultaneous monitoring of thousands of gene expressions possible. Analyzing gene expression data can indicate the genes which are differentially expressed in the diseased tissues [2]. The main problem of microarray data is its limited number of samples with respect to number of genes. Many of these genes have no role in creation of the disease of interest; therefore identification of disease-causing genes can determine not only the cause of the disease, but also its pathogenic mechanism. Diagnostic tests and classification of patients can be done by using marker genes, which will reduce laboratory costs and increase the accuracy. Identification and selection of a subset of genes as disease-causing genes is called gene selection.

Different methods have been proposed in the literature for gene selection. They can be organized in three categories: filter methods, wrapper methods and embedded methods [3]. Filter methods evaluate the goodness of the genes looking only at the intrinsic characteristics of the data, based on the relation of each single gene with the class label by the calculation of simple statistical criteria [4]. Some of the methods are parametric and some are nonparametric. Parametric methods have strict assumptions on the analyzed data, including: normal distribution, homogeneous variances between data groups and continuous measures with equal intervals. Non-parametric methods do not require above assumptions, so they are computationally easier and quicker but statistically less powerful [5].

There is a large variety of parametric methods such as Signal to Noise Ratio (SNR) [6] and Fisher [7]. More recently a novel filter method called SDED (Standard Deviation Error Distribution) is proposed which utilizes variations within class and amongst-class in gene expression data [8]. Wilcoxon rank sum test is an example of non-parametric filter methods [9]. Filter methods are fast and simple but they do not consider the correlation of genes and lead to redundancy in the selected gene sets.

In the 'wrapper' approach a search is conducted in the space of genes, evaluating the goodness of each found gene subset by the estimation of the accuracy of the specific classifier to be used, training the classifier only with the found genes [4]. In [4] forward selection is used for gene selection and in [10, 11] a genetic algorithm is used to find informative genes. Martinez and co-workers have proposed a swarm intelligence feature selection algorithm based on the initialization and update of only a subset of particles in the swarm [12]. In [13] a hybrid Particle Swarm Optimization (PSO) and Genetic Algorithm (GA) method is used for gene selection. Wrapper methods consider the correlation of genes but they have high computational complexity.

In the embedded methods, the search for an optimal subset of features is built into the classifier construction, and can be seen as a search in the combined space of feature subsets and hypotheses [3]. Guyon et al. [14] proposed an SVM-based learning method, called SVM recursive feature elimination (SVMRFE). In [15] metaheuristic-based methods are used within an embedded approach for gene selection and in [16] random forests method is used for feature selection.

Embedded methods have the advantage that they include the interaction with the classification model, while at the same time being far less computationally intensive than wrapper methods.

Most of the gene selection methods remove irrelevant genes but they do not take the redundancy into account. Redundancy in selected genes increase computational costs and decrease the classification accuracy. Some methods are proposed for redundancy reduction in selected genes. In [17, 18] clustering methods are used for determining similar genes and reducing redundancy. In [19] a method called Markov blanket is used for redundancy reduction. Ding and Peng [20] proposed a method called MRMR (Minimum Redundancy Maximum Relevance) which finds a subset of genes which has minimum redundancy and maximum relevance to class, simultaneously.

In [21] a combination of MRMR method and SVMRFE is used for gene selection which takes into account the redundancy among the genes during their selection; also [22] presents a hybrid filter-wrapper feature subset selection algorithm based on particle swarm optimization (PSO) and MRMR.

In this paper, we propose a new framework for gene selection which combines the Fisher filter and the SVMRFE embedded method, with a greedy algorithm to remove the redundant genes.

The microarray data contains valuable information but due to the presence of the noise in the data and the low number of samples, it mostly does not demonstrate the actual genes functionally. This limitation of microarray data can be compensated for, at least to some extent, by using other source of information about genes. In this paper Gene Ontology information is used in addition to gene expression data to determine gene redundancy.

Methods

Feature selection using Fisher criteria

In [7], the Fisher criterion score is used for gene selection. It is a filtering method, in which genes are ranked by the equation below:

F i s h e r ( g ) = ( m 1 ( g ) − m 2 ( g ) ) 2 ( s 1 2 ( g ) + s 2 2 ( g ) )
(1)

where m 1 (g) and m 2 (g) are means of gene g expression across the cancerous and normal samples respectively and s 1 (g) and s 2 (g) are standard deviations of gene g across the cancerous and normal samples respectively. The Fisher criterion score gives higher values to features whose means differ greatly between the two classes, relative to their variances. Those genes with the highest scores are considered as the most discriminatory genes.

Feature selection using SVMRFE algorithm

SVMRFE implements the strategy of backward feature elimination. Backward feature elimination methods start with all features and then, on each iteration, the least important feature is identified and removed according to a ranking criterion and the process repeats with remaining features, until the stop criterion is satisfied.

In SVMRFE the ranking criterion is (W i ) 2 , where W i is the corresponding weight of feature i. It iteratively trains new SVM and eliminates the features whose corresponding absolute weight is the smallest from the dataset.

Support Vector Machine (SVM), a supervised machine learning technique, is robust against sparse and noisy data and has been shown to perform well in multiple areas of biological analysis including microarray data expression evaluation [23].

Given a training set belonging to two classes, a linear SVM finds an optimal separating hyper plane with the maximum margin between samples of two classes, by solving the following optimization problem:

M i n 1 2 W T W s u b j e c t t o : y i ( W . X i + b ) − 1 ≥ 0
(2)

where X i and y i are ith sample and its label.

This optimization problem can be solved by below Lagrangian function:

L ( W , b , α ) = 1 2 W ⋅ W − ∑ i = 1 S α i ( y i ( W ⋅ X i + b ) − 1 )
(3)

In above equation, s shows the number of training samples and α i denotes Lagrange multipliers.

B y differentiating L with respect to W and b, the following equations are obtained:

W = ∑ i = 1 S α i y i X i
(4)
∑ i = 1 S y i α i = 0
(5)

The weight vector W is a linear combination of the training samples. Most weights α i are zero. The training samples with non-zero weights are the support vectors [24].

SVMRFE uses the weight vector of SVM as ranking criteria. The pseudo code of the SVMRFE algorithm is as follows [14]:

  1. 1.

    Initialize the dataset to contain all the features.

  2. 2.

    Train the SVM with a linear kernel function on the dataset and get the weight vector

  3. 3.

    Rank the features by the values of.

  4. 4.

    Remove the feature with the smallest value.

  5. 5.

    If more than one feature remains, return to step 2.

Finally the subset of genes which has achieved the highest accuracy of classification is selected as disease's marker genes [14].

It should be mentioned that although in SVMRFE, one gene is removed in each step, the interaction between genes is considered. The weak point of this method is its large amount of computation. To speed up the algorithm, more than one gene can be removed in each step [25].

Gene Ontology

The Gene Ontology (GO) project is a collaborative effort to address the need for consistent descriptions of gene products in different databases. GO provides a structured controlled vocabulary of gene and protein biological roles, which can be applied to different species. It comprises three hierarchies that define functional attributes of gene products: Molecular Function (MF), Biological Process (BP), and Cellular Component (CC) [26]. The Gene Ontology information can be obtained from [27].

Semantic similarity measure

Semantic similarity measures can be used to calculate the similarity of two concepts organized in ontology. The semantic similarity of two concepts is calculated based on their information content (IC). The information content of a concept is inversely proportional to its frequency in a corpus. The frequency of a concept c , Freq (c), can be defined as the number of times that c and all its descendants occur [28]. An estimate for the likelihood of observing an instance of a concept c is:

P r o b ( c ) = F r e q ( c ) m a x F r e q
(6)

where maxFreq is the maximum frequency of all concepts.

The information content of a concept c is defined as (7):

I C = − l o g ( P r o b ( c ) )
(7)

Semantic similarity measures assume that the similarity between two concepts is related to the extent to which they share information. Given two concepts c 1 and c 2 , their shared information, Share (c 1 , c 2 ), can be defined as the information content of their most informative common ancestor (CommonAnc(c 1 ,c 2 )) [28]:

S h a r e ( c 1 , c 2 ) = m a x { I C ( a ) | a ∈ C o m m o n A n c ( c 1 , c 2 ) }
(8)

The most common semantic similarity measures are Resnik [29],Lin [30] and Jiang [31].

Results and Discussion

Proposed method

As mentioned previously, filtering methods are amongst the most common methods for gene selection. These methods have low computational complexity and so can be used easily in large, high dimensional datasets such as microarrays; but these methods evaluate the discriminative power of each gene separately and the interaction of genes are ignored. Also these methods do not take into account the correlation among genes and so the selected gene set may have redundancy. SVMRFE is one of the most successful gene selection methods because it considers the interaction of genes and it can remove irrelevant feature using its ranking criterion. However it is not able to remove redundant features because if one of the features has a large weight, the redundant feature will also get a large weight, but according to recursive feature elimination algorithm, only the features with small weight are removed; therefore the final gene set may have redundancy [32, 33].

In this paper we have proposed a combined approach which utilizes the advantages of the filter and embedded methods and which incorporates a method for reducing redundancy in the selected genes. The stages of proposed method are:

  1. 1.

    Ranking genes using the Fisher criterion;

  2. 2.

    Redundancy reduction by considering expression and semantic similarity;

  3. 3.

    Selection of final gene set using SVMRFE method.

Redundancy reduction by considering expression and semantic similarity

Redundant genes increase the computational time and decrease the accuracy; so in the proposed method, after filtering genes using the Fisher criterion and before applying the SVMRFE method, we reduce redundancy by considering the similarity of the genes. When there are sufficient samples, similar genes can be determined based on Pearson correlation coefficient which considers the linear correlation and is computed based on gene expression levels. Due to the low number of samples in microarray experiments, computing the similarity of two genes based only on their expression value cannot be very accurate. On the other hand, the similarity of genes can be determined from information about their involvement in biological processes and functions. There is some such information available in the Gene Ontology (GO) but it is incomplete, e.g., information for some genes is missing from GO. Therefore GO alone cannot be used to determine the similarity of genes.

In the proposed approach, gene expression values and information from GO are combined to determine the similarity of genes. The similarity measure used is the average of the expression similarity and the semantic similarity:

S ( g i , g j ) = S e x p ( g i , g j ) + S s e m ( g i , g j ) 2
(9)

where S sem (g i , g j ) and S exp (g i , g j ) are the semantic similarity and the expression similarity of g i and g j , respectively. The expression similarity of two genes is computed based on the Pearson correlation coefficient:

S e x p ( g i , g j ) = ∑ k = 1 d ( g i k − g ¯ i ) . ( g j k − g ¯ j ) ( g i k − g ¯ i ) 2 . ( g j k − g ¯ j ) 2
(10)

where g ¯ i is the average value of gene g i expressions and g ik is the value of kth sample in gene g i .

The semantic similarity of two genes is computed based on Lin's similarity criteria [30], which is defined as below:

S i m L i n = 2 * S h a r e ( c 1 , c 2 ) I C ( c 1 ) + I C ( c 2 )
(11)

In the proposed method, a greedy approach has been used in the second stage, to reduce redundancy by removing similar genes, which utilizes (9) as similarity measure.

The greedy algorithm takes as input, from first stage, a list of 500 genes sorted in ascending order of discriminative power. By selecting the first gene of this list, we can ignore other similar genes, because they have less discriminatory power. Genes whose similarity measure to the first gene exceeds a threshold are removed from the list. Next the second gene in the list is selected and again similar genes to it are deleted from the list. This process will be repeated to the end of the list. The remaining genes in this stage are those that have good discriminatory power and their pairwise similarities are below a determined threshold. The greedy approach's pseudo code is shown below:

Inputs:

List of ranked genes: L = [g 1 ,g 2 , ..., g k ]

Threshold: ts

Similarity matrix: S

Initialize:

RL = []

i = 1

Repeat until L = []

% Select the top ranked genes from L

% and add it to RL

RL = [RL, L(i)]

g = L(i)

% eliminate the ith feature from L

L(:,i)=[]

For j = (i+1):length(L)

If s(g,L(j))≥ ts

L(:,j) =[]

End

i = i+1

outputs: Reduced list of genes: RL

The threshold is a number between 0 and 1. The smaller the threshold, the more genes will be removed but this can lead to losing some informative genes. On the other hand, when threshold is close to 1, few genes are removed which can lead to some redundant genes remaining. To determine an appropriate threshold we varied the threshold value between 0.1 and 0.95 at intervals of 0.05. The best threshold value is the one which leads to highest accuracy on average. Applying this empirical approach to the datasets, resulted in the threshold being set to 0.8.

Datasets

In order to evaluate the proposed gene selection method, following datasets are analyzed.

Colon cancer dataset

In this dataset, expression levels of 40 tumor and 22 normal colon tissues for 6,500 human genes are measured using the Affymetrix technology. A selection of 2,000 genes with highest minimal intensity across the samples has been made in [34]. The dataset we have used is available at [35]. The data is preprocessed by carrying out a base 10 logarithmic transformation and standardizing each sample to zero mean and unit variance.

DLBCL dataset

Diffuse Large B-Cell Lymphoma (DLBCL) is the most common subtype of non-Hodgkin's lymphoma. Alizadeh et.al have shown that there is diversity in gene expression among the tumors of DLBCL patients, reflecting differentiation state of the tumor [36]. The dataset we have used in this paper is available at [37]. This dataset consists of 40 samples that have information about overall survival, and each sample has expression profile of 4026 genes. By setting threshold value of overall survival at 4 years, data of prognosis can be categorized into two groups. 19 samples were alive after 4 years and 21 of them lived shorter.

The ratio values in the dataset were log -transformed so there is no need to carry out logarithmic transformation, but this dataset has missing value. We have imputed the missing values by FCM-GO-impute method [38]; also all the sample vectors in the dataset are normalized in order to have the zero mean and standard deviation of one.

Prostate dataset

The prostate dataset was first published in [39]. This dataset was created using Affymetrix platform and provides the expression levels of 12,600 genes for 50 normal tissues and 52 prostate cancer tissues. The dataset is available at [40]. The original dataset is normalized so that each sample vector has 0 for mean and 1 for standard deviation.

Experimental results

After preprocessing of data, we applied the proposed method on 3 public datasets to identify the most discriminatory genes; also we compared the proposed method with some other common methods. In order to be able to compare the results, in all gene selection methods, support vector machines with linear kernel function is used for classification step.

The performance of different methods is measured in terms of accuracy, sensitivity and specificity of classifier. Accuracy is the fraction of correctly classified samples over all samples.

A c c u r a c y = T N + T P T N + F N + F P + T P
(12)

where TP, TN, FP, and FN, stand for the number of true positive, true negative, false positive and false negative samples. A true positive (TP) is a positive sample which is predicted correctly as positive. A true negative (TN) is a negative sample which is predicted correctly as negative. A false positive (FP) occurs when the outcome is incorrectly predicted as positive when it is actually negative. A false negative (FN) occurs when the outcome is incorrectly predicted as negative when it is actually positive.

Sensitivity is the fraction of the real positives that are correctly predicted as positives and specificity is the fraction of the real negatives that are correctly predicted as negatives. Sensitivity and specificity describe how well the classifier discriminates between case with positive and with negative class.

S e n s i t i v i t y = T P T P + F N
(13)
S p e c i f i c i t y = T N T N + F P
(14)

Due to the limited number of samples, performance is evaluated using 10 fold cross-validation. The data is randomly divided into 10 non-overlapping partitions of approximately equal size. Each one is used in turn for testing while the remainder is used for training, i.e., 9/10 of data is used for training and 1/10 for testing. This is repeated 10 times. The overall error rate is the average of error rates on each partition.

In some papers, such as [14, 18], the feature selection process is applied to the entire set of data and cross-validation is only applied on the classifier construction process, not taking into account feature selection. This approach is referred to as internal cross-validation. Using cross-validation in this manner leads to selection bias, as the feature selection would not be based on the particular training set for each cross validation (CV) run. Hence, overly optimistic error rates would be obtained. To prevent this selection bias from occurring, an external cross-validation process should be implemented following the feature selection at each CV stage, that is, the feature selection is performed based only on those samples set aside as training samples at each stage of the CV process, external to the test samples at each stage [41].

Statistical analysis

In continue the result of applying the proposed method is presented and it is compared by some other conventional methods based on accuracy, sensitivity and specificity of the classifier which is built on selected genes. Table 1, Table 2 and Table 3 show the average accuracy, average sensitivity and average specificity of different methods respectively. In each of these tables the number of selected genes in each method is shown as well.

Table 1 Comparison of different gene selection methods based on accuracy
Table 2 Comparison of different gene selection methods based on sensitivity
Table 3 Comparison of different gene selection methods based on specificity

As Table 1 shows, the classifier performance is improved when a gene selection method is applied before classification, with the exception of the Fisher method which uses the Fisher ranking to select the informative genes. As Table 2 and Table 3 show, the sensitivity and specificity of the classifier is reduced when the Fisher method is used in the gene selection step, as compared with case where we have not used gene selection method before classification. Table 4 shows the number of selected genes in different methods.

Table 4 Number of selected genes in different gene selection methods

Comparing the results of Fisher-R (using the Fisher criteria and the redundancy reduction greedy approach for gene selection) and SVMRFE-R (using the SVMRFE algorithm and the redundancy reduction greedy approach for gene selection) with Fisher and SVMRFE respectively, demonstrates that reducing the redundancy of selected genes, leads to a better performance. Comparing Fisher-RG (using the Fisher criteria and the redundancy reduction greedy approach with GO information) and SVMRFE-RG (using the SVMRFE algorithm and the redundancy reduction greedy approach with GO information for gene selection) with Fisher-R and SVMRFE-R, shows that using GO information in addition to the gene expression data, can have a positive effect. Our proposed method (Fisher-RG-SVMRFE) has a better performance than any of the other methods, in terms of accuracy, sensitivity and specificity.

Table 5 lists the published results on the colon cancer dataset. Comparing the results of our proposed framework with the results presented in this table shows that the accuracy of our method is higher than that for the other methods, except [14]. However, it should be mentioned that in [14], the feature selection process is applied to the entire set of data and cross-validation is applied on the classifier construction process. In other words, it suffers from the selection bias problem discussed earlier. This problem exists in [18] as well.

Table 5 The reported results for colon cancer dataset in some papers

Table 6 shows the results of some papers which have studied DLBCL dataset. Comparison the results of our proposed framework with the results presented in this table shows that the accuracy obtained from our method is better than the results obtained in other methods, except [42] which suffers from the selection bias problem.

Table 6 The reported results for DLBCL cancer dataset in some papers

Biological analysis

In addition to the evaluation of the gene selection method based on the classification performance, the selected genes were analyzed from a biological view. This revealed that there is an overlap between the gene set selected by the proposed method and genes which are predicted as marker gene for DLBCL or colon cancer in other articles. In addition, the study of the molecular function of the genes selected by our method strengthened the hypothesis that these genes are involved in the process of cancer growth and progression.

Table 7 lists the genes predicted by our method to be colon cancer markers. Seven of these (highlighted with a * in Table 7) were also reported in [43]. Six of genes in Table 7 (NDP kinase, Complement factor D, Collagen alpha 2 (XI), Desmin, Myosin and CD37) are recognized as marker genes for colon cancer in [11]. These genes are marked with + in Table 7.

Table 7 List of selected genes for colon cancer using proposed framework

With due attention to molecular function of selected genes it seems that our proposed method has been able to select a set of cancer-related genes. For example, gene p58 is a natural killer cell receptor and it is thought to play an important role in regulation of the immune response and cell death, so the incorrect function of this gene may cause to cancer growth. The protein encoded by CD44 is a cell-surface glycoprotein involved in cell-cell interactions, cell adhesion and migration and its role in tumour metastasis is proved. GCAP-II is a key component of several intracellular signal transduction pathways and it can have affective role in cancer growth too [27].

Table 8 presents the list of genes which are selected by our proposed method as DLBCL markers. Among these genes, 6 are overlapped by selected genes in [44] (these genes are marked with * in Table 8); also E2F-3 and JNK3 are reported in [45] as DLBCL markers (these genes are marked with + in Table 8). E2F-3 is a transcription factor and its role in cancer growth is reported in papers [45].

Table 8 List of selected genes for DLBCL cancer using proposed framework

Considering molecular function of erk3, JNK3 and Receptor protein-tyrosine, strengthen the hypothesis that they can be cancer-related genes because Kinase family genes are the main components of signal transduction system and variation in their expressions may cause cancer growth.

Conclusions

One of the most important applications of microarrays is the identification of disease causing genes. The selection of these genes is accomplished by analysis of gene expression data in different samples. However the application of microarrays for this purpose is limited by the fact that gene expression data may be incorrect or unknown.

In addition, because of the limited number of samples, gene expression datasets do not represent the real distribution of data. Therefore, to reduce these problems, in this paper, gene expression data is supplemented with a reliable source of information on genes, namely the Gene Ontology (GO).

The proposed approach has three stages:

  1. 1.

    Ranking the genes using the Fisher criterion.

  2. 2.

    A greedy redundancy reduction that utilizes information from GO, in addition to gene expression levels.

  3. 3.

    Selection of final set of predicted disease marker genes based on the SVMRFE algorithm.

We have utilized the advantages of both filtering methods and embedded methods. In stage 1, a significant number of irrelevant genes are removed using the high-speed Fisher filtering method. Since filtering methods do not take into account the correlation amongst genes, the remaining genes will still have a large amount of redundancy. In order to reduce this redundancy, a greedy approach has been proposed for removing similar genes. This approach calculates the similarity between genes using both information from GO and gene expression data. Finally genes that remain after this stage are processed more accurately by the SVMRFE method to derive the disease marker genes.

The results of applying the proposed method on the colon, DLBCL and prostate cancer datasets showed that this method can improve classification performance.

In addition to classification performance, the final gene set has been evaluated from a biological view. This has strengthened the hypothesis that the selected genes may have a significant role in cancer. The final approval of these genes as cancer factors will require more biological and laboratory investigations. The predictions made in this study can serve as a list of candidates for subsequent wet-lab verification and might help in the search for a cure for colon, DLBCL or prostate cancer. It should be mentioned that the final approval of these genes as cancer factors, require more biological and laboratory investigations and selected genes, can only provide genetic researchers some clues for more research.

References

  1. Weaver RF: Molecular Biology. 2003, Boston: McGraw-Hill

    Google Scholar 

  2. Zhang A: Advanced Analysis of Gene Expression Microarray Data. 2006, Danvers: World Scientific Publishing Co

    Chapter  Google Scholar 

  3. Saeys Y, Inza I, Larranaga P: A review of feature selection techniques in bioinformatics. Bioinformatics. 2007, 23 (19): 2507-2517. 10.1093/bioinformatics/btm344.

    Article  CAS  PubMed  Google Scholar 

  4. Inza I, Larranaga P, Blanco R, Cerrolaza AJ: Filter versus wrapper gene selection approaches in DNA microarray domains. Artificial Intelligence in Medicine. 2004, 31 (1): 91-103. 10.1016/j.artmed.2004.01.007.

    Article  PubMed  Google Scholar 

  5. Zhang Z: The Use of Microarray Data Integraton to Improve Cancer Prognosis. 2006, University of North Carolina

    Google Scholar 

  6. Golub TR, Slonim DK, Tamayo P, Huard C, Gaasenbeek M, Mesirov JP, Coller H, Loh ML, Downing JR, Caligiuri MA, Bloomfield CD, Lander ES: Molecular Classification of Cancer: Class Discovery and Class Prediction by Gene Expression Monitoring. Science. 1999, 286: 531-537. 10.1126/science.286.5439.531.

    Article  CAS  PubMed  Google Scholar 

  7. Pavlidis P, Weston J, Cai J, Grundy WN: Gene functional analysis from heterogeneous data. Research in Computational Molecular Biology (RECOMB): 2001. 2001, New York: ACM Press, 249-255.

    Google Scholar 

  8. Xu W, Wang M, Zhang X, Wang L, Feng H: SDED: A novel filter method for cancer related gene selection. Bioinformation. 2008, 2 (7): 301-303.

    Article  PubMed  PubMed Central  Google Scholar 

  9. Park PJ, Pagano M, Bonetti M: A nonparametric scoring algorithm for identifying informative genes from microarray data. Pacific Symposium on Biocomputing: 2001; Mauna Lani, Hawaii. 2001, 52-63.

    Google Scholar 

  10. Souza BF, Carvalho Ae: Gene Selection Using Genetic Algorithms. Lecture notes in computer science. 2004, 3337 (1): 479-490. full_text.

    Article  Google Scholar 

  11. Li S, Wu X, Hu X: Gene selection using genetic algorithm and support vectors machines. Soft Comput. 2008, 12 (1): 693-698. 10.1007/s00500-007-0251-2.

    Article  CAS  Google Scholar 

  12. Martinez E, Alvarez MM, Trevino V: Compact cancer biomarkers discovery using a swarm intelligence feature selection algorithm. Computational Biology and Chemistry. 2010, 34 (1): 244-250. 10.1016/j.compbiolchem.2010.08.003.

    Article  CAS  PubMed  Google Scholar 

  13. Li S, Wu X, Tan M: Gene selection using hybrid particle swarm optimization and genetic algorithm. Soft Comput. 2008, 12 (1): 1039-1048. 10.1007/s00500-007-0272-x.

    Article  Google Scholar 

  14. Guyon I, Weston J, Barnhill S, Vapnik V: Gene Selection for Cancer Classification using Support Vector Machines. Machine Learning. 2002, 46 (1): 389-422. 10.1023/A:1012487302797.

    Article  Google Scholar 

  15. Duval B, Hao J: Advances in metaheuristics for gene selection and classification of microarray data. Briefings in Bioinformatics. 2009, 2 (1): 127-141.

    Google Scholar 

  16. Genuer R, Poggi JM, Tuleau-Malot C: Variable selection using random forests. Pattern Recognition Letters. 2010, 31 (1): 2225-2236. 10.1016/j.patrec.2010.03.014.

    Article  Google Scholar 

  17. Jaeger J, Sengupta R, Ruzzo WL: Improved Gene Selection for Classification of Microarrays. Pacific Symposium on Biocomputing: 2003. 2003, 53-64.

    Google Scholar 

  18. Wang Y, Makedon FS, Ford JC, Pearlman J: HykGene: a hybrid approach for selecting marker genes for phenotype classification using microarray gene expression data. Bioinformatics. 2005, 21 (8): 1530-1537. 10.1093/bioinformatics/bti192.

    Article  CAS  PubMed  Google Scholar 

  19. Yu L, Liu H: Redundancy Based Feature Selection for Microarray Data. Tenth ACM SIGKDD Conference on Knowledge Discovery and Data Mining: 2004; Washington, USA. 2004, 737-742. full_text.

    Chapter  Google Scholar 

  20. Ding C, Peng H: Minimum Redundancy Feature Selection from Microarray Gene Expression Data. Bioinformatics and Computational Biology. 2005, 3 (2): 185-205. 10.1142/S0219720005001004.

    Article  CAS  PubMed  Google Scholar 

  21. Mundra PA, Rajapakse JC: SVM-RFE With MRMR Filter for Gene Selection. Ieee Transactions on Nanobioscience. 2010, 9 (1): 31-37. 10.1109/TNB.2009.2035284.

    Article  PubMed  Google Scholar 

  22. Unler A, Murat A, Chinnam RB: mr2PSO: A maximum relevance minimum redundancy feature selection method based on swarm intelligence for support vector machine classification. Information Sciences.

  23. Furey TS, Cristianini N, Duffy N, Bednarski DW, Schummer M, Haussler D: Support vector machine classification and validation of cancer tissue samples using microarray expression data. Bioinformatics. 2000, 16 (10): 906-914. 10.1093/bioinformatics/16.10.906.

    Article  CAS  PubMed  Google Scholar 

  24. Cristianini N, Shawe-Taylor J: An Introduction to Support Vector Machines and Other Kernel-based Learning Methods. 2000, Cambridge, England: Cambridge University Press

    Chapter  Google Scholar 

  25. Ding Y: Handling Complex, High Dimensional Data for Classification and Clustering. Ph. D thesis. 2007, The University of Mississippi

    Google Scholar 

  26. GO Consortium. [http://www.geneontology.org/]

  27. Source Batch Search. [http://smd.stanford.edu/cgi-bin/source/sourceBatchSearch]

  28. Couto FM, Silva MrJ, Coutinho PM: Measuring semantic similarity between Gene Ontology terms. Data & Knowledge Engineering. 2007, 61 (1): 137-152.

    Article  Google Scholar 

  29. Resnik P: Using information content to evaluate semantic similarity in a taxonomy. 14th International Joint Conference on Artificial Intelligence: 1995; Montreal, Canada. 1995, 448-453.

    Google Scholar 

  30. Lin D: An information-theoretic definition of similarity. 15th International Conference on Machine Learning: 1998; San Francisco. 1998, 296-304.

    Google Scholar 

  31. Jiang JJ, Conrath DW: Semantic similarity based on corpus statistics and lexical taxonomy. 10th International Conference on Research in Computational Linguistics: 1997; Taiwan. 1997, 19-33.

    Google Scholar 

  32. Xie Z, Hu Q, Yu D: Improved Feature Selection Algorithm Based on SVM and Correlation. LNCS. 2006, 3971 (1): 1373-1380.

    Google Scholar 

  33. Mundra PA, Rajapakse JC: SVM-RFE with Relevancy and Redundancy Criteria for Gene Selection. Recognition in Bioinformatics, Second IAPR International Workshop: 2007; Singapore. 2007, Springer, 242-252.

    Google Scholar 

  34. Alon U, Barkain , Notterman DA, Gish K, Ybarra S, Mack D, Levine AJ: Broad patterns of gene expression revealed by clustering analysis of tumor and normal colon tissues probed by oligonucleotide arrays. 1999

    Google Scholar 

  35. Princeton University gene expression project. [http://microarray.princeton.edu/oncology]

  36. Alizadeh AA, Eisen MB, Davis RE, Ma C, Lossos IS, Rosenwald A, Boldrick JC, Sabet H, Tran T, Yu X, Powell JI, Yang L, Marti GE, Moore T, Hudson J, Lu L, Lewis DB, Tibshirani R, Sherlock G, Chan WC, Greiner TC, Weisenburger DD, Armitage JO, Warnke R, Levy R, Wilson W, Grever MR, Byrd JC, Botstein D, Brown PO, Staudt LM: Distinct types of diffuse large B-cell lymphoma identified by gene expression profiling. Nature. 2000, 403 (3): 503-511. 10.1038/35000501.

    Article  CAS  PubMed  Google Scholar 

  37. Lymphoma/Leukemia Molecular Profiling Project. [http://llmpp.nih.gov/lymphoma/data.shtml]

  38. Mohammadi A, Saraee MH: Estimating Missing Value in Microarray Data Using Fuzzy Clustering and Gene Ontology. Proceedings of the 2008 IEEE International Conference on Bioinformatics and Biomedicine: 2008; Philadelphia, USA. 2008, IEEE Computer Society, 382-385.

    Chapter  Google Scholar 

  39. Singh D, Febbo PG, Ross K, Jackson DG, Manola J, Ladd C, Tamayo P, Renshaw AA, D'Amico AV, Richie JP, Lander ES, Loda M, Kantoff PW, Golub TR, Sellers WR: Gene expression correlates of clinical prostate cancer behavior. Cancer Cell. 2002, 1 (2): 203-209. 10.1016/S1535-6108(02)00030-2.

    Article  CAS  PubMed  Google Scholar 

  40. Kent ridge bio-medical data set repository.

  41. Ambroise C, McLachlan GJ: Selection bias in gene extraction on the basis of microarray gene-expression data. Proceedings of the National Academy of Sciences. 2002, 99 (10): 6562-6566. 10.1073/pnas.102102699.

    Article  CAS  Google Scholar 

  42. Li L, Jiang W, Li X, Moser KL, Guo Z, Du L, Wang Q, Topol EJ, Wang Q, Rao S: A robust hybrid between genetic algorithm and support vector machine for extracting an optimal feature gene subset. Genomics. 2005, 85 (1): 16-23. 10.1016/j.ygeno.2004.09.007.

    Article  CAS  PubMed  Google Scholar 

  43. Huang TM, Kecman V: Gene extraction for cancer diagnosis by support vector machines-An improvement. Artificial Intelligence in Medicine. 2005, 35 (1): 185-194. 10.1016/j.artmed.2005.01.006.

    Article  PubMed  Google Scholar 

  44. Ziaei L, Mehri AR, Salehi M: Application of Artificial Neural Networks in Cancer Classification and Diagnosis Prediction of a Subtype of Lymphoma Based on Gene Expression Profile. Journal of Research in Medical Sciences. 2006, 11 (1): 13-17.

    Google Scholar 

  45. Tago C, Hanai T: Prognosis Prediction by Microarray Gene Expression Using Support Vector Machine. Genome Informatics. 2003, 14 (1): 324-325.

    Google Scholar 

  46. Chin YL: Effective Gene Selection Techniques For Classification of Gene Expression Data. 2005, University of Malaysia

    Google Scholar 

Pre-publication history

Download references

Acknowledgements

We thank C.H. Bryant for proof reading the manuscript.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Azadeh Mohammadi.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

AM and MHS conceived of the study and participated in the design of and implementation of algorithms. AM performed the statistical analysis, and drafted the manuscript. MHS participated in its coordination and refined the manuscript. MS analyzed the biological results and refined the manuscript. All authors provided critical input during manuscript preparation and read and approved the final manuscript.

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Mohammadi, A., Saraee, M.H. & Salehi, M. Identification of disease-causing genes using microarray data mining and Gene Ontology. BMC Med Genomics 4, 12 (2011). https://doi.org/10.1186/1755-8794-4-12

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1755-8794-4-12

Keywords