Background

Angiogenesis is the process of formation of new blood vessels from pre-existing vessels to make a supply of nutrients and a waste disposal pathway [1]. Angiogenesis is a normal and fundamental physiological process in growth and development [2,3,4]. However, it is a vital event in cancer progression—transition of tumor from a benign state to a malignant one—and spread of a tumor (metastasis) [5,6,7]. Nowadays, decreasing or inhibiting angiogenesis is a cutting edge research area in cancer therapy which also plays a key role in other angiogenesis-dependent disease therapy [1, 8,9,10,11,12,13,14,15].

Besides other therapeutic peptides, recognition of the anti-angiogenic peptides has stimulated great interest among researchers in the cancer treatment field during recent years [16,17,18,19,20,21,22,23]. However, there are very rare studies in computational detection of ant-angiogenic peptides [8].

In this paper, we have proposed an efficient machine learning based R package to detect anti-angiogenic peptides, namely AntAngioCOOL. Five types of features have been used to encode peptides in order to predict anti-angiogenic ones. According to the obtained results, AntAngioCOOL reached to a satisfactory performance in anti-angiogenic peptide prediction on a benchmark non-redundant independent test dataset.

Methods

Dataset

We have used the gold standard dataset that has been recently published [8]. After removing redundant peptides, this dataset contained 135 anti-angiogenic peptides (positive instances) and 135 non anti-angiogenic peptides (negative instances). Also, a 20% of each class was selected to construct an independent test dataset (see Additional file 1).

Features

The following subsections provide a brief description for each peptide feature. Moreover, Table 1 demonstrates the distribution of the features that have been used to encode each peptide.

Table 1 Distribution of the features used to encode each peptide

Pseudo amino acid composition

We used pseudo amino acid composition (PseAAC) which has been used effectively in predicting cell penetrating peptides [21]. Unlike the simple amino acid composition, PseAAC considers the sequence-order information of the peptide. Interested readers may refer to [24] for further information on PseAAC.

k-mer composition

k-mer composition shows the fraction of all possible subsequences with length k in the given peptide. Also, the reduced amino acid alphabet proposed by Zahiri et al. [25] has been applied to compute another k-mer composition: the 20 alphabet of amino acids have been reduced to a new alphabet with size 8 according to 544 physicochemical and biochemical indices extracted from AAIndex database [26] (C1 = {A, E}, C2 = {I, L, F, M, V}, C3 = {N, D, T, S}, C4 = {G}, C5 = {P}, C6 = {R, K, Q, H}, C7 = {Y, W}, C8 = {C}). We have computed k-mer compositions for k = 2, 3, 4 for each peptide.

Physico-chemical profile

In order to compute this feature type, 544 different physico-chemical indices were extracted from AAIndex [26]. To remove redundancies, a subset of indices with correlation coefficient less than 0.8 and greater than − 0.8 were selected, which resulted in 191 non-redundant physico-chemical indices.

This feature type has been extracted for 5 amino acids of N-termini (5-NT) and C-termini (5-CT). Finally, each peptide has been encoded as a 10 × 191-dimensional feature vector as below:

$$\left( {PC_{1}^{1} ,PCP_{2}^{1} , \ldots ,PCP_{191}^{1} , \ldots ,PC_{1}^{10} ,PCP_{2}^{10} , \ldots ,PCP_{191}^{10} } \right)$$

where \(PC_{j}^{i}\) is the value of the jth physico-chemical index for the ith amino acid of the peptide (for i = \(1, \ldots ,5\) in the 5-CT and i = \(6, \ldots ,10\) in 5-NT)

Atomic profile

A 50-dimensional feature vector has been used to encode each peptide according to its atomic properties as below:

$$\left( {AC_{1}^{1} ,AC_{2}^{1} , \ldots ,AC_{5}^{1} , \ldots ,AC_{1}^{10} ,AC_{2}^{10} , \ldots ,AC_{5}^{10} } \right)$$

where \(AC_{1}^{i}\) through \(AC_{5}^{i}\) represent the frequency of five types of atoms: C, H, N, O, S in the ith amino acid of the peptides (for i = \(1, \ldots ,5\) in the 5-CT and i = \(6, \ldots ,10\) in 5-NT). For details of atomic composition for each 20 natural amino acid see [17].

Machine learning method

To build a powerful anti-angiogenic peptide predictor, 227 different classifiers (see Additional file 1) in the caret package [27] were examined. Finally, the three best classifiers (those with best sensitivity, specificity and accuracy) were selected to be included in the AntAngioCOOL package. Figure 1 provides a schematic representation of the proposed method.

Fig. 1
figure 1

Schematic representation of the proposed method (AntAngioCOOL) for anti-angiogenic peptide prediction

Evaluation parameters for the prediction performance

The training dataset was used to train the classifier, and then the classifier was evaluated using the test data. The predictions made for the test instances were used to compute the following performance measures:

$$Sensitivity = \frac{TP}{TP + FN}$$
$$Specificity = \frac{TN}{TN + FP}$$
$$Accuracy = \frac{TP + TN}{TP + FP + TN + FN}$$

where, TP and TN are the number of correctly predicted anti-angiogenic peptides and non anti-angiogenic peptides, respectively. Similarly, FP and FN are the number of non anti-angiogenic peptides and anti-angiogenic peptides wrongly predicted as anti-angiogenic peptides and non anti-angiogenic peptides, respectively.

Results

Preprocessing

To remove non-informative features, which can lead to reducing the computational cost without losing the prediction performance, nearZeroVar function from caret package [27] was utilized. This function eliminates those features that have one unique value (i.e. are zero variance features) or features with both of the following characteristics: they have very few unique values relative to the number of samples and the ratio of the frequency of the most common value to the frequency of the second most common value is large. nearZeroVar was applied to the extracted features using its default parameters. Interestingly, less than 2% of the extracted features (2343 out of 175,062) were selected as informative ones to construct the prediction models (see Additional file 1 for more details).

Prediction performance

The performance results of the 227 classifiers with accuracy > 50% in the independent test set have been shown in Additional file 1: Figures S1–S3. We have selected the three best classifiers to be included in the AntAngioCOOL package (Fig. 2): the most sensitive classifier (rpartCost with 88% sensitivity), the most accurate classifier (PART with 75% accuracy) and the classifier with the highest specificity (DeepBoost with 77% specificity). Availability of these three classifiers can help biologists with different questions in mind; e.g. having a list of candidate peptides, what is the narrow list of confident anti-angiogenic peptides or what is the more extended sub-list of candidate anti-angiogenic peptides that contains almost real anti-angiogenic peptides.

Fig. 2
figure 2

Prediction performance of the three selected classifiers among 227 classifiers to be included in AntAngioCOOL package in the test dataset

Discussion

Physico-chemical profile is the most important feature type

Physico-chemical profile is the main feature type in the final selected set of features which is 82% of the final features (Fig. 3a). Interestingly, almost all physico-chemical profile features were selected (1909 out of 1910). Dipeptide and tripeptide compositions are the other important feature types that comprise 9% (200 features) and 4% (101 features) of the final features, respectively. Moreover, Fig. 3b shows the percentage of each feature type that was selected as a subset of the final features.

Fig. 3
figure 3

Feature importance according to their contribution in final selected features (informative features). a Square chart of the distribution of different feature types in the final important features. b Inner layer of this sunburst chart shows the distribution of different feature types in the primary extracted features (in log scale). The outer layer shows the proportion of each feature type selected as informative features

Sequence-order information is useful for anti-angiogenic peptide prediction

As the Fig. 3b shows, in addition to the physico-chemical profile, a considerable percentage of the atomic profile (91.3%) and all the PseAAC features were selected as informative features (Additional file 2 for more details). One of the important common aspects of these three feature types is that they take the sequence-order information of the peptide into account. Therefore, this results stress out that the sequence-order information is an effective factor in anti-angiogenic peptide prediction.

Dipeptide is the most important feature among k-mer composition features

One of the interesting obtained results is that 43.1% of dipeptides were selected as informative features while for tripeptides and quadpeptides there are very small number of informative features for predicting anti-angiogenic peptides: 101 out of 8512 (1.2%) and 32 out of 164,096 (0.02%), respectively. So, dipeptide composition is the most important k-mer composition in anti-angiogenic peptide prediction.

Comparison with the current state-of-the-art methods

The proposed method has been trained and tested with the same data used for AntiAngioPred [8]. Results reveal that AntAngioCOOL has a higher accuracy (77% vs. 75%) and considerable higher sensitivity (88% vs. 65%). Therefore, AntAngioCOOL package can be used more effectively in anti-angiogenic peptide prediction, especially when one is interested in detecting almost anti-angiogenic peptides (in the cost of having some false positives) in a given list of peptides.

Conclusion

In this study an R package (AntAngioCOOL) was proposed to predict anti-angiogenic peptides. AntAngioCOOL exploits five descriptor types for a peptide of interest to perform the prediction including: PseAAC, k-mer composition, k-mer composition (reduced alphabet), physico-chemical profile and atomic profile. After removing the non-informative descriptors, only 2% of the extracted descriptors were used to build the predictor models. AntAngioCOOL includes three different models that can be selected by the user.

The results disclosed that physico-chemical profile is the most important feature type. Also, atomic profile and PseAAC are the other important features. Therefore, it can be concluded that sequence-order information plays a critical role in anti-angiogenic peptide prediction. In addition, according to the results dipeptide has the most contribution in anti-angiogenic peptide prediction among the k-mer composition features.