Abstract
The metabolism and composition of lipids is of increasing interest for understanding and detecting disease processes. Lipid signatures of tumor type and grade have been demonstrated using magnetic resonance spectroscopy. Clinical management and ultimate prognosis of brain tumors depend largely on the tumor type, subtype, and grade. Mass spectrometry, a well-known analytical technique used to identify molecules in a given sample based on their mass, can significantly improve the problem of tumor type classification. This work focuses on the problem of identifying lipid features to use as input for classification. Feature selection could result in improvements in classifier performance, discovery of biomarkers, improved data interpretation, and patient treatment.
I. Introduction
There are approximately 21,000 new cases of brain and spinal cancer diagnosed in the United States each year, and the overall five-year survival rate is estimated to be 34% [1]. For some types of brain cancer, however, the median survival is less than two years [2], [3]. Clinical management and ultimate prognosis depend largely on the tumor type, subtype, and grade as evaluated by magnetic resonance imaging (MRI) and tissue histopathology when available. Biopsied or resected tumor tissue is classified based on the type or subtype of progenitor cells promoting neoplastic growth, and into risk grades II, III, and IV, based on characteristic features of malignant proliferation [4], [5]. In this work we focus on the subtypes astrocytoma and oligodendroglioma which present morphological features of respectively astrocytes and oligodendrocytes of the glial cell family in the brain. The survival profile of these subtypes varies greatly, with astrocytoma presenting a higher risk of malignancy as compared to oligodendrogliomas [1], thus differentiation between these subtypes is of significance to both direct patient care and research to improve treatments.
The metabolism and composition of lipids is of increasing interest for understanding and detecting disease processes [6]. Lipid signatures of tumor type and grade have been demonstrated using magnetic resonance spectroscopy [7], [8]. In many gliomas, the phosphatidylinositol lipid pathway is an important factor in cell growth due to mutation-driven increases in the PI3 kinase enzyme activity, which impedes normal apoptosis - mechanism of cell death.
Mass spectrometry (MS) is a well-known analytical technique used to identify molecules in a given sample based on their mass. The analysis of the sample involves two main steps: i) ionization, and ii) mass analysis. There are a number of different ionization techniques, including matrix-assisted laser desorption ionization (MALDI), and more recently, desorption electrospray ionization (DESI). In MALDI-MS, the sample is coated with a matrix, a light-absorbing organic acid with low molecular weight. The ionization mechanism in MALDI involves shooting an ultraviolet or infrared laser beam to the compound. The matrix enhances the desorption and ionization by absorbing the energy from the laser and producing charged molecules, which in turn are analyzed by the mass analyzer. The output of the mass spectrometer is a spectrum indicating the mass-to-charge ratio (m/z) of the molecule on the x-axis and its associated detected relative abundance on the y-axis.
While MALDI-MS is capable of identifying molecules with higher m/z values, the sample preparation limits its translation to “real-time” application. In DESI-MS, the ionization involves targeting the sample with a stream of charged solvent droplets. The analyte (i.e., the sample to be analyzed) molecules are taken up by the charged solvent and are analyzed by the mass analyzer. DESI-MS is used to analyze molecules with lower weights including lipids. However, unlike MALDI-MS, where the desorption and ionization are performed in the vacuum and involves sample preparation, in DESI-MS the surface ions are produced in ambient conditions requiring no sample preparation. This property of DESI-MS could be extremely useful in clinical applications, specifically during surgery, where it is critical to analyze samples for specific biomarkers (e.g., possible traces of cancer). In [9], authors discuss the application of DESI-MS for intraoperative analysis of tumors for neurosurgery.
In mass spectrometry imaging, the sample is moved in the x-y plane in the ionization source, and hence, can analyze specific regions in the sample referred to as pixels. Note that each pixel from the sample corresponds to a spectrum indicating the relative abundance of different molecules in the region defined by the pixel. In contrast to profiling molecular distribution of tissue extracts, in mass spectrometry imaging the morphological features in the tissue is preserved allowing for visual comparison between the chemical composition of the tissue and the heterogeneity and the infiltration levels within the tissue.
Mass spectrometry and machine-learning have been used for assessment of cancers from other organs as well as brain cancer. Ovarian cancer was correctly predicted from serum samples analyzed with MS using classifiers based on peak-probability and support vector machines [10], [11]. Prostate samples have also been distinguished by similar techniques [12]. In our previous work, we have used matrix assisted laser desorption ionization MS (MALDI-MS) to classify progression of meningioma [13]. With a similar approach, post-operative DESI-MS analysis showed utility to discriminate gliomas along several axes of the histopathological criteria used to assess tumor severity, namely type and grade [14], [15].
This work focuses on the problem of identifying lipid features to use as input for classification. Specifically, we consider the feature selection problem for the classification of astrocytoma and oligodendroglioma samples using their mass spectrum. Feature selection could result in improvements in classifier performance as well as in discovery of biomarkers and improved interpretation of biological data. In the case of tumor subtype classification, biomarker discovery allows for an improved diagnosis and treatment.
II. Classification and Feature Selection
In this section, we briefly review the support vector machine (SVM) algorithm and a feature selection framework which is closely related to SVM.
A. Support Vector Machine Algorithm
The support vector machine algorithm [16] is a sparse kernel algorithm used in classification and regression problems. Here, we will briefly discuss the SVM framework for the two-class classification problem. Let the training set be given by x1, x2, … , xN, with target values given by z1, z2, … , zN, respectively, where and zn ∈ {−1, 1}, n = 1, 2, … , N. Moreover, assume that this training set is linearly separable in a feature space defined by the transformation ; that is, there exists a linear decision boundary in the feature space separating the two classes.
To classify a new data point by predicting its target value z define
(1) |
where is a weight vector and is a bias parameter. This representation can be rewritten in terms of a kernel function as , where an, n = 1, 2, … , N, and b are parameters determined by the training set xn and zn, n = 1, 2, … , N, and k(·, ·) is the kernel function. The sign of the function y(x) determines the class of x. More specifically, for a new data point x, the target value is given by z = sgn(y(x)), where sgn , y ≠ 0, and sgn(0) ≜ 0. In the SVM approach the parameters w and b are chosen such that the margin, that is, the minimum distance between the decision boundary and the data points, is maximized. Hence, only a subset of the training data (i.e., support vectors) is used to determine the decision boundary. It can be shown that the solution to the SVM problem results in a convex optimization problem, and hence, a global optimum is guaranteed.
In the case where there is an overlap between the two data classes, the SVM algorithm can be modified by allowing misclassification of data points. In this case the margin is maximized while penalizing misclassified points. Such a trade-off is controlled by a positive complexity parameter C, which is determined using a hold-out method such as cross-validation [16].
B. Recursive Feature Elimination
In this section, we briefly review a feature selection algorithm referred to as recursive feature elimination (RFE) which is based on the SVM algorithm. Although the RFE framework can be applied to SVM with a nonlinear kernel [17], here, we consider the SVM algorithm with a linear kernel.
As discussed above, each data point x resides in a high dimensional feature space , D ⪢ 1. However, in studying biological data one observes a high degree of correlation among the components of x. In addition, x could contain components that do not contribute to the classification problem and can be regarded as noise (i.e., uninformative features). Hence, it is desirable to select a subset of components in and exclusively use them for data classification. The process of selecting a subset of components in the feature space is referred to as feature selection. Feature selection could result in improvements in classifier performance as well as in discovery of biomarkers and improved data interpretation for biological data. In the case of tumor subtype classification, biomarker discovery allows for an improved diagnosis and treatment.
The feature selection problem for high dimensional data is challenging. Using an exhaustive search method to identify the optimal set of features subject to some model selection criterion is computationally infeasible for high dimensional feature spaces. In a framework proposed in [17], SVM is used for feature selection by iteratively removing features (i.e., components in the feature space) that are least informative for classification. Specifically, let w = [w1, … , wD]T denote the weight vector in (1) identified by training the SVM on the training set as discussed in Section II-A. In the RFE framework, we define the feature index set , identify components which play the “weakest” role in the SVM classification and recursively eliminate features and the corresponding components in the feature space from the data. Specifically, in iteration k, the component is eliminated from the feature space, where is the feature index set in iteration k. In the next iteration, the SVM algorithm is re-trained on the modified training set and the process described above is repeated. This process can be repeated until all features in the feature space are eliminated or some termination criterion is met. See [17] for a detailed discussion.
III. Feature Selection using the Recursive Feature Elimination Framework
In this section, we apply the RFE framework discussed in Section II-B to the problem of classification of two glioma subtypes, namely, astrocytoma and oligodendroglioma. The data were collected from research subjects under approved local Institutional Review Board protocol at the Brigham and Women’s Hospital, Boston, MA. In this study, 29 glioma samples were acquired from multiple research subjects, with samples of astrocytomas and oligodendrogliomas and from different grades between II to IV. Here, the term “sample” refers to one piece of resected tissue and all the spectra acquired from it.
A. Preprocessing of DESI Mass Spectra
Each spectrum contains numerous peaks each corresponding to a specific molecule or a set of molecules. However, before using the spectra to classify tumor samples into two different subtypes, preprocessing steps are necessary. First, each spectrum is denoised using the undecimated wavelet transform (UDWT). Then, the baseline artifact is estimated and removed in the denoised signal [18].
Next, in the normalization step, individual spectra are rescaled such that the area under the curve (also referred to as total ion current) for all spectra correspond to some fixed constant value. In the peak detection stage, peaks are identified by locating local maxima in the denoised and normalized spectra. The peaks indicate the presence of a molecule or a fraction of the molecule in the region of the sample corresponding to the spectrum, where its identity can be determined by the m/z ratio. We used MATLAB Bioinformatic Toolbox for preprocessing of spectra. See [18-20] for a detailed discussion.
B. Peak Matching
Next, we discuss a feature extraction framework for mass spectrometry data which is also referred to as peak matching or binning. As discussed earlier, the m/z ratio of each detected peak in a spectrum indicates the presence of a molecule or a fraction of a molecule in the region of the sample corresponding to the spectrum. However, the fact that the mass spectrometer introduces a measurement error merror introduces small shifts in the location of the peaks in different spectra. As a result, prior to any form of analysis involving a set of spectra, the peaks in different spectra corresponding to the same molecule (with the same m/z value) need to be matched.
In a standard technique in mass spectrometry data analysis, the entire range of m/z ratios is partitioned into a set of “bins” (each defined by an interval), where each bin is associated with a unique molecule (or a fraction of a molecule) with a given m/z ratio. Once the bins are identified, each spectrum is revisited, and based on the m/z ratio of each individual peak, the peak is assigned to one of the bins. Peaks corresponding to the same bin are assumed to be associated with the same molecule [18], [21]. This procedure can be regarded as a feature extraction technique, where the bins serve as features allowing peaks across different spectra to be analyzed.
Here, we follow the mass clustering framework introduced in [21] to identify the bins of variable size. The mass clustering framework in [21], which is essentially a variation of the centroid linkage hierarchical clustering algorithm [22], considers each bin as a cluster of points, that is, a set of m/z ratios. The algorithm starts by considering singleton clusters (each m/z ratio is a cluster). Next, in each iteration, new clusters are formed by merging clusters with minimum inter-cluster distance. See [22] for a detailed discussion. Note that contrary to the distance function given in [21], where the measurement error is a function of the measured mass, we use an absolute measure of distance to define the mass distance function. This is due to the fact that the mass analyzer used in this study has a measurement error approximated to be constant for the m/z range between 200.08 and 1000.
C. Identified Features
Next, we apply the RFE framework presented in Section II-B to the classification problem involving two glioma subtypes, namely, astrocytoma and oligodendroglioma. Here, we perform feature selection and concurrently evaluate the classifier’s performance. In order to assess the performance of the SVM classifier, a k-fold cross-validation method is used [22]. Specifically, the collection of all available samples is partition into k subsets. The SVM classifier is trained on k − 1 subsets and tested on the remaining subset. This process is repeated k times so that the classifier is tested on all available partitions. In each run of cross-validation, the RFE is applied to the training set.
For the mass spectrometry data set a total of 821 bins of size less than 1 m/z were identified, that is, each spectrum resides in a 821-dimensional space. The average accuracy for the classification of astrocytoma and oligodendroglioma mass spectrometry samples using an SVM classifier with a linear kernel is given in Figure 1, where we used a 4-fold cross-validation. We notice in Figure 1 that the classifier performance starts degrading at iteration 680 of the RFE framework. Note that the set of selected features by the RFE framework is not necessarily the same in each run of cross-validation. The set of features retained by the RFE framework in iteration 680 for all 4 cross-validation runs was chosen for further analysis.
In order to identify significant features, a histogram of the selected features (i.e., m/z values) for all 4 runs of cross-validation is computed. The histogram is given in Figure 2 and a list of m/z values which have appeared at least 3 times (out of 4 possible appearances) is given in Table II.
TABLE II. Selected m/z values identified by the RFE framework.
203 | 264.1 | 303.2 | 381.1 | 778.3 | 814.3 | 869.7 | 892.7 |
207.1 | 266.3 | 306.3 | 538.6 | 787.3 | 821.4 | 878.7 | 903.7 |
215.3 | 271.1 | 309.3 | 722.7 | 788.5 | 835.3 | 885.6 | 906.7 |
225.2 | 275.1 | 312.5 | 723.7 | 789.5 | 836.7 | 886.6 | 907.7 |
239.2 | 279.3 | 321.2 | 738.7 | 790.4 | 837.6 | 887.7 | 916.7 |
241.3 | 283.4 | 326.3 | 739.7 | 795.3 | 840.7 | 888.7 | 917.7 |
251.1 | 293.3 | 327.3 | 748.7 | 810.4 | 841.7 | 889.7 | 918.7 |
253.4 | 300.1 | 328.3 | 765.7 | 812.5 | 857.7 | 890.7 | 920.7 |
263.1 | 301.1 | 367.1 | 773.6 | 813.3 | 859.7 | 891.7 | 970.7 |
D. Discussion
In this section, we underline the significance of the features selected in the classification problem involving astrocytomas and oligodendrogliomas from a biochemical perspective. Under the experimental DESI mass spectrometry conditions used for tissue analysis, the majority of the molecules extracted and detected constituted of free fatty acids, corresponding dimers, and lipids. In previous work, we identified some lipids that discriminated astrocytoma grades by qualitative assessment of imaging spectra, but the approach was limited for the assessment of glioma subtype [14]. The general observation was that sulfatides appeared to have discrimination power as they were typically observed from astrocytomas and absent in oligodendriogliomas, but their absence from astrocytomas grade IV prevented us from drawing such conclusions.
In a follow-up study [15], we observed that the lipid profile of a grade III astrocytoma contains lipid species of all glycerophosphoserines (PS), glycerophosphoinositols (PI), and sulfatides (ST) classes, whereas the grade III oligodendroglioma shows a distinct profile of lipid species with PS(40:4) m/z 838.3, and PI(38:4) m/z 885.5 present at much higher relative abundances than observed in the pure astrocytoma. Using a combination of in-house programs and commercial software solution (ClinProTools), we were able to classify subtypes of gliomas using SVM, but have found considerable limitations in data pre-processing workflow and feature selection. The approach presented in this paper provides a solution to this problem by providing a framework to systematically select relevant features for classification.
TABLE I. Recursive Feature Elimination.
Acknowledgments
This research was supported in part by a grant from the James S. McDonnell Foundation, Daniel E. Ponton Fund for the Neurosciences, the NIH Director’s New Innovator Award DP2 OD007383, the National Center for Research Resources P41-RR-013218, and the National Institute of Biomedical Imaging and Bioengineering P41-EB-015902 of the National Institutes of Health. This work is part of the National Alliance for Medical Image Computing (NA-MIC), funded by the National Institutes of Health through the NIH Roadmap for Medical Research, Grant U54 EB005149. Information on the National Centers for Biomedical Computing can be obtained from http://nihroadmap.nih.gov/bioinformatics.
Contributor Information
Behnood Gholami, Department of Neurosurgery, Brigham and Women’s Hospital, Harvard Medical School, Boston, MA, 02115 and the Broad Institute of Harvard and MIT bgholami@bwh.harvard.edu.
Isaiah Norton, Department of Neurosurgery, Brigham and Women’s Hospital, Harvard Medical School, Boston, MA, 02115 inorton@partners.org.
Allen R. Tannenbaum, Departments of Electrical & Computer and Biomedical Engineering, Boston University, Boston, MA 02215, tannenba@bu.edu
Nathalie Y. R. Agar, Departments of Neurosurgery and Radiology, Brigham and Women’s Hospital, Harvard Medical School, Boston, MA, 02115 nagar@bwh.harvard.edu
References
- [1].Jemal A, Siegel R, Ward E, Hao Y, Xu J, Murray T, Thun MJ. Cancer statistics, 2008. CA. 2008;58:71–96. doi: 10.3322/CA.2007.0010. [DOI] [PubMed] [Google Scholar]
- [2].Stupp R, Hegi ME, Mason WP, van den Bent MJ, Taphoorn MJ, Janzer RC, Ludwin SK, Allgeier A, Fisher B, Belanger K, Hau P, Brandes AA, Gijtenbeek J, Marosi C, Vecht CJ, Mokhtari K, Wesseling P, Villa S, Eisenhauer E, Gorlia T, Weller M, Lacombe D, Cairncross JG, Mirimanoff R. Effects of radiotherapy with concomitant and adjuvant temozolomide versus radiotherapy alone on survival in glioblastoma in a randomised phase III study: 5-year analysis of the EORTC-NCIC trial. Lancet Oncology. 2009;10:459–466. doi: 10.1016/S1470-2045(09)70025-7. [DOI] [PubMed] [Google Scholar]
- [3].Grossman SA, Ye X, Piantadosi S, Desideri S, Nabors LB, Rosenfeld M, Fisher J. Survival of patients with newly diagnosed glioblastoma treated with radiation and temozolomide in research studies in the united states. Clin. Cancer Res. 2010;16:2443–2449. doi: 10.1158/1078-0432.CCR-09-3106. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [4].Kleihues P, Soylemezoglu F, Schuble B, Scheithauer BW, Burger PC. Histopathology, classification, and grading of gliomas. Glia. 1995;15:211–221. doi: 10.1002/glia.440150303. [DOI] [PubMed] [Google Scholar]
- [5].Louis D, Ohgaki H, Wiestler O, Cavenee W, Burger P, Jouvet A, Scheithauer B, Kleihues P. The 2007 WHO classification of tumors of the central nervous system. Acta Neuropathologica. 2007;114:97–109. doi: 10.1007/s00401-007-0243-4. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [6].Wenk MR. The emerging field of lipidomics. Nature Rev. Drug Discov. 2005;4:594. doi: 10.1038/nrd1776. [DOI] [PubMed] [Google Scholar]
- [7].Astrakas LG, Zurakowski D, Tzika AA, Zarifi MK, Anthony DC, De Girolami U, Tarbell NJ, Black PM. Noninvasive magnetic resonance spectroscopic imaging biomarkers to predict the clinical grade of pediatric brain tumors. Clin. Cancer Res. 2004;10:8220–8228. doi: 10.1158/1078-0432.CCR-04-0603. [DOI] [PubMed] [Google Scholar]
- [8].Panigrahy A, Nelson MD, Finlay JL, Sposto R, Krieger MD, Gilles FH, Bluml S. Metabolism of diffuse intrinsic brainstem gliomas in children. Neuro Oncol. 2008;10:32–44. doi: 10.1215/15228517-2007-042. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [9].Agar NYR, Golby AJ, Ligon KL, Norton I, Mohan V, Wiseman JM, Tannenbaum A, Jolesz FA. Development of stereotactic mass spectrometry for brain tumor surgery. Neurosurgery. 2011;68:280–290. doi: 10.1227/NEU.0b013e3181ff9cbb. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [10].Petricoin EF, III, Ardekani AM, Hitt BA, Levine PJ, Fusaro VA, Steinberg SM, Mills GB, Simone C, Fishman DA, Kohn EC, Liotta LA. Use of proteomic patterns in serum to identify ovarian cancer. The Lancet. 2002 Feb;359(9306):572–577. doi: 10.1016/S0140-6736(02)07746-2. [DOI] [PubMed] [Google Scholar]
- [11].Tibshirani R, Hastie T, Narasimhan B, Soltys S, Shi G, Koong A, Le Q. Sample classification from protein mass spectrometry by peak probability contrasts. Bioinformatics. 2004;20:3034–3044. doi: 10.1093/bioinformatics/bth357. [DOI] [PubMed] [Google Scholar]
- [12].Semmes OJ, Feng Z, Adam B, Banez LL, Bigbee WL, Campos D, Cazares LH, Chan DW, Grizzle WE, Izbicka E, Kagan J, Malik G, McLerran D, Moul JW, Partin A, Prasanna P, Rosenzweig J, Sokoll LJ, Srivastava S, Srivastava S, Thompson I, Welsh MJ, White N, Winget M, Yasui Y, Zhang Z, Zhu L. Evaluation of serum protein profiling by Surface-Enhanced laser Desorption/Ionization Time-of-Flight mass spectrometry for the detection of prostate cancer: I. assessment of platform reproducibility. Clin. Chem. 2005;51:102–112. doi: 10.1373/clinchem.2004.038950. [DOI] [PubMed] [Google Scholar]
- [13].Agar NYR, Malcolm JG, Mohan V, Yang HW, Johnson MD, Tannenbaum A, Agar JN, Black PM. Imaging of meningioma progression by Matrix-Assisted laser desorption ionization Time-of-Flight mass spectrometry. Anal. Chem. 2010;82(7):2621–2625. doi: 10.1021/ac100113w. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [14].Eberlin LS, Dill AL, Golby AJ, Ligon KL, Wiseman JM, Cooks RG, Agar NYR. Discrimination of human astrocytoma subtypes by lipid analysis using desorption electrospray ionization imaging mass spectrometry. Angew. Chem. Int. Ed. Engl. 2010;49:5953–5956. doi: 10.1002/anie.201001452. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [15].Eberlin LS, Norton I, Dill AL, Golby AJ, Ligon KL, Santagata S, Cooks RG, Agar NYR. Classifying human brain tumors by lipid imaging with mass spectrometry. Cancer Res. 2012;72:645–654. doi: 10.1158/0008-5472.CAN-11-2465. [DOI] [PMC free article] [PubMed] [Google Scholar]
- [16].Bishop CM. Pattern Recognition and Machine Learning. Springer; New York, NY: 2006. [Google Scholar]
- [17].Guyon I, Weston J, Barnhill S, Vapnik V. Gene selection for cancer classification using support vector machines. Mach. Learn. 2002;46:389–422. [Google Scholar]
- [18].Morris JS, Coombes KR, Koomen J, Baggerly KA, Kobayashi R. Feature extraction and quantification for mass spectrometry in biomedical applications using the mean spectrum. Bioinformatics. 2005;21(9):1764–1775. doi: 10.1093/bioinformatics/bti254. [DOI] [PubMed] [Google Scholar]
- [19].Yasui Y, Pepe M, Thompson ML, Adam BL, Wright GL, Qu Y, Potter JD, Winget M, Thornquist M, Feng Z. A data-analytic strategy for protein biomarker discovery: Profiling of high-dimensional proteomic data for cancer detection. Biostatistics. 2003;4:449–463. doi: 10.1093/biostatistics/4.3.449. [DOI] [PubMed] [Google Scholar]
- [20].Coombes K, Baggerly K, Morris J. Pre-processing mass spectrometry data. In: Dubitzky W, Granzow M, Berrar D, editors. Fundamentals of Data Mining in Genomics and Proteomics. Kluwer; 2007. pp. 79–99. [Google Scholar]
- [21].Prados J, Kalousis A, Sanchez J-C, Allard L, Carrette O, Hilario M. Mining mass spectra for diagnosis and biomarker discovery of cerebral accidents. Proteomics. 2004;4(8):2320–2332. doi: 10.1002/pmic.200400857. [DOI] [PubMed] [Google Scholar]
- [22].Hastie T, Tibshirani R, Friedman J. The Elements of Statistical Learning: Data Mining, Inference, and Prediction. Springer; New York: 2008. [Google Scholar]