Literature DB >> 16046821

Gene expression data classification with Kernel principal component analysis.

Zhenqiu Liu1, Dechang Chen, Halima Bensmail.   

Abstract

One important feature of the gene expression data is that the number of genes M far exceeds the number of samples N. Standard statistical methods do not work well when N < M. Development of new methodologies or modification of existing methodologies is needed for the analysis of the microarray data. In this paper, we propose a novel analysis procedure for classifying the gene expression data. This procedure involves dimension reduction using kernel principal component analysis (KPCA) and classification with logistic regression (discrimination). KPCA is a generalization and nonlinear version of principal component analysis. The proposed algorithm was applied to five different gene expression datasets involving human tumor samples. Comparison with other popular classification methods such as support vector machines and neural networks shows that our algorithm is very promising in classifying gene expression data.

Entities:  

Year:  2005        PMID: 16046821      PMCID: PMC1184105          DOI: 10.1155/JBB.2005.155

Source DB:  PubMed          Journal:  J Biomed Biotechnol        ISSN: 1110-7243


INTRODUCTION

One important application of gene expression data is the classification of samples into different categories, such as the types of tumor. Gene expression data are characterized by many variables on only a few observations. It has been observed that although there are thousands of genes for each observation, a few underlying gene components may account for much of the data variation. Principal component analysis (PCA) provides an efficient way to find these underlying gene components and reduce the input dimensions (Bicciato et al [1]). This linear transformation has been widely used in gene expression data analysis and compression (Bicciato et al [1], Yeung and Ruzzo [2]). If the data are concentrated in a linear subspace, PCA provides a way to compress data and simplify the representation without losing much information. However, if the data are concentrated in a nonlinear subspace, PCA will fail to work well. In this case, one may need to consider kernal principal component analysis (KPCA) (Rosipal and Trejo [3]). KPCA is a nonlinear version of PCA. It has been studied intensively in the last several years in the field of machine learning and has claimed success in many applications (Ng et al [4]). In this paper, we introduce a novel algorithm of classification, based on KPCA. Computational results show that our algorithm is effective in classifying gene expression data.

ALGORITHM

A gene expression dataset with M genes (features) and N mRNA samples (observations) can be conveniently represented by the following gene expression matrix: where x is the measurement of the expression level of gene l in mRNA sample i. Let x = (x1, x2, ..., x)′ denote the ith column (sample) of X with the prime ′ representing the transpose operation, and y the corresponding class label (eg, tumor type or clinical outcome). KPCA is a nonlinear version of PCA. To perform KPCA, one first transforms the input data x from the original input space F0 into a higher-dimensional feature space F1 with the nonlinear transform x → Φ(x), where Φ is a nonlinear function. Then a kernel matrix K is formed using the inner products of new feature vectors. Finally, a PCA is performed on the centralized K, which is the estimate of the covariance matrix of the new feature vector in F1. Such a linear PCA on K may be viewed as a nonlinear PCA on the original data. This property is sometimes called “kernel trick” in the literature. The concept of kernel is very important, here is a simple example to illustrate it. Suppose we have a two-dimensional input x = (x1, x2)′, let the nonlinear transform be Therefore, given two points x = (x, x)′ and x = ( x, x)′, the inner product (kernel) is which is a second-order polynomial kernel. Equation (3) clearly shows that the kernel function is an inner product in the feature space and the inner products can be evaluated without even explicitly constructing the feature vector Φ(x). The following are among the popular kernel functions: For binary classification, our algorithm, based on KPCA, is stated as follows. first norm exponential kernel radial basis function (RBF) kernel power exponential kernel (a generalization of RBF kernel) sigmoid kernel polynomial kernel where p1 and p2 = 0, 1, 2, 3,... are both integers.

KPC classification algorithm

Given a training dataset with class labels and a test dataset with labels , do the following. We can show that the above KPC classification algorithm is a nonlinear version of the logistic regression. From our KPC classification algorithm, the probability of the label y, given the projection v, is expressed as where the coefficients w are adjustable parameters and g is the logistic function Let n be the number of training samples and Φ the nonlinear transform function. We know each eigenvector z lies in the span of Φ(x1), Φ(x2), ..., Φ(x) for i = 1, ..., n (Rosipal and Trejo [3]). Therefore one can write, for constants z, Given a test data x, let v denote the projection of Φ(x) onto the ith nonlinear component with a normalizing factor , we have Substituting (13) into (10), we have where When K(x, x) = x′x , (14) becomes logistic regression. K(x, x) = x′x is a linear kernel (polynomial kernel with p1 = 1 and p2 = 0). When we first normalize the input data through minusing their mean and then dividing their standard deviation, linear kernel matrix is the covariance matrix of the input data. Therefore KPC classification algorithm is a generalization of logistic regression. Compute the kernel matrix, for the training data, K = [K], where K = K(x, x). Compute the kernel matrix, for the test data, Kte = [K], where K = K(x, x). K projects the test data x onto training data x in the high-dimensional feature space in terms of the inner product. Centralize K using and Kte Form an n × k matrix Z =[z1 z2 ... z], where z1, z2, ..., z are eigenvectors of K that correspond to the largest eigenvalues λ1 ≥ λ2 ≥ ... ≥ λ > 0. Also form a diagonal matrix D with λ in a position (i, i). Find the projections V= KZD−1/2 and Vte = Kte ZD−1/2 for the training and test data, respectively. Build a logistic regression model using V and and test the model performance using Vte and . Described in terms of binary classification, our classification algorithm can be readily employed for multiclass classification tasks. Typically, two-class problems tend to be much easier to learn than multiclass problems. While for two-class problems only one decision boundary must be inferred, the general c-class setting requires us to apply a strategy for coupling decision rules. For a c-class problem, we employ the standard approach where two-class classifiers are trained in order to separate each of the classes against all others. The decision rules are then coupled by voting, that is, sending the sample to the class with the largest probability. Mathematically, we build c two-class classifiers based on a KPC classification algorithm in the form of (14) with the scheme “one against the rest”: where i =1, 2, ..., c. Then for a test data point x, we have the predicted class

Feature and model selections

Since many genes show little variation across samples, gene (feature) selection is required. We chose the most informative genes with the highest likelihood ratio scores, described below (Ideker et al [5]). Given a two-class problem with an expression matrix X = [x], we have, for each gene l, where Here μ, μ0, and μ1 are the whole sample mean, the Class 0 mean, and the Class 1 mean, alternatively. We selected the most informative genes with the largest T values. This selection procedure is based on the likelihood ratio and used in our classification. On the other hand, the dimension of projection (the number of eigenvectors) k used in the model can be selected based on Akaike's information criteria (AIC): where is the maximum likelihood and k is the dimension of the projection in (10). The maximum likelihood can also be calculated using (10): We can choose the best k with minimum AIC value.

COMPUTATIONAL RESULTS

To illustrate the applications of the algorithm proposed in the previous section, we considered five gene expression datasets: leukemia (Golub et al [6]), colon (Alon et al [7]), lung cancer (Garber et al [8]), lymphoma (Alizadeh et al [9]), and NCI (Ross et al [10]). The classification performance is assessed using the “leave-one-out (LOO) cross validation” for all of the datasets except for leukemia which uses one training and test data only. LOO cross validation provides more realistic assessment of classifiers which generalize well to unseen data. For presentation clarity, we give the number of errors with LOO in all of the figures and tables.

Leukemia

The leukemia dataset consists of expression profiles of 7129 genes from 38 training samples (27 ALL and 11 AML) and 34 testing samples (20 ALL and 14 AML). For classification of leukemia using a KPC classification algorithm, we chose the polynomial kernel K(x, x) = (x′x + 1)2 and 15 eigenvectors corresponding to the first 15 largest eigenvalues with AIC. Using 150 informative genes, we obtained 0 training error and 1 test error. This is the best result compared with those reported in the literature. The plot for the output of the test data is given in Figure 1, which shows that all the test data points are classified correctly except for the last data point.
Figure 1

Output of the test data with KPC classification algorithm.

Colon

The colon dataset consists of expression profiles of 2000 genes from 22 normal tissues and 40 tumor samples. We calculated the classification result using a KPC classification algorithm with a kernel K(x, x) = (x′x + 1)2. There were 150 selected genes and 25 eigenvectors selected with AIC criteria. The result is compared with that from the linear principal component (PC) logistic regression. The classification errors were calculated with the LOO method. The average error with linear PC logistic regression is 2 and the error with KPC classification is 0. The detailed results are given in Figure 2.
Figure 2

Outputs with (a) linear PC regression and (b) KPC classification.

Lung cancer

The lung cancer dataset has 918 genes, 73 samples, and 7 classes. The number of samples per class for this dataset is small (less than 10) and unevenly distributed with 7 classes, which makes the classification task more challenging. A third-order polynomial kernel K(x, x) = (x′x +1)3, and an RBF kernel with σ = 1 were used in the experiments. We chose the 100 most informative genes and 20 eigenvectors with our gene and model selection methods. The computational results of KPC classification and other methods are shown in Table 1. The results from SVMs for lung cancer, lymphoma, and NCI shown in this paper are those from Ding and Peng [11]. Six misclassifications with KPC and a polynomial kernel are given in Table 2. Table 1 shows that KPC with a polynomial kernel is performed better than that with an RBF kernel.
Table 1

Comparison for lung cancer.

MethodsNumber of errors

KPC with a polynomial kernel6
KPC with an RBF kernel8
Linear PC classification7
SVMs7
Regularized logistic regression12
Table 2

Misclassifications of lung cancer.

Sample indexTrue classPredicted class

664
1264
4163
5136
6815
7143

Lymphoma

The lymphoma dataset has 4026 genes, 96 samples, and 9 classes. A third-order polynomial kernel K(x, x) = (x′x + 1)3 and an RBF kernel with σ = 1 were used in our analysis. The 300 most informative genes and 21 eigenvectors corresponding to the largest eigenvalues were selected with the gene selection method and AIC criteria. A comparison of KPC with other methods is shown in Table 3. Misclassifications of lymphoma using KPC with a polynomial kernel are given in Table 4. There are only 2 misclassifications of class 1 using our KPC algorithm with a polynomial kernel, as shown in Table 4. The KPC with a polynomial kernel outperformed that with an RBF kernel in this experiment.
Table 3

Comparison for lymphoma.

MethodsNumber of errors

KPC with a polynomial kernel2
KPC with an RBF kernel6
PC5
SVMs2
Regularized logistic regression5
Table 4

Misclassifications of lymphoma.

Sample indexTrue classPredicted class

6416
9613

NCI

The NCI dataset has 9703 genes, 60 samples, and 9 classes. The third-order polynomial kernel K(x, x) = (x′x + 1)3 and an RBF kernel with σ = 1 were chosen in this experiment. The 300 most informative genes and 23 eigenvectors were selected with our simple gene selection method and AIC criteria. A comparison of computational results is summarized in Table 5 and the details of misclassification are listed in Table 6. KPC classification has equivalent performance with other popular tools.
Table 5

Comparison for NCI.

MethodsNumber of errors

KPC with a polynomial kernel6
KPC with a RBF kernel7
PC6
SVMs12
Logistic regression6
Table 6

Misclassifications of NCI.

Sample indexTrue classPredicted class

613
714
2743
4579
5685
5881

DISCUSSIONS

We have introduced a nonlinear method, based on kPCA, for classifying gene expression data. The algorithm involves nonlinear transformation, dimension reduction, and logistic classification. We have illustrated the effectiveness of the algorithm in real life tumor classifications. Computational results show that the procedure is able to distinguish different classes with high accuracy. Our experiments also show that KPC classifications with second- and third-order polynomial kernels are usually performed better than that with an RBF kernel. This phenomena may be explained from the special structure of gene expression data. Our future work will focus on providing a rigorous theory for the algorithm and exploring the theoretical foundation that KPC with a polynomial kernel performed better than that with other kernels.

DISCLAIMER

The opinions expressed herein are those of the authors and do not necessarily represent those of the Uniformed Services University of the Health Sciences and the Department of Defense.
  8 in total

1.  Principal component analysis for clustering gene expression data.

Authors:  K Y Yeung; W L Ruzzo
Journal:  Bioinformatics       Date:  2001-09       Impact factor: 6.937

2.  Testing for differentially-expressed genes by maximum-likelihood analysis of microarray data.

Authors:  T Ideker; V Thorsson; A F Siegel; L E Hood
Journal:  J Comput Biol       Date:  2000       Impact factor: 1.479

3.  Systematic variation in gene expression patterns in human cancer cell lines.

Authors:  D T Ross; U Scherf; M B Eisen; C M Perou; C Rees; P Spellman; V Iyer; S S Jeffrey; M Van de Rijn; M Waltham; A Pergamenschikov; J C Lee; D Lashkari; D Shalon; T G Myers; J N Weinstein; D Botstein; P O Brown
Journal:  Nat Genet       Date:  2000-03       Impact factor: 38.330

4.  Broad patterns of gene expression revealed by clustering analysis of tumor and normal colon tissues probed by oligonucleotide arrays.

Authors:  U Alon; N Barkai; D A Notterman; K Gish; S Ybarra; D Mack; A J Levine
Journal:  Proc Natl Acad Sci U S A       Date:  1999-06-08       Impact factor: 11.205

5.  Distinct types of diffuse large B-cell lymphoma identified by gene expression profiling.

Authors:  A A Alizadeh; M B Eisen; R E Davis; C Ma; I S Lossos; A Rosenwald; J C Boldrick; H Sabet; T Tran; X Yu; J I Powell; L Yang; G E Marti; T Moore; J Hudson; L Lu; D B Lewis; R Tibshirani; G Sherlock; W C Chan; T C Greiner; D D Weisenburger; J O Armitage; R Warnke; R Levy; W Wilson; M R Grever; J C Byrd; D Botstein; P O Brown; L M Staudt
Journal:  Nature       Date:  2000-02-03       Impact factor: 49.962

6.  Molecular classification of cancer: class discovery and class prediction by gene expression monitoring.

Authors:  T R Golub; D K Slonim; P Tamayo; C Huard; M Gaasenbeek; J P Mesirov; H Coller; M L Loh; J R Downing; M A Caligiuri; C D Bloomfield; E S Lander
Journal:  Science       Date:  1999-10-15       Impact factor: 47.728

7.  Diversity of gene expression in adenocarcinoma of the lung.

Authors:  M E Garber; O G Troyanskaya; K Schluens; S Petersen; Z Thaesler; M Pacyna-Gengelbach; M van de Rijn; G D Rosen; C M Perou; R I Whyte; R B Altman; P O Brown; D Botstein; I Petersen
Journal:  Proc Natl Acad Sci U S A       Date:  2001-11-13       Impact factor: 11.205

8.  PCA disjoint models for multiclass cancer analysis using gene expression data.

Authors:  S Bicciato; A Luchini; C Di Bello
Journal:  Bioinformatics       Date:  2003-03-22       Impact factor: 6.937

  8 in total
  14 in total

1.  Investigating the efficacy of nonlinear dimensionality reduction schemes in classifying gene and protein expression studies.

Authors:  George Lee; Carlos Rodriguez; Anant Madabhushi
Journal:  IEEE/ACM Trans Comput Biol Bioinform       Date:  2008 Jul-Sep       Impact factor: 3.710

2.  Gene- or region-based association study via kernel principal component analysis.

Authors:  Qingsong Gao; Yungang He; Zhongshang Yuan; Jinghua Zhao; Bingbing Zhang; Fuzhong Xue
Journal:  BMC Genet       Date:  2011-08-26       Impact factor: 2.797

3.  A classification method based on principal components of SELDI spectra to diagnose of lung adenocarcinoma.

Authors:  Qiang Lin; Qianqian Peng; Feng Yao; Xu-Feng Pan; Li-Wen Xiong; Yi Wang; Jun-Feng Geng; Jiu-Xian Feng; Bao-Hui Han; Guo-Liang Bao; Yu Yang; Xiaotian Wang; Li Jin; Wensheng Guo; Jiu-Cun Wang
Journal:  PLoS One       Date:  2012-03-26       Impact factor: 3.240

4.  SNP set association analysis for genome-wide association studies.

Authors:  Min Cai; Hui Dai; Yongyong Qiu; Yang Zhao; Ruyang Zhang; Minjie Chu; Juncheng Dai; Zhibin Hu; Hongbing Shen; Feng Chen
Journal:  PLoS One       Date:  2013-05-03       Impact factor: 3.240

Review 5.  A Review of Feature Selection and Feature Extraction Methods Applied on Microarray Data.

Authors:  Zena M Hira; Duncan F Gillies
Journal:  Adv Bioinformatics       Date:  2015-06-11

6.  Knowledge-based gene expression classification via matrix factorization.

Authors:  R Schachtner; D Lutter; P Knollmüller; A M Tomé; F J Theis; G Schmitz; M Stetter; P Gómez Vilda; E W Lang
Journal:  Bioinformatics       Date:  2008-06-05       Impact factor: 6.937

7.  A voting approach to identify a small number of highly predictive genes using multiple classifiers.

Authors:  Md Rafiul Hassan; M Maruf Hossain; James Bailey; Geoff Macintyre; Joshua W K Ho; Kotagiri Ramamohanarao
Journal:  BMC Bioinformatics       Date:  2009-01-30       Impact factor: 3.169

8.  A novel nonlinear dimension reduction approach to infer population structure for low-coverage sequencing data.

Authors:  Miao Zhang; Yiwen Liu; Hua Zhou; Joseph Watkins; Jin Zhou
Journal:  BMC Bioinformatics       Date:  2021-06-26       Impact factor: 3.169

9.  Detection for gene-gene co-association via kernel canonical correlation analysis.

Authors:  Zhongshang Yuan; Qingsong Gao; Yungang He; Xiaoshuai Zhang; Fangyu Li; Jinghua Zhao; Fuzhong Xue
Journal:  BMC Genet       Date:  2012-10-08       Impact factor: 2.797

10.  Classification of heterogeneous microarray data by maximum entropy kernel.

Authors:  Wataru Fujibuchi; Tsuyoshi Kato
Journal:  BMC Bioinformatics       Date:  2007-07-26       Impact factor: 3.169

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.