Next Article in Journal
Synthesis and DFT Calculations of Novel Vanillin-Chalcones and Their 3-Aryl-5-(4-(2-(dimethylamino)-ethoxy)-3-methoxyphenyl)-4,5-dihydro-1H-pyrazole-1-carbaldehyde Derivatives as Antifungal Agents
Next Article in Special Issue
Integrative Pathway Analysis of Genes and Metabolites Reveals Metabolism Abnormal Subpathway Regions and Modules in Esophageal Squamous Cell Carcinoma
Previous Article in Journal
Anti-Melanogenic Effects of Flavonoid Glycosides from Limonium tetragonum (Thunb.) Bullock via Inhibition of Tyrosinase and Tyrosinase-Related Proteins
Previous Article in Special Issue
Detection of Interactions between Proteins by Using Legendre Moments Descriptor to Extract Discriminatory Information Embedded in PSSM
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

EPuL: An Enhanced Positive-Unlabeled Learning Algorithm for the Prediction of Pupylation Sites

1
School of Information Science and Technology, Northeast Normal University, Changchun 130117, China
2
School of Computing Science and Engineering, VIT University, Vellore 632014, Tamil Nadu, India
3
School of Computer Science and Technology, Jiangsu Normal University, Xuzhou 221116, China
*
Authors to whom correspondence should be addressed.
Molecules 2017, 22(9), 1463; https://doi.org/10.3390/molecules22091463
Submission received: 23 July 2017 / Revised: 29 August 2017 / Accepted: 30 August 2017 / Published: 5 September 2017
(This article belongs to the Special Issue Computational Analysis for Protein Structure and Interaction)

Abstract

:
Protein pupylation is a type of post-translation modification, which plays a crucial role in cellular function of bacterial organisms in prokaryotes. To have a better insight of the mechanisms underlying pupylation an initial, but important, step is to identify pupylation sites. To date, several computational methods have been established for the prediction of pupylation sites which usually artificially design the negative samples using the verified pupylation proteins to train the classifiers. However, if this process is not properly done it can affect the performance of the final predictor dramatically. In this work, different from previous computational methods, we proposed an enhanced positive-unlabeled learning algorithm (EPuL) to the pupylation site prediction problem, which uses only positive and unlabeled samples. Firstly, we separate the training dataset into the positive dataset and the unlabeled dataset which contains the remaining non-annotated lysine residues. Then, the EPuL algorithm is utilized to select the reliably negative initial dataset and then iteratively pick out the non-pupylation sites. The performance of the proposed method was measured with an accuracy of 90.24%, an Area Under Curve (AUC) of 0.93 and an MCC of 0.81 by 10-fold cross-validation. A user-friendly web server for predicting pupylation sites was developed and was freely available at http://59.73.198.144:8080/EPuL.

1. Introduction

Prokaryotic ubiquitin-like proteins (Pup) are the first identified post-translational small modifier in prokaryotes [1,2]. They are disordered proteins, including 64 amino acids and an important signal for the protein’s selective degradation [3]. Pup usually attaches to substrate lysine via isopeptide bonds, and this process is called pupylation. Although the function of pupylation and ubiquitylation is similar, the enzymology participating in these processes is not the same [4]. Ubiquitylation requires three types of enzymes, including activating enzymes, ligases, and conjugating enzymes [5,6,7]. Pupylation only requires two types of enzymes (proteasome accessory factor A and deamidase of Pup).
Accurate identification of pupylation sites is an essential first step to better understand the underlying mechanism of protein pupylation. Though some large-scale proteomics technologies have been adopted to find the pupylation sites, they are usually time-consuming and laborious, especially for large-scale protein samples. Thus, computational methods were needed to effectively and accurately identify the potential pupylation sites in protein sequences. Lin et al. [8] developed the first pupylation site predictor, named GPS-PUP, the GPS means Group-based Prediction System. Tung et al. [9] constructed a predictor, iPup, in which the composition of k-spaced amino acid pairs feature (CKSAAP) was used. Zhao et al. [10] created a predictive model with five features and adopted feature selection methods to find the optimal feature set. Chen et al. [11] proposed a predictor, PupPred, which is based on the SVM and some sequence-derived features. Hasem et al. [12] introduced a profile-based CKSAAP to encode the pupylation sites and built a predictor called pbPUP. Wand et al. [13] employed the non-annotated lysine sites as unlabeled training samples and then used a two-class SVM to expand reliable negative set at each iteration. More recently, Jiang et al. [14] applied the positive-unlabeled learning technique to the prediction of pupylation sites, which combined the SVM and CKSAAP to construct the predictor PUL-PUP.
However, most of these computational methods artificially constructed the negative samples which included all the remaining non-annotated lysine residues. This negative samples dataset may contain some pupylation sites which were not validated. Then the classifiers trained on the experimentally-verified positive samples and such negative samples may be problematic and biased, and the final prediction performance was unsatisfactory. In this paper, we proposed an enhanced positive unlabeled learning algorithm to identify pupylation sites, EPuL, which enhanced the reliability of initial negative samples and then iteratively identified the non-pupylation sites from the unlabeled samples. Experimental results showed that our method achieved better performance when compared with other existing methods. Meanwhile, a user-friendly webserver of our proposed predictor was freely accessible at reference [15].

2. Results and Discussion

2.1. The Development of EPuL

The training dataset consisted of two kinds of subsets: (1) the positive dataset P and (2) the unlabeled dataset U. Positive-unlabeled learning has been used in bioinformatics and obtains satisfactory performance [16,17,18]. In this study, we proposed an enhanced positive-unlabeled learning algorithm called EPuL to predict pupylation sites. The detailed process of the algorithm is described as follows (Stage 1 is our proposed part. Stage 2 and Stage 3 are the same as PUL-PUP [14]):
Stage 1: Select the reliably negative initial set
The reliably negative dataset RN is initialized to an empty set and we use a vector V s i to represent each sample in P and U by using the CKSAAP encoding scheme. By summing up all the vectors in P, we built the ‘positive representative vector (pr)’ and normalized it by using the formula below:
p r = i | P | V s i / | P |
Then, maximum distance rule is adopted, and the Euclidean distance was utilized to compute the average distance of each sample si in U to pr:
A v g _ d i s t + = i | U | d i s t ( p r , V s i ) / | U |
For each sample si in U, the likely initial negative set LN was selected from U by Avg_dist; that is, if dist(pr, V s i ) is more than Avg_dist × ( = 1.05), we regard si as a likely negative sample and put it into LN: LN = LN ∪ { s i }.
To select the reliably negative initial set RN0 and enhance the reliability of RN0, we randomly divide LN into five likely negative subsets and each of them builds a model with P, which is based on the SVM. Subsequently, the remaining dataset URN is classified by the five models, respectively.
The common sequences cs which are predicted by five models and the negative support vectors Nsv of the five models are all used to represent the reliably negative initial set RN0, in which, RN0 = cs + Nsv.
Stage 2: Expand the reliably negative set
After the selection of reliably negative initial set, the reliable negative set was expanded by iteratively adding the negative examples from U using a series of two-class SVM classifiers. Specifically, at the ith iteration, the SVM classifier fi is firstly trained using dataset P + RNi; then, fi was used to classify the Ui and each sample xi in Ui, and each sample was obtained a decision value f(xi). To insure the reliability, samples belonging to the negative set need to satisfy:
f ( x i ) T
Here, we set T = −0.50.
To overcome the problem of imbalance at each iteration, the negative support vectors N s v i and the newly-predicted negative samples N p r e d i are used to represent the existing negative set RNi, and we control the size of N p r e d i less than 2 × |P|. Then, at the i + 1th iteration, U i + 1 = U i N p r e d i ; R N i + 1 = N p r e d i N s v i . Classifier fi+1 is trained on P and current reliable negative training set RNi+1.
With the expansion of negative set, the size of the remaining unlabeled set becomes less and less. Thus, iteration should be terminated at some point. When the number of the remaining unlabeled sets goes below the threshold 5 × |P|, the unlabeled data with the positive data would correspond to the maximum MCC.
Stage 3: Return the final classifier
After the extraction of the reliably negative set, a final SVM classifier is trained on P and the reliable negative set RN.
Algorithm 1 summarizes the detailed procedures of the proposed method EPuL.
Algorithm 1. An enhanced positive-unlabeled learning algorithm.
InputP—Positive training set; U—Unlabeled training set;
—The distance coefficient; V s i —Sequence s i in P and U;
Model1,2,3,4,5 —Five models trained by five subsets with P respectively;
N1,2,3,4,5 —Five negative sets predicted by Model1,2,3,4,5 on the remaining unlabeled training set respectively;
cs—Common sequences of five negative sets N1,2,3,4,5
N s v —Negative support vectors of five Model1,2,3,4,5
OutputF—Final classifier.
Stage 0:Initialization
l 0; Avg_dist = 0; LN = ∅; RN = ∅; i
Stage 1:Select the reliably negative initial set
pr = i | P | V s i / | P | ;
Avg_dist + = i | U | d i s t ( p r , V s i ) / | U | ;
FOR i from 1 to |U|
IF dist(pr, V s i ) > Avg_dist *
LN = LN∪{Si};
END IF
END FOR
Randomly divide the LN into five subsets D1, D2, D3, D4, D5.
FOR i from 1 to 5
Modeli = SVM(P, Di);
Ni = Modeli(ULN);
END FOR
The common sequence are represented to reliably negative initial set
cs = N1N2N3N4N5; RN0 = RN0cs;
then the negative support vectors N s v of five models are included in R N 0 = R N 0   N s v .
Stage 2Expand the reliably negative set
WHILE TRUE
IF Ul > 5∗|P|
U l + 1 = U l N p r e d l ;
R N l + 1 = N p r e d l   N s v l ;
ELSE IF Ul < 5 ∗ |P|
Go to Stage 3
END IF
Train a SVM classifier fl+1 on the P RNl+1 with optimal parameter C and γ.
Each sequence xi in Ul+1 would have a decision value f(xi) through the obtained fl+1, use the threshold T to get the reliably negative set.
l l + 1
Stage 3Return the final classifier
Return F = (P, RN)

2.2. The Performance of EPuL on the Training Dataset

To evaluate the effectiveness of the proposed method for pupylation site prediction, we compare EPuL with other methods, including PUL-PUP [14], PSoL [13], and SVM balance on the training dataset. In PSoL [13] algorithms, a two-class SVM is applied to filter the negative set from the non-annotated lysine sites and expand the negative set at each iteration. Additionally, in PUL-PUP [14] algorithms, the non-annotated lysine sites are treated as unlabeled samples and positive-unlabeled learning technique is used to predict of pupylation sites. The difference for us is on the selection of the initial negative set. As for SVM_balance, the negative training dataset is randomly selected from the non-annotated lysine sites. The ratio of the positive and negative training datasets is 1:1, which can avoid the imbalanced problem. The 10-fold cross-validation is performed on the positive set P and the reliably negative set RN, the results are shown in Table 1. We can see from Table 1 that EPuL yielded the best performance, a Sn of 84.21%, Sp of 95.45%, ACC of 90.24, and MCC of 0.81. EPuL achieves an improvement on the training dataset. Among this, the results of PSoL and SVM_balance are taken from PUL-PUP. To further demonstrate the superiority of EPuL, we also draw the ROC curve, as shown in Figure 1.

2.3. The Performance Evaluation on the Independent Testing Dataset

In order to further evaluate the performance of the proposed predictor, the independent testing dataset was utilized, which was completely blind to the training dataset. Table 2 presents the comparison of the results among EPuL, PUL-PUP, PSoL, and SVM-balance. Although SVM_balance can avoid the imbalanced problem, its prediction performance was the lowest, because the negative set of SVM_balance is randomly selected and are not the reliably negative samples. The PUL-PUP, which also uses the positive-unlabeled learning technique, mainly improves the performances through containing more information in RN at each iteration. However, the performance of PUL-PUP was not better than EPuL because the contained points are only based on the distance and not very precise. Especially, the stage 2 of EPuL is similar to PSoL, but we select the reliably negative initial set at stage 1, enhancing the positive-unlabeled learning at the beginning which would contribute to the selection of a more accurate negative set and make our algorithm more effective than PSoL.
We also compare our method with four existing predictors: iPUP, GPS-PUP, pbPUP, and PUL-PUP. We predefined three thresholds according to the SVM scores; that is, high (0.9672), medium (0.4032), and low (0.1088). Table 3 presents the detailed prediction performances on the independent testing dataset. The performance of our algorithm outperforms the existing predictors. For example, at the threshold low, the MCC of EPuL is 0.24, which is higher than that of GPS-PUP with an MCC of 0.1, iPUP with MCC of 0.15, pbPUP with MCC of 0.07, and PUL-PUP with MCC of 0.23. Moreover, our method obtains the best AUC value (0.78). Our classifier is iteratively trained on P and RN. Only with the reliable initial negative set can was obtain a more reliable negative set in the subsequent iterations. Thus, our method is more accurate and suitable for predicting pupylation sites than other methods.

2.4. Feature Analysis

Through the feature selection method, we can find the ranked features generated by the CKSAAP encoding scheme in Figure 2. The importance of these features was also clearly and intuitively shown in Figure 3. For example, the feature ExE which represents the EE residue pair spaced by any amino acid, is enriched in the positive pair and not in the negative pair. From Figure 2, we can see that the features frequently appeared in the top 25 amino acid pairs, which also frequently occurred in Figure 3.

2.5. Case Study

To further verify the generalization of our model, we adopted EPuL for a total of 1116 pupylated proteins, which are identified by high-throughput proteomics methods [19] and have unknown pupylation sites. Among the total proteins, EPuL successfully identified 2102, 3265, and 3899 pupylation sites at the threshold of ‘high’, ‘medium’ and ‘low’, respectively. The result of the predicted pupylation sites is available in Supplementary File 1.

3. Materials and Methods

3.1. Datasets

In this paper, the training dataset and the independent testing dataset of iPup [9] were used. The training dataset included 162 proteins, which consisted of 183 experimentally-validated pupylation sites and 2258 artificial generated non-annotated pupylation sites. The former were regarded as positive samples, and the latter were regarded as unlabeled samples. The independent testing dataset included 20 proteins, including 29 experimentally-verified pupylation sites and 408 non-annotated pupylation sites. Though the independent testing dataset was highly imbalanced, it can reflect the real effectiveness of different methods. Similar to the current pupylation site prediction methods [8,9,10,11,12,13,14], the sliding window method was adopted to encode each sample in the dataset. The window size was set to 21 here, in accordance with [9].

3.2. Construction of Feature Vectors

In this study, the composition of the k-spaced amino acid pairs (CKSAAP)-based encoding scheme was applied to encode each sample. CKSAAP could show the association of the residues surrounding pupylation sites and it has been successfully applied to other kinds of PTM site prediction problems [20,21,22]. Taking k = 0 as an example, for a sequence fragment including 2n + 1 amino acids, there are 441 0-spaced residue pairs (i.e., AA, AC,…). Then a 441-dimensional feature vector can be defined as:
( N A A N t o t a l ,   N A C N t o t a l ,   . ,   N _ _ N t o t a l ) 441
The value of each component is the probability of each amino acid pair. When there are n AA pairs in the sequence fragment, the value of Ntotal is 441 for any window size, and the value of n N t o t a l is the probability of the corresponding AA pair.
With the increase of k, the accuracy and the sensitivity increase, while the computational complexity and the required time also increase. In this paper, the value of parameter k in CKSAAP was set to 0, 1, 2, 3, and 4. Thus, each sample is represented by 2205 dimension features. For example, for the pair A and D, the k-spaced amino acid pairs for k = 0, 1, 2, 3, and 4 are represented as AD, AxD, AxxD, AxxxD, AxxxxD.

3.3. Feature Selection

In order to remove the irrelevant and redundant features, we utilized the chi-square test and sequential backward feature elimination algorithm, which was the same as iPUP [9]. Each feature would have a value by chi-square test and sequential backward feature elimination algorithm was used to select optimal feature subset. Firstly, we ranked the 2205 dimension features according to the value of chi-square. Then, we iteratively removed 10 features with the lowest value in a sequential backward feature elimination algorithm. Finally, the feature subset with the highest performance was used as the optimal feature subset to train the model. Figure 2 shows the top 25 CKSAAP features ranked by using the chi-square test and we used the top 150 features as the optimal feature subset, which was the same as iPUP [9]. The complete list of the optimal feature subset is shown in Supplementary File 2.

3.4. Support Vector Machine

A support vector machine with the kernel radial basis function (RBF) was the core learning algorithm of EPuL. The LibSVM [23] package widely used in the area of bioinformatics [24,25,26] was used to train the final prediction model. A grid search strategy based on 10-fold cross-validation was utilized to find the optimal parameters.

3.5. Performance Evaluation of EPuL

Five measurements were employed to evaluate the performance of our proposed predictor [21]. These measurements included sensitivity (SN), specificity (SP), accuracy (ACC), and Matthews’ correlation coefficient (MCC). These measurements are defined as the following formulas:
S N = T P T P + F N
S P = T N T N + F P
A C C = T P + T N T P + T N + F P + F N
M C C = T P   × T N   F N   × F P ( T P + F N ) × ( T P + F P ) × ( T N + F P ) × ( T N + F N )
where TP, FP, TN, and FN denote the number of true positives, false positives, true negatives, and false negatives, respectively. Matthews’ correlation coefficient (MCC) provides an overall performance of binary classification.

4. Conclusions

In this paper, we proposed a new predictor, EPuL, to identify the protein pupylation sites. We aim to make the initial selected negative set reliable, and then a more and more reliable negative set will be selected in later iterations. As this process continues, the final negative set will be as reliable as possible. The proposed enhanced positive-unlabeled learning algorithm outperforms the existing predictors. Moreover, the most likely pupylation and non-pupylation sites can be predicted in non-annotated lysine sites by using EPuL. We are confident that the proposed method could also be applied in the identification of other types of PTMs sites. A user-friendly web server is freely available at reference [15]. In our future research, except for the predictor EPuL proposed in this paper, we will use some state-of-the-art metaheuristic algorithms to identify the protein pupylation sites, such as monarch butterfly optimization (MBO) [27], earthworm optimization algorithm (EWA) [28], elephant herding optimization (EHO) [29], moth search (MS) algorithm [30], and krill herd (KH) [31,32,33,34,35].

Reference

Supplementary Materials

The following are available online. Supplementary File 1: The result of the predicted pupylation sites, Supplementary File 2: The complete list of the optimal feature subset.

Acknowledgment

This research is partially supported by the China Postdoctoral Science Founda funded project (2014M550166, 2015T80285), National Natural Science Foundation of China (61403077, 61503165), Natural Science Foundation of Jiangsu Province (No. BK20150239), and the Natural Science Foundation of the Education Department of JiLin Province (2016-505).

Author Contributions

X. Nan and L. Bao conceived and designed the experiments; X. Zhao performed the experiments; X. Zhao and Z. Ma analyzed the data; G.-G. Wang contributed analysis tools; A.K. Sangaiah wrote the paper.

References

  1. Pearce, M.J.; Mintseris, J.; Ferreyra, J.; Gygi, S.P.; Darwin, K.H. Ubiquitin-like protein involved in the proteasome pathway of Mycobacterium tuberculosis. Science 2008, 322, 1104–1107. [Google Scholar] [CrossRef] [PubMed]
  2. Burns, K.E.; Liu, W.T.; Boshoff, H.I.; Dorrestein, P.C.; Barry, C.E. Proteasomal protein degradation in mycobacteria is dependent upon a prokaryotic ubiquitin-like protein. J. Biol. Chem. 2009, 284, 3069–3075. [Google Scholar] [CrossRef] [PubMed]
  3. Chen, X.; Solomon, W.C.; Kang, Y.; Cerda-Maira, F.; Darwin, K.H.; Walters, K.J. Prokaryotic ubiquitin-like protein pup is intrinsically disordered. J. Mol. Biol. 2009, 392, 208–217. [Google Scholar] [CrossRef] [PubMed]
  4. Tung, C.W. PupDB: A database of pupylated proteins. BMC Bioinf. 2012, 13, 40–45. [Google Scholar] [CrossRef] [PubMed]
  5. Striebel, F.; Imkamp, F.; Sutter, M.; Steiner, M.; Mamedov, A.; Weber-Ban, E. Bacterial ubiquitin-like modifier Pup is deamidated and conjugated to substrates by distinct but homologous enzymes. Nat. Struct. Mol. Biol. 2009, 16, 647–651. [Google Scholar] [CrossRef] [PubMed]
  6. Poulsen, C.; Akhter, Y.; Jeon, A.H.-W.; Schmitt-Ulms, G.; Meyer, H.E.; Stefanski, A.; Stühler, K.; Wilmanns, M.; Song, Y.H. Proteome-wide identification of mycobacterial pupylation targets. Mol. Syst. Biol. 2010, 6, 386–392. [Google Scholar] [CrossRef] [PubMed]
  7. Georgiou, D.N.; Karakasidis, T.E.; Megaritis, A.C. A short survey on genetic sequences, chou’s pseudo amino acid composition and its combination with fuzzy set theory. Open Bioinf. J. 2013, 7, 41–48. [Google Scholar] [CrossRef]
  8. Liu, Z.; Ma, Q.; Cao, J.; Gao, X.; Ren, J.; Xue, Y. GPS-PUP: Computational prediction of pupylation sites in prokaryotic proteins. Mol. Biosyst. 2011, 7, 2737–2740. [Google Scholar] [CrossRef] [PubMed]
  9. Tung, C.W. Prediction of pupylation sites using the composition of k-spaced amino acid pairs. J. Theor. Biol. 2013, 336, 11–17. [Google Scholar] [CrossRef] [PubMed]
  10. Zhao, X.; Dai, J.; Ning, Q.; Ma, Z.; Yin, M.; Sun, P. Position-specific analysis and prediction of protein pupylation sites based on multiple features. BioMed. Res. Int. 2013, 12, 109549. [Google Scholar] [CrossRef] [PubMed]
  11. Chen, X.; Qiu, J.D.; Shi, S.P.; Suo, S.B.; Liang, R.P. Systematic analysis and prediction of pupylation sites in prokaryotic proteins. PLoS ONE 2013, 8, 130. [Google Scholar] [CrossRef] [PubMed]
  12. Hasan, M.M.; Zhou, Y.; Lu, X.; Li, J.; Song, J.; Zhang, Z. Computational identification of protein pupylation sites by using profile-based composition of k-spaced amino acid pairs. PLoS ONE 2015, 10, e0129635. [Google Scholar] [CrossRef] [PubMed]
  13. Wang, C.; Ding, C.; Meraz, R.F.; Holbrook, S.R. PSoL: A positive sample only learning algorithm for finding non-coding RNA genes. Bioinformatics 2006, 22, 2590. [Google Scholar] [CrossRef] [PubMed]
  14. Jiang, M.; Cao, J.Z. Positive-Unlabeled learning for pupylation sites prediction. Biomed. Res. Int. 2016, 16, 1–5. [Google Scholar] [CrossRef] [PubMed]
  15. EPuL: An Enhanced Positive-Unlabeled Learning Algorithm for the Prediction of Pupylation Sites. Available online: http://59.73.198.144:8080/EPuL (accessed on 30 August 2017).
  16. Zeng, X.; Liao, Y.; Liu, Y.; Zou, Q. Prediction and validation of disease genes using HeteSim Scores. IEEE/ACM Trans. Comput. Biol. Bioinf. 2016, 1–10. [Google Scholar] [CrossRef] [PubMed]
  17. Wei, L.; Liao, M.; Gao, Y.; Ji, R.; He, Z.; Zou, Q. Improved and promising identification of human microRNAs by incorporating a high-quality negative set. IEEE/ACM Trans. Comput. Biol. Bioinf. 2013, 11, 192–201. [Google Scholar] [CrossRef] [PubMed]
  18. Zou, Q.; Zeng, J.; Cao, L.; Ji, R. A novel features ranking metric with application to scalable visual and bioinformatic sdata classification. Neurocomputing 2016, 173, 346–354. [Google Scholar] [CrossRef]
  19. Cerda-Maira, F.A.; McAllsiter, F.; Bode, N.J.; Burns, K.E.; Gygi, S.P.; Darwin, K.H. Reconstitution of the Mycobackterium tuberculosis pupylation pathway in Escherichia coli. EMBO Rep. 2011, 12, 863–870. [Google Scholar] [CrossRef] [PubMed]
  20. Zhe, J.; Cao, J.Z.; Gu, H. ILM-2L: A two-level predictor for identifying protein lysine methylation sites and their methylation degrees by incorporating K-gap amino acid pairs into Chou’s general PseAAC. J. Theor. Biol. 2015, 385, 50–57. [Google Scholar]
  21. Zhe, J.; Cao, J.Z.; Gu, H. Predicting lysine phosphoglycerylation with fuzzy SVM by incorporating k-spaced amino acid pairs into Chou’s general PseAAC. J. Theor. Biol. 2016, 397, 145–150. [Google Scholar]
  22. Ju, Z.; Gu, H. Predicting pupylation sites in prokaryotic proteins using semi-supervised self-training support vector machine algorithm. Anal. Biochem. 2016, 507, 1–6. [Google Scholar] [CrossRef] [PubMed]
  23. Chang, C.C.; Lin, C.J. LIBSVM: A library for support vector machines. ACM Trans. Intell. Syst. Technol. 2011, 2, 389–396. [Google Scholar] [CrossRef]
  24. Yan, R.X.; Si, J.N.; Wang, C.; Zhang, Z. DescFold: A web server for protein fold recognition. BMC Bioinf. 2008, 10, 1949. [Google Scholar] [CrossRef] [PubMed]
  25. Song, J.; Tan, H.; Shen, H.; Mahmood, K.; Boyd, S.E.; Webb, G.I.; Akutsu, T.; Whisstock, J.C. Cascleave: towards more accurate prediction of caspase substrate cleavage sites. Bioinformatics 2010, 26, 752–760. [Google Scholar] [CrossRef] [PubMed]
  26. Si, J.N.; Yan, R.X.; Wang, C.; Zhang, Z.; Su, X.D. TIM-Finder: A new method for identifying TIM-barrel proteins. BMC Struct. Biol. 2009, 9, 73. [Google Scholar] [CrossRef] [PubMed]
  27. Wang, G.G.; Deb, S.; Cui, Z. Monarch Butterfly Optimization. Neural Comput. Appl. 2015, 1–20. [Google Scholar] [CrossRef]
  28. Wang, G.G.; Deb, S.; Coelho, L.D.S. Earthworm optimization algorithm: A bio-inspired metaheuristic algorithm for global optimization problems. Int. J. Bio-Inspired Comput. 2015. [Google Scholar] [CrossRef]
  29. Wang, G.G.; Coelho, L.D.S.; Gao, X.Z.; Coelho, L.D.S. A new metaheuristic optimization algorithm motivated by elephant herding behaviour. Int. J. Bio-Inspired Comput. 2016, 8, 394. [Google Scholar] [CrossRef]
  30. Wang, G.G. Moth search algorithm: A bio-inspired metaheuristic algorithm for global optimization problems. Memet. Comput. 2016, 1–14. [Google Scholar] [CrossRef]
  31. Wang, G.G.; Guo, L.; Wang, H.; Duan, H.; Liu, L.; Li, J. Incorporating mutation scheme into krill herd algorithm for global numerical optimization. Neural Comput. Appl. 2014, 24, 1231. [Google Scholar] [CrossRef]
  32. Wang, G.G.; Gandomi, A.H.; Alavi, A.H. Stud krill herd algorithm. Neorucomputing 2014, 128, 363–370. [Google Scholar] [CrossRef]
  33. Wang, G.G.; Guo, L.; Gandomi, A.H.; Hao, G.S.; Wang, H. Chaotic Krill Herd algorithm. Inf. Sci. 2014, 274, 17–34. [Google Scholar] [CrossRef]
  34. Wang, G.G.; Gandomi, A.H.; Alavi, A.H. An effective krill herd algorithm with migration operator in biogeography-based optimization. Appl. Math. Model. 2014, 38, 2454–2462. [Google Scholar] [CrossRef]
  35. Wang, G.G.; Gandomi, A.H.; Alavi, A.H.; Gong, D. A comprehensive review of krill herd algorithm: variants, hybrids and applications. Artif. Intell. Rev. 2017, 1–30. [Google Scholar] [CrossRef]
Sample Availability: Samples of the compounds are not available from the authors.
Figure 1. The ROC curve of EPuL on the training dataset.
Figure 1. The ROC curve of EPuL on the training dataset.
Molecules 22 01463 g001
Figure 2. Top 25 k-spaced amino acid pairs.
Figure 2. Top 25 k-spaced amino acid pairs.
Molecules 22 01463 g002
Figure 3. The two-sample-logos of the composition of k-spaced amino acid pairs surrounding the pupylation site and non-pupylation site.
Figure 3. The two-sample-logos of the composition of k-spaced amino acid pairs surrounding the pupylation site and non-pupylation site.
Molecules 22 01463 g003
Table 1. Ten-fold cross-validation performance of EPuL, PUL-PUP, PSoL and SVM_balance.
Table 1. Ten-fold cross-validation performance of EPuL, PUL-PUP, PSoL and SVM_balance.
MethodSn (%)Sp (%)ACC (%)MCCAUC
EPuL84.2195.4590.240.810.93
PUL-PUP82.2491.5788.920.740.92
PSoL67.5073.6070.550.420.80
SVM_balance76.7163.6569.880.400.77
Table 2. Independent test performance of EPuL, PUL-PUP, and PSoL.
Table 2. Independent test performance of EPuL, PUL-PUP, and PSoL.
MethodSn (%)Sp (%)ACC (%)MCCAUC
EPuL72.4171.5771.630.240.78
PUL-PUP68.9770.8370.710.220.77
PSoL51.7273.1471.620.130.74
SVM-balance62.0767.467.050.150.7
Table 3. The performance of EPuL and four exiting pupylation sites predictors on the independent testing dataset.
Table 3. The performance of EPuL and four exiting pupylation sites predictors on the independent testing dataset.
PredictorsThresholdsSn (%)Sp (%)ACC (%)MCCAUC
GPS-PUPHigh31.0389.4685.620.16
Medium34.4885.5482.190.140.6
Low41.3876.7274.430.1
iPUPHigh48.2882.8480.550.2
Medium51.7276.4774.830.160.66
Low55.1772.0670.940.15
pbPUPHigh17.2488.4883.750.04
Medium31.0380.1576.890.070.6
Low41.3869.8567.960.07
PUL-PUPHigh51.7283.3381.240.22
Medium65.5276.7275.970.240.77
Low68.9772.7972.540.23
EPuLHigh37.9389.4686.040.21
Medium58.6279.9078.490.230.78
Low68.9774.0273.680.24

Share and Cite

MDPI and ACS Style

Nan, X.; Bao, L.; Zhao, X.; Zhao, X.; Sangaiah, A.K.; Wang, G.-G.; Ma, Z. EPuL: An Enhanced Positive-Unlabeled Learning Algorithm for the Prediction of Pupylation Sites. Molecules 2017, 22, 1463. https://doi.org/10.3390/molecules22091463

AMA Style

Nan X, Bao L, Zhao X, Zhao X, Sangaiah AK, Wang G-G, Ma Z. EPuL: An Enhanced Positive-Unlabeled Learning Algorithm for the Prediction of Pupylation Sites. Molecules. 2017; 22(9):1463. https://doi.org/10.3390/molecules22091463

Chicago/Turabian Style

Nan, Xuanguo, Lingling Bao, Xiaosa Zhao, Xiaowei Zhao, Arun Kumar Sangaiah, Gai-Ge Wang, and Zhiqiang Ma. 2017. "EPuL: An Enhanced Positive-Unlabeled Learning Algorithm for the Prediction of Pupylation Sites" Molecules 22, no. 9: 1463. https://doi.org/10.3390/molecules22091463

Article Metrics

Back to TopTop