Next Article in Journal
Resveratrol Suppresses the Growth and Enhances Retinoic Acid Sensitivity of Anaplastic Thyroid Cancer Cells
Next Article in Special Issue
SeqSVM: A Sequence-Based Support Vector Machine Method for Identifying Antioxidant Proteins
Previous Article in Journal
Genome-Wide Analyses of the NAC Transcription Factor Gene Family in Pepper (Capsicum annuum L.): Chromosome Location, Phylogeny, Structure, Expression Patterns, Cis-Elements in the Promoter, and Interaction Network
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

PCLPred: A Bioinformatics Method for Predicting Protein–Protein Interactions by Combining Relevance Vector Machine Model with Low-Rank Matrix Approximation

1
Department of Information Engineering, Xijing University, Xi’an 710123, China
2
Xinjiang Technical Institute of Physics and Chemistry, Chinese Academy of Science, Urumqi 830011, China
3
School of Computer Science and Technology, China University of Mining and Technology, Xuzhou 21116, China
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Int. J. Mol. Sci. 2018, 19(4), 1029; https://doi.org/10.3390/ijms19041029
Submission received: 2 March 2018 / Revised: 20 March 2018 / Accepted: 21 March 2018 / Published: 29 March 2018
(This article belongs to the Special Issue Special Protein or RNA Molecules Computational Identification 2018)

Abstract

:
Protein–protein interactions (PPI) are key to protein functions and regulations within the cell cycle, DNA replication, and cellular signaling. Therefore, detecting whether a pair of proteins interact is of great importance for the study of molecular biology. As researchers have become aware of the importance of computational methods in predicting PPIs, many techniques have been developed for performing this task computationally. However, there are few technologies that really meet the needs of their users. In this paper, we develop a novel and efficient sequence-based method for predicting PPIs. The evolutionary features are extracted from the position-specific scoring matrix (PSSM) of protein. The features are then fed into a robust relevance vector machine (RVM) classifier to distinguish between the interacting and non-interacting protein pairs. In order to verify the performance of our method, five-fold cross-validation tests are performed on the Saccharomyces cerevisiae dataset. A high accuracy of 94.56%, with 94.79% sensitivity at 94.36% precision, was obtained. The experimental results illustrated that the proposed approach can extract the most significant features from each protein sequence and can be a bright and meaningful tool for the research of proteomics.

Graphical Abstract

1. Introduction

Protein–protein interactions (PPI) are a key step in the realization of protein function within cell cycle progression, DNA replication, and signal transmission [1,2,3]. With the development of high-throughput biological technologies, including a yeast two-hybrid screen (Y2H) [4], protein chip technology [5], mass spectrometry [6], and tandem affinity purification tagging (TAP) [7], more PPI data have been accumulated [8]. PPI datasets have been stored in a number of constructed databases, such as the Molecular Interaction database (MINT), the Database of Interacting Proteins (DIP), and the Biomolecular Interaction Network Database (BIND) [8,9,10]. However, experimental methods are labor-intensive and time-consuming. The number of PPIs that are validated by these methods represents only a small portion of the entire PPI network. Moreover, the experimental methods are usually associated with a high rate of both false negative and false positive predictions. All of these drawbacks encourage further research into a computational approach for identifying PPIs.
Different kinds of available protein data are obtained by previous experimental methods, such as the primary, secondary, and tertiary structure of proteins. In order to utilize this wealth of protein data, numerous machine learning approaches have been designed to infer new PPIs. It is popular, among these approaches, to predict PPIs based on the structure of the protein information. For example, Agrawal et al. [11] proposed a computational tool—named a spatial interaction map (SIM)—that utilizes the structure of unbound proteins to detect the residues from PPIs. Qiu et al. [12] presented a novel residue characterization model, based on 3D structures, for the purpose of detecting PPIs. These computational methods—based on structural data—identify the interaction domain by analyzing the hydrophobicity, solvation, protrusion, and accessibility of residues. Since the volume of newly discovered protein sequence data is increasing exponentially, there is an increasingly larger gap between the volume of complex protein structure data, and that of protein sequence data [13,14]. Predicting PPIs based on structure data does not satisfy the requests of the many biochemists who have the sequences, but no structural data. Therefore, it is more important to develop effective computational models based on protein sequence data.
Currently, there are a number of different computational methods designed to implement this pattern in PPI prediction [15,16,17,18,19,20,21,22,23]. The common computational models for PPI prediction are composed of two key parts, namely, protein feature representation and sample classification. The purpose of the first step is to represent the proteins with useful attributes and transform the samples into feature vectors that are the same size as the sample classifier’s inputs. Effective feature descriptors can play an important role in improving the prediction performance of the system.
Previous studies have shown that the evolutionary information on proteins may play a crucial role in predicting PPIs [24,25]. However, it is not easy to include evolutionary information in a protein sequence [26,27,28]. There is currently no single protein presentation method that takes full advantage of protein evolutionary information. Additionally, sequence evolution information is more difficult to use because of the differences in protein sequence length. In the face of such difficulties, how do we design a way to use the evolution information of proteins to implement the prediction of PPIs efficiently? In order to overcome this problem, we proposed a novel scheme that uses a position-specific scoring matrix (PSSM) to translate the protein sequence into a matrix, in which both the evolutionary information and the amino acid composition are included. Following this, we introduced a low-rank approximation (LRA) method to find the lowest level representation of all of the candidates and accurately recover the row space of the data to achieve high precision.
With regards to the second issue, some machine learning algorithms—such as random forests, neural networks, ensemble classifiers, random projections, and Naïve Bayes classifiers—are proposed for detecting PPIs to improve the accuracy of the prediction model [29,30,31]. The main trend in computational PPI detection is to achieve the highest precision, rather than speed, in the training of the classified model. Recently, relevance vector machines (RVMs) are a new statistical learning technique that provide the output of the probability classification, which uses Bayesian inferences to obtain a concise solution for the regression and classification [32]. Unlike support vector machines (SVM), RVM classifiers—with fewer input variables—provide better classification estimates for small, high dimensional datasets [33]. In this paper, the performances of RVMs and SVMs for classifying PPIs were compared. Using the PPI dataset, we show that the proposed method can quickly and effectively differentiate interactive protein pairs from large-scale data. The results of the experiment indicate that the proposed technique can complement experimental approaches for identifying PPI interactions.
In this paper, we proposed a novel protein representation method using protein evolutionary information. The main improvement was attributed to the use of LRA, a PSSM, and RVMs. In particular, we first used an LRA method on a PSSM that represented protein in a matrix form to obtain the feature vectors of the protein. Following this, the principal component analysis (PCA) method was employed to eliminate some of the noise and reduce the dimensions of the feature vectors. Finally, we used RVM classifiers to carry out the test. The proposed method was performed on the Yeast PPI dataset. The experimental results show that it is superior to SVM-based methods and other excellent technology that has been developed previously. Therefore, this approach is fit for predicting PPIs. Additionally, a user-friendly web server for predicting PPIs, PCLPred, was developed for academic users at http://219.219.62.123:8888/pclpred/.
The rest of this paper is organized as follows: Section 2 introduces the test results obtained from applying the proposed method, the SVM-based method, and several other existing methods. Section 3 describes the proposed approach. Section 4 summarizes the work presented in this paper.

2. Results and Discussion

2.1. Five-Fold Cross-Validation

In this study, five-fold cross-validation methods were utilized to compare the performance of this model with other competing approaches. The whole PPI dataset is randomly divided into five roughly-equivalent subsets, each containing approximately equal amounts of interacting and non-interacting proteins. Four of the subsets are used for training and the remaining one is used for the test. This process is repeated five times, using a different subset of the test each time. The average of the five results is then calculated to ensure the highest level of fairness.

2.2. Comparison with the SVM-Based Approach Using the Same Feature Representation

In order to effectively assess the performance of the SVM classifier, we compared its performance with that of a state-of-the-art SVM classifier with the same feature extraction method on the Yeast dataset [34]. The LIBSVM (A Library for Support Vector Machines) tool provides an interface to facilitate the use of the SVM classifier. The cross-validation strategy is employed to optimize the related parameters of the SVM. Consequently, the parameters (c, g) are set to 0.8 and 0.4, respectively. Furthermore, the radial basis function is taken as the kernel function.
The result of applying the two methods to the Yeast dataset are presented in Table 1, and the corresponding receiver operating characteristic (ROC) curves are shown in Figure 1. The prediction performance of the SVM classifier can be seen, from Table 1, to have achieved 89.4% accuracy, 88.5% sensitivity, 90.3% specificity, and 81.1% Matthews Correlation Coefficient (MCC). The average prediction results of applying the RVM classifier were 94.6% accuracy (which is 5.2% higher than the SVMs classifier) and 94.8% sensitivity (which is 6.3% higher than SVMs classifier). Several other indicators of the RVM classifier’s performance—shown in Table 1—are 4.0% above the performance of the SVM classifier. This comparison proves that the effect of using the RVM classifier to predict PPIs can be clearly distinguished from the effect of using the SVM classifier. Additionally, Figure 1 indicates that the ROC curves of the two classifiers also show that RVM classifier can be more powerful in detecting PPI performance than the SVM classifier.
The reasons for this method producing better classification results come from the following points: (1) Based on a Bayesian framework to build a learning machine, the RVM classifier is conducive to making more scientific decisions based on the information; (2) in the choice of the kernel function, the RVM classifier is not limited by the Mercer theorem, and can construct any kernel function; (3) there is no need to set penalties. The penalty factor in the SVM classifier is a constant that balances the empirical risk and the confidence interval. The experimental results are very sensitive to the data. An improper setting may cause over-learning and other problems. The parameters in the RVM classifier, however, are automatically assigned; (4) compared to the SVM classifier, the RVM classifier is sparser, which means that the test time is shorter, making it more suitable for online testing. It is well known that the number of SVM support vectors grows linearly with the increase of the training samples, which is obviously not convenient when the training samples are very large. Although the RVM correlation vector also increases with the training samples, the growth rate is much slower than that of the SVM support vectors; and (5) previous research indicates that the RVM classifier has a better generalization performance than the SVM classifier. Additionally, when compared with the SVM classifier, the RVM classifier not only produces a binary output, but also gets the probability of the output.

2.3. A Comparison of the Proposed Method with Other Methods

Currently, many methods that are based on machine learning theory have been proposed for sequences-based PPIs. To assess the ability of the proposed approach, several existing techniques [35] are applied to the Yeast dataset and their results are compared to the results of our method. The comparison of the results of these methods is listed in Table 2. Table 2 clearly indicates that the proposed method achieved the highest average accuracy (94.6%) out of all of these methods. At the same time, the sensitivity and precision of the proposed technique are also superior to those of the other techniques. All of these results indicated that the RVM classifier, using the features vector that was extracted by the PSSM, LRA, and the PCA method, can substantially improve the quality of PPI prediction. This is mainly because of the efficient feature extraction strategy and the powerful classifier.

2.4. An Assessment of the Prediction Performance on the Helicobacter pylori PPI Dataset

In order to further investigate the prediction performance of our approach, we also compared the proposed approach with several other existing methods on the Helicobacter pylori PPI dataset. The prediction results for the abovementioned methods are reported in Table 3. In order to achieve a fair measure of randomness, we calculated the average of the measure values over five runs. We can observe from Table 3 that this method can achieve a good result, with 84.7% accuracy, 85.9% precision, and 84.4% sensitivity. It should be noticed that the precision and accuracy achieved by the proposed method are superior to those of the other methods.

3. Materials and Methods

3.1. Dataset

In this paper, the proposed approach was verified on the high-confidence Yeast and Helicobacter pylori PPI datasets. We gathered the Yeast dataset from the publicly available Database of Interacting Proteins (DIP) [8]. For the purpose of ensuring the effectiveness of the experiment, we removed the protein pairs of less than fifty residues and greater than 40% sequence identity. By performing this screening work, the remaining 5594 protein pairs are reserved for building the positive dataset. The additional 5594 non-interacting protein pairs, with different subcellular localizations, were then used to build the negative dataset. As a result, the whole Yeast dataset finally consisted of 11,188 protein pairs. In order to further verify the general applicability of the proposed method, we also evaluated our method on the Helicobacter pylori PPI dataset. In total, we obtained 1458 positive samples and 1458 negative samples, as described by Martin et al. [39].

3.2. Position Specific Scoring Matrix (PSSM)

PSSM is a type of scoring matrix that was proposed by Gribskov et al. [24]. It is used to perform BLAST (Basic Local Alignment Search Tool) searches, where amino acid substitution scores are assigned to a specific location in the proteins’ multiple sequence alignments. It has been successfully applied in various fields of biological information because it contains the evolutionary information of proteins. PSSM is represented as a T × 20 matrix that can be interpreted as M = { c i , j : i = 1 T   and   j = 1 20 } . The representation of PSSM is as follows:
M = [ c 1 , 1 c 1 , 2   c 1 , 20 c 2 , 1 c 2 , 2   c 2 , 20         c L , 1 c L , 2   c L , 20 ]
The elements in this matrix are generally expressed as integers (negative or positive). A higher score indicates that a given amino acid substitution occurs frequently in the alignment, while a lower score indicates a lower frequency of the substitution.
We created the PSSM using a Position-Specific Iterated BLAST (PSI-BLAST, Bethesda, MD, USA), which found a protein sequence that was similar to the query sequence, and then constructed the PSSM from the obtained alignment. In this work, we set the number of iterations to three and the e-value to 0.001 and t, respectively, in order to obtain a highly broad homologous sequence.

3.3. Low-Rank Approximation (LRA)

LRA is a widely used method for matrix analysis, where the cost function measures the fit between an approximation matrix (optimization variable) and a given sparse matrix, constrained by the reduced rank of the approximation matrix [40,41]. In this case, using LRA on the PSSM of the obtained protein sequences results in a descriptor containing evolutionary information that is used for representing a protein. For a 20 × L feature matrix N, the LRA would be written as follows:
min N ^ N N ^ F
Subject   to :   r a n k ( N ^ ) r
where F represents the Frobenius norm. Formula (2) is solved using the singular value decomposition (SVD) method.
Let N = U V T R m × n be the SVD of N and partition U, = : d i a g ( σ 1 , σ 2 , σ 3 , , σ 20 ) , and V as follows:
U = : [ U 1 U 2 ] ,   = : [ 1 0 0 2 ] ,   and   V = : [ V 1 V 2 ]
where 1 is a square array of r. U1 and V1 represent different matrices, and their sizes are m × r and n × r. The rank-r matrix can then be gained as follows:
N ^ * = U 1 1 V 1 T
where N N ^ * F = min r a n k ( N ^ ) r N N ^ F = σ r + 1 2 + σ r + 2 2 + + σ m 2 .
The Σ 1 1 2 , with dimensions r-by-r, can be obtained by computing the square root of the reduced matrix Σ 1 , in which the sequence order information of the protein is contained. It is noteworthy that the feature matrix N of the protein may have a different number of columns, which is caused by the unequal lengths of protein sequences. However, the U 1 Σ 1 1 2 is a fixed length (a 20 × r matrix).
We form a vector from the gained matrix U 1 Σ 1 1 2 by concatenating all of the rows, from row 1 to 20, of matrix U 1 Σ 1 1 2 . Therefore, the feature descriptor consists of a total of 20 × r descriptor values. Considering the trade-off between the cost of computing for extracting the protein feature and the overall prediction accuracy, the optimal rank is 5. We connect the descriptors of the two protein sequences to represent an interaction pair.

3.4. Properties of the Proposed Algorithm

Based on orthogonal triangular decomposition theory and LRA theory, the properties of the PSSM feature extraction algorithm are deduced.
Lemma 1.
Suppose that matrix N ^ * in (5) satisfies (3). For the Frobenius norm, if r r a n k ( N ) , then N ^ * is unique if and only if N’s r t h and ( r + 1 ) t h largest singular values differ.
Proof. 
N ^ * is a solution to
N ^ * : = arg min M ^ N N ^ F
s . t . r a n k ( N ^ ) r .
and N ^ * : = U * * ( V * ) T is an SVD of N ^ * . Based on the single invariance of the Frobenius norm, we have
N N ^ * F = ( U * ) T ( N N ^ * ) V * F = ( U * ) T N V * * F
where ( U * ) T N V * = N ^ . Partition
N ^ = [ N ^ 11 N ^ 12 N ^ 21 N ^ 22 ]
conformably with * = [ * 1 0 0 0 ] and observe that
r a n k ( [ * 1 N ^ 12 0 0 ] ) m and N ^ 12 0 N ^ [ * 1 N ^ 12 0 0 ] F < N ^ [ * 1 0 0 0 ] F
Thus, N ^ 12 = 0 . Similarly, N ^ 21 = 0 . Observe also that
r a n k ( [ N ^ 11 0 0 0 ] ) m and   N ^ 11 1 * N ^ [ N ^ 11 0 0 0 ] F < N ^ [ * 1 0 0 0 ] F
Thus, N ^ 11 = 1 * . Therefore,
N ^ = [ * 1 0 0 N ^ 22 ]
Let N ^ 22 = U 22 22 V 22 T be the SVD of N ^ 22 . Then the matrix
[ I 0 0 U 22 T ] N ^ [ I 0 0 V 22 ] = [ 1 * 0 0 22 ]
has the optimal rank-m approximation * = [ 1 * 0 0 0 ] , such that
min ( d i a g ( 1 * ) ) > max ( d i a g ( 22 ) )
Therefore,
N = U * [ I 0 0 U 22 ] [ 1 * 0 0 22 ] [ I 0 0 V 22 T ] ( V * ) T is an SVD of N.
Thus, if σ m > σ m + 1 , the rank-m truncated SVD
N ^ * = U * [ 1 * 0 0 22 ] ( V * ) T = U * [ I 0 0 U 22 ] [ 1 * 0 0 0 ] [ I 0 0 V 22 T ] ( V * ) T
is unique and N ^ * is the unique solution of LRA. □
The salient feature of Lemma 1 is that, although the rank constraint is highly non-convex and non-linear, one is still able to efficiently solve (2) using the SVD method. Additionally, under all of the consistent rules, there is an optimal solution under the Frobenius norm.

3.5. Relevance Vector Machine (RVM) Model

The RVM model is a probabilistic model under a Bayesian framework, developed by Tipping et al. [32,33,42]. It has been widely applied for solving classification and regression problems. Assuming that the training datasets are (xn,yn)n=1N for binary classification problems, x n R d is the training sample; t n ( 0 , 1 ) denotes the label of the training dataset ; t i is the label of the testing dataset; t i = b i + ε i , where b i = w T φ ( x i ) = j = 1 N w j K ( x i , x j ) + w 0 , is the classification model; and ε i is the additional noise, with a variance of σ 2 and a mean value of zero, where ε i ~ N ( 0 , σ 2 ) , y i ~ N ( b i , σ 2 ) . The training datasets are assumed to be independent and distributed identically. The observation of vector t follows the distribution as follows:
m ( y | x , c , σ 2 ) = ( 2 π σ 2 ) N / 2 exp [ 1 2 σ 2 | | y c | | 2 ]
where meets the following definition:
= ( 1 k ( x 1 , x 1 ) k ( x 1 , x N ) ) 1 k ( x N , x 1 ) k ( x , x N ) )
The method used by the RVMs to predict the label t * of a test sample is given by:
m ( y * | y ) = p ( y * | c , σ 2 ) p ( c , σ 2 | y ) d w d σ 2
In order to reduce the computational complexity of the kernel function and ensure that the majority of the weight vector has a value of zero, the weight vector w is limited by extra conditions. Assuming that c i ~ N ( 0 ,   x i 1 ) , p ( w | x ) = i = 0 N p ( c i | x i ) , where x is a hyper-parameters vector.
m ( t * | t ) = p ( t * | w , x , σ 2 ) p ( c , x , σ 2 | t ) d w d a d σ 2
m ( t * | c , x , σ 2 ) = N ( t *   | b ( a * ; c ) , σ 2 )
We get p ( c , x , σ 2 | t ) using the Bayesian formula
m ( c , x , σ 2 | t ) = p ( x , σ 2 | t ) p ( x | x , σ 2 , t )
m ( c | x , σ 2 , t ) = p ( t | c , σ 2 ) p ( c | x ) / p ( t | x , σ 2 )
The integral of the product of p ( t | x , σ 2 ) and p ( c | x ) is given by
m ( t | x , σ 2 ) = ( 2 π ) N / 2 | Ω | 1 / 2 exp ( t T Ω 1 t 2 )
Ω = σ 2 I + A 1 T ,   A = d i a g ( x 0 , x 1 , , x N )
m ( c | x , σ 2 , t ) = ( 2 π ) ( N + 1 ) / 2 | Σ | 1 / 2 exp ( ( c u ) T ( c u ) 2 )
Σ = ( σ 2 T + A ) 1
u = σ 2 Σ T t
The maximum likelihood method was used to solve m ( x , σ 2 | t ) m ( t | x , σ 2 ) m ( x ) m ( σ 2 ) and   m ( x , σ 2 | t ), and is represented by
( x M P , σ M P 2 ) = arg   x , σ 2 m a x p ( t | x , σ 2 )
The iterative process of x M P and σ M P 2 is as follows:
{ x i n e w = γ i μ i 2 ( σ 2 ) n e w = | | t μ | | 2 N i = 0 N μ i γ i = 1 x i i , i
where i , i represents the i th element on the diagonal of Σ , and the initial value of a and σ 2 are determined via the approximation of a M P and σ M P 2 , by continuously using Formula (19).

3.6. Procedure of the Proposed Method

In the study, the workflow of the PCLPred method is presented in Figure 2. More specifically, the protein amino acids sequence datasets are downloaded from DIP. The CD-HIT (Cluster Database at High Identity with Tolerance) and PSI-BLAST programs are then used to remove sequence redundancy and generate PSSM, respectively [43]. Following this, LRA is employed to obtain the feature representation from PSSM, which contains a large volume of valuable evolutionary knowledge for PPI prediction. After the dimensionality reduction—using the PCA technique—the significant features are extracted and used as input features to train the RVM classifier. Finally, the prediction performance is evaluated using five-fold cross-validations [44,45,46,47,48].

3.7. Performance Evaluation

In order to evaluate the performance of the designed model, a number of validation measures are employed.
(1) Overall prediction accuracy:
A c c u r a c y = T P + T N T P + F P + T N + F N
(2) Sensitivity:
S e n s i t i v i t y = T P T P + F N
(3) Specificity:
S p e c i f i c i t y = T N T N + F P
(4) Positive predictive value:
P P V = T P T P + F P
(5) Negative predictive value:
N P V = T N T N + F N
(6) F-score:
F s = 2 × S e n × P P V S e n + P P V
(7) Matthews correlation coefficient:
M C C = T P × T N F P × F N ( T P + F N ) × ( T N + F P ) × ( T P + F P ) × ( T N + F N )
where TP is true positive, indicating that the total number of interactive proteins will be predicted correctly; FP is false positive, indicating the total number of these proteins pairs that have no interaction, but are determined as interacting; FN is false negative, indicating the total number of interactive proteins that are determined as non-interacting; and TN is true negative, indicating the total number of these proteins pairs that have no interaction that are determined correctly. Additionally, the ROC curve is adopted as a measure that is used to evaluate the prediction performance of the different methods [49,50].

4. Conclusions

In this study, we proposed a novel computation-based automated decision-making method by employing the RVM model combined with the LRA method and PSSM. More specifically, LRA is employed to obtain the feature representation from PSSM, which contains a large volume of valuable evolutionary knowledge for PPI prediction. The RVM classifier is then applied to predict novel PPIs. Extensive computational experiments are performed on several PPI datasets in order to evaluate the PPI identification ability of the developed approach. These experimental results have proven that the PPI identification ability of this approach is clearly stronger than that of the SVM-based method and several other existing approaches. The promising results demonstrate that the proposed method is an efficient and reliable approach to detecting PPIs. It is also a practical tool that will help to advance research in the field of bioinformatics.

Acknowledgments

This study is supported by the National Science Foundation of China and the Pioneer Hundred Talents Program of Chinese Academy of Sciences, under Grants 61572506.

Author Contributions

Li-Ping Li, Yan-Bin Wang, Zhu-Hong You prepared the data sets, conceived the algorithm, carried out the analyses, carried out experiments, and Yang Li and Ji-Yong An wrote the manuscript. All authors read and approved the final manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Uetz, P.; Giot, L.; Cagney, G.; Mansfield, T.A.; Judson, R.S.; Knight, J.R.; Lockshon, D.; Narayan, V.; Srinivasan, M.; Pochart, P.; et al. A comprehensive analysis of protein-protein interactions in saccharomyces cerevisiae. Nature 2000, 403, 623–627. [Google Scholar] [CrossRef] [PubMed]
  2. Zhang, Q.C.; Petrey, D.; Deng, L.; Qiang, L.; Shi, Y.; Thu, C.A.; Bisikirska, B.; Lefebvre, C.; Accili, D.; Hunter, T. Structure-based prediction of protein-protein interactions on a genome-wide scale. Nature 2012, 7421, 556–560. [Google Scholar] [CrossRef] [PubMed]
  3. Gavin, A.C.; Bosche, M.; Krause, R.; Grandi, P.; Marzioch, M.; Bauer, A.; Schultz, J.; Rick, J.M.; Michon, A.M.; Cruciat, C.M.; et al. Functional organization of the yeast proteome by systematic analysis of protein complexes. Nature 2002, 415, 141–147. [Google Scholar] [CrossRef] [PubMed]
  4. Ito, T.; Chiba, T.; Ozawa, R.; Yoshida, M.; Hattori, M.; Sakaki, Y. A comprehensive two-hybrid analysis to explore the yeast protein interactome. Proc. Natl. Acad. Sci. USA 2001, 98, 4569–4574. [Google Scholar] [CrossRef] [PubMed]
  5. Zhu, H.; Bilgin, M.; Bangham, R.; Hall, D.; Casamayor, A.; Bertone, P.; Lan, N.; Jansen, R.; Bidlingmaier, S.; Houfek, T. Global analysis of protein activities using proteome chips. Science 2001, 293, 2101–2105. [Google Scholar] [CrossRef]
  6. Nesvizhskii, A.I.; Keller, A.; Kolker, E.; Aebersold, R. A statistical model for identifying proteins by tandem mass spectrometry. Anal. Chem. 2003, 75, 4646–4658. [Google Scholar] [CrossRef] [PubMed]
  7. Puig, O.; Caspary, F.; Rigaut, G.; Rutz, B.; Bouveret, E.; Bragado-Nilsson, E.; Wilm, M.; Séraphin, B. The tandem affinity purification (tap) method: A general procedure of protein complex purification. Methods 2001, 24, 218–229. [Google Scholar] [CrossRef] [PubMed]
  8. Xenarios, I.; Salwínski, L.; Duan, X.J.; Higney, P.; Kim, S.M.; Eisenberg, D. Dip, the database of interacting proteins: A research tool for studying cellular networks of protein interactions. Nucleic Acids Res. 2002, 30, 303–305. [Google Scholar] [CrossRef] [PubMed]
  9. Chatr-Aryamontri, A.; Ceol, A.; Palazzi, L.M.; Nardelli, G.; Schneider, M.V.; Castagnoli, L.; Cesareni, G. Mint: The molecular interaction database. Nucleic Acids Res. 2010, 40, D572–D574. [Google Scholar] [CrossRef] [PubMed]
  10. Bader, G.D.; Donaldson, I.; Wolting, C.; Ouellette, B.F.F.; Pawson, T.; Hogue, C.W.V. Bind—The biomolecular interaction network database. Nucleic Acids Res. 2001, 29, 242–250. [Google Scholar] [CrossRef] [PubMed]
  11. Agrawal, N.J.; Helk, B.; Trout, B.L. A Computational Tool to Predict the Evolutionarily Conserved Protein-Protein Interaction Hot-Spot Residues from the Structure of the Unbound Protein; Asia Publishing Houser: Cambridge, MA, USA, 2014; pp. 326–333. [Google Scholar]
  12. Qiu, Z.; Wang, X. Prediction of protein-protein interaction sites using patch-based residue characterization. J. Theor. Biol. 2012, 293, 143–150. [Google Scholar] [CrossRef] [PubMed]
  13. Liu, B.; Xu, J.; Zou, Q.; Xu, R.; Wang, X.; Chen, Q. Using distances between top-n-gram and residue pairs for protein remote homology detection. BMC Bioinform. 2014, 15, S3. [Google Scholar] [CrossRef] [PubMed]
  14. Liu, B.; Wang, X.; Zou, Q.; Dong, Q.; Chen, Q. Protein remote homology detection by combining chou’s pseudo amino acid composition and profile-based protein representation. Mol. Inf. 2013, 32, 775–782. [Google Scholar] [CrossRef] [PubMed]
  15. Zhu, L.; You, Z.H.; Huang, D.S. Increasing the reliability of protein–protein interaction networks via non-convex semantic embedding. Neurocomputing 2013, 121, 99–107. [Google Scholar] [CrossRef]
  16. Huang, Q.; You, Z.; Zhang, X.; Zhou, Y. Prediction of protein–protein interactions with clustered amino acids and weighted sparse representation. Int. J. Mol. Sci. 2015, 16, 10855–10869. [Google Scholar] [CrossRef] [PubMed]
  17. Huang, Y.-A.; You, Z.-H.; Gao, X.; Wong, L.; Wang, L. Using weighted sparse representation model combined with discrete cosine transformation to predict protein-protein interactions from protein sequence. BioMed Res. Int. 2015, 2015, 902198. [Google Scholar] [CrossRef] [PubMed]
  18. Lei, Y.-K.; You, Z.-H.; Ji, Z.; Zhu, L.; Huang, D.-S. Assessing and predicting protein interactions by combining manifold embedding with multiple information integration. BMC Bioinform. 2012, 13, S3. [Google Scholar] [CrossRef] [PubMed]
  19. Luo, X.; Ming, Z.; You, Z.; Li, S.; Xia, Y.; Leung, H. Improving network topology-based protein interactome mapping via collaborative filtering. Knowl. Based Syst. 2015, 90, 23–32. [Google Scholar] [CrossRef]
  20. You, Z.H.; Zhou, M.; Luo, X.; Li, S. Highly efficient framework for predicting interactions between proteins. IEEE Trans. Cybern. 2017, 47, 731–743. [Google Scholar] [CrossRef] [PubMed]
  21. You, Z.-H.; Chan, K.C.; Hu, P. Predicting protein-protein interactions from primary protein sequences using a novel multi-scale local feature representation scheme and the random forest. PLoS ONE 2015, 10, e0125811. [Google Scholar] [CrossRef] [PubMed]
  22. You, Z.-H.; Lei, Y.-K.; Gui, J.; Huang, D.-S.; Zhou, X. Using manifold embedding for assessing and predicting protein interactions from high-throughput experimental data. Bioinformatics 2010, 26, 2744–2751. [Google Scholar] [CrossRef] [PubMed]
  23. Zhu, L.; You, Z.-H.; Huang, D.-S.; Wang, B. T-lse: A novel robust geometric approach for modeling protein-protein interaction networks. PLoS ONE 2013, 8, e58368. [Google Scholar] [CrossRef] [PubMed]
  24. Ahmad, S.; Sarai, A. Pssm-based prediction of DNA binding sites in proteins. BMC Bioinform. 2005, 6, 33. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  25. Li, Z.-W.; You, Z.-H.; Chen, X.; Li, L.-P.; Huang, D.-S.; Yan, G.-Y.; Nie, R.; Huang, Y.-A. Accurate prediction of protein-protein interactions by integrating potential evolutionary information embedded in pssm profile and discriminative vector machine classifier. Oncotarget 2017, 8, 23638. [Google Scholar] [CrossRef] [PubMed]
  26. Nanni, L. Hyperplanes for predicting protein–protein interactions. Neurocomputing 2005, 69, 257–263. [Google Scholar] [CrossRef]
  27. Nanni, L. Fusion of classifiers for predicting protein–protein interactions. Neurocomputing 2005, 68, 289–296. [Google Scholar] [CrossRef]
  28. Nanni, L. An ensemble of k-local hyperplanes for predicting protein-protein interactions. Neurocomputing 2006, 22, 1207–1210. [Google Scholar] [CrossRef] [PubMed]
  29. Wei, L.; Xing, P.; Shi, G.; Ji, Z.L.; Zou, Q. Fast prediction of protein methylation sites using a sequence-based feature selection technique. IEEE/ACM Trans. Comput. Biol. Bioinform. 2017. [Google Scholar] [CrossRef] [PubMed]
  30. Wei, L.; Tang, J.; Zou, Q. Local-dpp: An improved DNA-binding protein prediction method by exploring local evolutionary information. Inf. Sci. 2016, 384, 135–144. [Google Scholar] [CrossRef]
  31. Wang, Y.B.; You, Z.H.; Li, X.; Jiang, T.H.; Chen, X.; Zhou, X.; Wang, L. Predicting protein-protein interactions from protein sequences by a stacked sparse autoencoder deep neural network. Mol. Biosyst. 2017, 13, 1336–1344. [Google Scholar] [CrossRef] [PubMed]
  32. Wei, L.; Yang, Y.; Nishikawa, R.M.; Wernick, M.N.; Edwards, A. Relevance vector machine for automatic detection of clustered microcalcifications. IEEE Trans. Med. Imaging 2005, 24, 1278–1285. [Google Scholar] [PubMed]
  33. Widodo, A.; Kim, E.Y.; Son, J.D.; Yang, B.S.; Tan, A.C.C.; Gu, D.S.; Choi, B.K.; Mathew, J. Fault diagnosis of low speed bearing based on relevance vector machine and support vector machine. Expert Syst. Appl. 2009, 36, 7252–7261. [Google Scholar] [CrossRef]
  34. Chang, C.C.; Lin, C.J. Libsvm: A library for support vector machines. ACM Trans. Intell. Syst. Technol. 2001, 2, 1–27. [Google Scholar] [CrossRef]
  35. Yanzhi, G.; Lezheng, Y.; Zhining, W.; Menglong, L. Using support vector machine combined with auto covariance to predict protein-protein interactions from protein sequences. Nucleic Acids Res. 2008, 36, 3025–3030. [Google Scholar]
  36. Zhou, Y.Z.; Gao, Y.; Zheng, Y.Y. Prediction of Protein-Protein Interactions Using Local Description of Amino Acid Sequence; Springer: Berlin/Heidelberg, Germany, 2011; pp. 254–262. [Google Scholar]
  37. Lei, Y.; Jun-Feng, X.; Jie, G. Prediction of protein-protein interactions from protein sequence using local descriptors. Protein Pept. Lett. 2010, 17, 1085–1090. [Google Scholar]
  38. You, Z.H.; Lei, Y.K.; Zhu, L.; Xia, J.; Wang, B. Prediction of protein-protein interactions from amino acid sequences with ensemble extreme learning machines and principal component analysis. BMC Bioinform. 2013, 14, S10. [Google Scholar] [CrossRef] [PubMed]
  39. Martin, S.; Roe, D.; Faulon, J.L. Predicting protein-protein interactions using signature products. Bioinformatics 2005, 21, 218–226. [Google Scholar] [CrossRef] [PubMed]
  40. Liberty, E.; Woolfe, F.; Martinsson, P.G.; Rokhlin, V.; Tygert, M. Randomized algorithms for the low-rank approximation of matrices. Proc. Natl. Acad. Sci. USA 2007, 104, 20167–20172. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  41. Markovsky, I. Structured low-rank approximation and its applications. Automatica 2008, 44, 891–909. [Google Scholar] [CrossRef]
  42. Tipping, M.E. Sparse bayesian learning and the relevance vector machine. J. Mach. Learn. Res. 2001, 1, 211–244. [Google Scholar]
  43. Zou, Q.; Hu, Q.; Guo, M.; Wang, G. Halign: Fast multiple similar DNA/RNA sequence alignment based on the centre star strategy. Bioinformatics 2015, 31, 2475–2481. [Google Scholar] [CrossRef] [PubMed]
  44. Zou, Q.; Zeng, J.; Cao, L.; Ji, R. A novel features ranking metric with application to scalable visual and bioinformatics data classification. Neurocomputing 2016, 173, 346–354. [Google Scholar] [CrossRef]
  45. Zou, Q.; Ju, Y.; Li, D. Protein Folds Prediction with Hierarchical Structured SVM. Curr. Proteom. 2016, 13, 79–85. [Google Scholar]
  46. Zou, Q. Editorial (Thematic Issue: Machine Learning Techniques for Protein Structure, Genomics Function Analysis and Disease Prediction). Curr. Proteom. 2016, 13, 77–78. [Google Scholar] [CrossRef]
  47. Zou, Q.; Xie, S.; Lin, Z.; Wu, M.; Ju, Y. Finding the Best Classification Threshold in Imbalanced Classification. Big Data Res. 2016, 5, 2–8. [Google Scholar] [CrossRef]
  48. Zou, Q.; Wan, S.; Ju, Y.; Tang, J.; Zeng, X. Pretata: Predicting TATA binding proteins with novel features and dimensionality reduction strategy. BMC Syst. Biol. 2016, 10, 114. [Google Scholar] [CrossRef] [PubMed]
  49. Wang, Y.; You, Z.; Xiao, L.; Xing, C.; Jiang, T.; Zhang, J. PCVMZM: Using the Probabilistic Classification Vector Machines Model Combined with a Zernike Moments Descriptor to Predict Protein–Protein Interactions from Protein Sequences. Int. J. Mol. Sci. 2017, 18, 1029. [Google Scholar] [CrossRef] [PubMed]
  50. Wang, Y.B.; You, Z.H.; Li, L.P.; Huang, Y.A.; Yi, H.C. Detection of Interactions between Proteins by Using Legendre Moments Descriptor to Extract Discriminatory Information Embedded in PSSM. Molecules 2017, 22, 1366. [Google Scholar] [CrossRef] [PubMed]
Figure 1. A comparison of the receiver operating characteristic (ROC) curves of the relevance vector machines (RVMs) classifier and the support vector machines (SVMs) classifier on the Yeast dataset.
Figure 1. A comparison of the receiver operating characteristic (ROC) curves of the relevance vector machines (RVMs) classifier and the support vector machines (SVMs) classifier on the Yeast dataset.
Ijms 19 01029 g001
Figure 2. The flow chart of the proposed method.
Figure 2. The flow chart of the proposed method.
Ijms 19 01029 g002
Table 1. Five-fold cross-validation results shown using our proposed method on the Yeast dataset.
Table 1. Five-fold cross-validation results shown using our proposed method on the Yeast dataset.
ModelTesting SetAccuracySensitivitySpecificityPPVNPVMCC
PSSM+ LR+RVM194.7%95.4%94.0%93.9%95.46%89.3%
295.3%96.1%94.5%94.7%95.96%91.1%
393.9%93.9%93.8%93.8%93.91%88.5%
493.8%93.6%94.1%94.4%93.22%88.4%
595.1%94.9%95.2%94.9%95.2%90.6%
Average94.6 ± 0.6%94.8 ± 1.0%94.3 ± 0.5%94.3 ± 0.4%94.75 ± 1.1%89.6 ± 1.2%
PSSM+ LR+SVM188.3%87.3%89.3%88.8%87.8%79.4%
289.3%89.4%89.1%89.2%89.3%80.8%
389.8%89.2%90.3%90.7%88.8%81.6%
489.7%88.3%91.2%90.9%88.6%81.6%
590.0%88.4%91.5%90.8%89.2%81.9%
Average89.4 ± 0.6%88.5 ± 0.8%90.3 ± 1.0%90.1 ± 1.0%88.7 ± 0.5%81.1 ± 1.0%
SVM: support vector machine; PSSM: position specific scoring matrix; AB: average blocks; RVM: relevance vector machine; PPV: Positive Predictive Value; NPV: Negative Predictive Value; MCC: Matthews Correlation Coefficient.
Table 2. The prediction ability of the different methods on the Yeast dataset.
Table 2. The prediction ability of the different methods on the Yeast dataset.
ModelTesting SetAcc (%)Sen (%)Pre (%)Mcc (%)
Guos’ work [35]ACC89.3 ± 2.689.9 ± 3.688.8 ± 6.1N/A
AC87.4 ± 1.387.3 ± 4.687.8 ± 4.3N/A
Zhous’ work [36]SVM+LD88.6 ± 0.387.4 ± 0.289.5 ± 0.677.2 ± 0.7
Yangs’ work [37]Cod175.1 ± 1.175.8 ± 1.274.8 ± 1.2N/A
Cod280.0 ± 1.076.8 ± 0.682.2 ± 1.3N/A
Cod380.4 ± 0.478.1 ± 0.981.7 ± 0.9N/A
Cod486.2 ± 1.181.0 ± 1.790.2 ± 1.3N/A
Yous’ work [38]PCA-EELM87.0 ± 0.286.2 ± 0.487.6 ± 0.377.4 ± 0.4
Proposed methodLRA+RVM94.6 ± 0.694.8 ± 1.094.4 ± 0.489.6 ± 1.2
ACC: Auto Covariance; LD: Local Description; PCA: Principal Component Analysis; EELM: Ensemble Extreme Learning Machines; N/A: Not Available; Acc: Accuracy; Sen: sensitivity; Pre: precision; Mcc: Matthew’s Correlation Coefficient.
Table 3. The prediction ability of the different methods on the Helicobacter pylori protein–protein interactions (PPIs) dataset.
Table 3. The prediction ability of the different methods on the Helicobacter pylori protein–protein interactions (PPIs) dataset.
MethodsAcc(%)Sen (%)Pre (%)Mcc (%)
HKNN 84.086.084.0N/A
Phylogenetic bootstrap 75.869.880.2N/A
Signature Products 83.479.985.7N/A
Boosting79.580.481.7N/A
Proposed method84.7 ± 1.084.4 ± 1.285.9 ± 0.876.7 ± 1.0
HKNN: Hyperplane Distance Nearest Neighbor.

Share and Cite

MDPI and ACS Style

Li, L.-P.; Wang, Y.-B.; You, Z.-H.; Li, Y.; An, J.-Y. PCLPred: A Bioinformatics Method for Predicting Protein–Protein Interactions by Combining Relevance Vector Machine Model with Low-Rank Matrix Approximation. Int. J. Mol. Sci. 2018, 19, 1029. https://doi.org/10.3390/ijms19041029

AMA Style

Li L-P, Wang Y-B, You Z-H, Li Y, An J-Y. PCLPred: A Bioinformatics Method for Predicting Protein–Protein Interactions by Combining Relevance Vector Machine Model with Low-Rank Matrix Approximation. International Journal of Molecular Sciences. 2018; 19(4):1029. https://doi.org/10.3390/ijms19041029

Chicago/Turabian Style

Li, Li-Ping, Yan-Bin Wang, Zhu-Hong You, Yang Li, and Ji-Yong An. 2018. "PCLPred: A Bioinformatics Method for Predicting Protein–Protein Interactions by Combining Relevance Vector Machine Model with Low-Rank Matrix Approximation" International Journal of Molecular Sciences 19, no. 4: 1029. https://doi.org/10.3390/ijms19041029

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop