Skip to main content
Nucleic Acids Research logoLink to Nucleic Acids Research
. 2014 May 22;42(Web Server issue):W290–W295. doi: 10.1093/nar/gku437

PredHS: a web server for predicting protein–protein interaction hot spots by using structural neighborhood properties

Lei Deng 1,2, Qiangfeng Cliff Zhang 3, Zhigang Chen 1, Yang Meng 1, Jihong Guan 2,*, Shuigeng Zhou 4,*
PMCID: PMC4086081  PMID: 24852252

Abstract

Identifying specific hot spot residues that contribute significantly to the affinity and specificity of protein interactions is a problem of the utmost importance. We present an interactive web server, PredHS, which is based on an effective structure-based hot spot prediction method. The PredHS prediction method integrates many novel structural and energetic features with two types of structural neighborhoods (Euclidian and Voronoi), and combines random forest and sequential backward elimination algorithms to select an optimal subset of features. PredHS achieved the highest performance identifying hot spots compared with other state-of-the-art methods, as benchmarked by using an independent experimentally verified dataset. The input to PredHS is protein structures in the PDB format with at least two chains that form interfaces. Users can visualize their predictions in an interactive 3D viewer and download the results as text files. PredHS is available at http://www.predhs.org.

INTRODUCTION

Studies of molecular mechanisms for protein–protein interactions revealed that usually only a small subset of binding interfaces named hot spots account for the majority of binding free energy and are actually critical for stability and function of protein association (1). Identifying and understanding hot spots and their mechanisms on a large scale would have significant implications for practical applications including drug discovery (2) and protein design. Experimentally determined hot spots from alanine scanning mutagenesis experiments have been deposited in Alanine Scanning Energetics Database (ASEdb, (3)). Binding Interface Database (BID) presents experimentally verified hot spots at interfaces collected from literatures (4). However, the number of experimentally determined hot spots deposited in these databases is very limited since experimental techniques to identify hot spots are often labor intensive and expensive. Computational prediction of hot spots has become a practical alternative.

Current approaches for predicting hot spots can be classified roughly into three categories: (i) molecular dynamics (MD) simulations can simulate alanine substitutions and estimate the induced changes in binding free energy (ΔΔG) at the atomic level. Some MD-based methods are successful to predict hot spots from protein interfaces (5–8); (ii) knowledge-based methods rely on empirically calibrated free energy functions, which include terms such as van der Waals and electrostatic interactions, hydrogen bonds and solvation energy, providing an alternative way to predict hot spots with much less computation. FOLDEF (9) and Robetta (10) belong to this group and were developed for the fast estimation of mutational free energy changes of a protein for hot spot identification; (iii) machine-learning methods, such as neural networks (11), decision trees (12), support vector machines (13–15), Bayesian networks (16,17), minimum cut trees (18) and random forests (19), have also been applied to detect hot spots in recent years. What's more, several hot spot databases, including HotRegion (20), HotSprint (21) and PCRPi-DB (17), were built based on computational methods.

Although substantial progress has been made, there is significant room for the improvement of protein hot spot prediction. For example, MD-based methods are not applicable for large-scale studies due to high computational cost. Knowledge-based methods are computationally much faster and reported results appear comparable to those from MD-based simulations (10). But the overall performance of these two groups of methods was inferior to machine-learning methods especially in the measure of recall (22). Machine-learning methods typically depend on the recognition of differences in features including physicochemical properties, evolutionary conservation and solvent accessible area. But specific biological properties for precisely identifying hot spots are often not fully exploited and the performance of the existing methods remains unsatisfactory. Moreover, the number of interacting hot spots of a protein is usually much smaller than the number of energetically unimportant interface residues. Existing methods usually have much higher specificity but rather lower recall since most classification algorithms tend to predict test samples as the majority class and may ignore the minority class when trained on the imbalanced data.

Recently, we developed an effective structure-based hot spot prediction method, PredHS (22), which integrates novel structural and energetic features with Euclidian and Voronoi neighborhoods in addition to conventionally used properties. Moreover, PredHS uses a two-step hybrid approach to select an optimal subset of features. Based on the selected features, a support vector machine (SVM) classifier and an ensemble model are built for prediction. We have benchmarked PredHS using a set of experimentally verified hot spot residues and an independent dataset. Results show that PredHS significantly outperforms the state-of-the-art methods and indicate that structural neighborhood properties are important determinants of hot spots (22).

Here, we present the PredHS web server, which is an automatized online implementation of the PredHS method. The server allows users to request new predictions for input PDB IDs or structures files provided in PDB format. The resulting predictions can be visualized in an interactive 3D viewer and downloaded as text files.

METHODS

The computational approach used by the PredHS web server consists of three main component processes (Figure 1): (i) feature extraction: to extract a wide variety of sequence, structural and energy features, together with two types of structural neighborhoods; (ii) feature selection: a two-step feature selection process that combines random forest and a sequential backward elimination and (iii) predictor construction: two predictors (PredHS-SVM and PredHS-Ensemble) are built for identifying hot spots based on the optimally selected features.

Figure 1.

Figure 1.

Flow chart of the PredHS web server. Input to the PredHS server can be protein structure files in PDB format or a list of PDB codes. After job submission, the server invokes three main component processes: (i) feature extraction: a set of 108 site features, 108 Euclidean neighborhood features and 108 Voronoi neighborhood features are extracted; (ii) feature selection: in the training process, a subset of 38 optimal features are selected by using a random forest algorithm and a sequential backward elimination method, these selected features are used for prediction and (iii) prediction models: PredHS-SVM and PredHS-Ensemble, where PredHS-Ensemble is an ensemble of n sub-models using a bootstrap resampling method to generate subsets. Finally, two groups of results are obtained (SVM results and Ensemble results), corresponding to the two predictors.

Structural neighborhood properties

A total of 108 features are extracted to describe potential hot spot residues. In addition to conventionally used properties, many novel structural and energetic features are also used, including local structural entropy (23), side chain energy score (24), four-body pseudo-potential (25) and topographical score (16,26). Based on these features, we propose a new way to calculate two types of structural neighborhood properties using Euclidean distance and Voronoi diagram.The Euclidean property of a target residue is defined by summing up the values of the properties in the neighborhood. The Euclidean neighborhood is a group of residues located within a sphere of 5 Å defined by the minimum Euclidean distances between each heavy atom of the surrounding residues and each heavy atom of the target residue. The Voronoi diagram (27) is another way to calculate structural neighborhood properties, which partitions a 3D space (a protein structure) into several Voronoi regions, each of which contains a point (heavy atom of a residue). A pair of residues are said to be each other's neighbor when there is at least one pair of their heavy atoms has a Voronoi facet in common. The Voronoi partition is computed by Qhull (28). This definition is based on geometric partitioning rather than the use of an absolute distance cutoff, and hence is considered to be more robust (29).

Two-step feature selection

To remove potentially redundant ones from the whole set 108 features we implement a two-step strategy. The first step is to evaluate the importance of each candidate feature by the mean decrease Gini index (MDGI) with the random forest (RF) package in R (30). A higher MDGI score means the feature is more informative for classifying an interface residue into hot spots and non-hot spots. In PredHS, 77 features with MDGI Z-score larger than 2.5 are selected. In the second step, redundant features are removed by sequential backward elimination (SBE) with 10-fold cross-validation. The SBE algorithm sequentially removes features from the whole feature set till an optimal feature subset is obtained. A feature is removed if its removal maximizes the performance of the predictor. Finally, an optimal set of 38 features is obtained for building prediction models (22).

Prediction models

Two classifiers were built for hot spot prediction: one is PredHS-SVM, which is implemented with LIBSVM package (31) using radial basis function (RBF) as the kernel; the other is an ensemble classifier, PredHS-Ensemble, which is built to handle the problem of imbalance in classification. PredHS-Ensemble uses an ensemble of n sub-models that employ an asymmetric bootstrap resampling approach to generate subsets. Each subset contains all of the hot spots and a subset of non-hot spots that is generated using random bootstrap sampling and has the same size as hot spots. The final results are calculated by majority votes among the outputs of the n sub-models.

WEB SERVER INTERFACE

Users can upload a file of a protein structure in the PDB format or simply input a PDB code to start a job. The input structure should contain at least two chain identifiers forming an interface. Multiple structures can be submitted in one run. Users could choose to leave their email address or a job title to conveniently retrieve the results. The PredHS server first checks the validity of the input structure, and once confirmed, it progresses to the second step for users to select the query protein and its partners. When the selection is done, users can submit the prediction job by clicking the ‘Submit’ button.

A typical query takes no more than 30 min to run. For each submitted structure, the server returns two lists of residues and their associated scores to be hot spot, corresponding to PredHS-SVM and PredHS-Ensemble, respectively (Figure 2A). The red residues in the query sequence are predicted hot spots. Users can view the residue ID and its associated score by putting the mouse over the residue. The higher the score is, the more likely a given residue is a hot spot. The results can be downloaded in text or visualized in an interactive 3D viewer AstexViewer (32) by following the ‘View in 3D’ link. As shown in Figure 2B, predicted hot spots are colored according to their associated scores.

Figure 2.

Figure 2.

A snapshot of PredHS prediction output. (A) SVM results and Ensemble results of a job are listed. Predicted hot spots are colored in red. By default, PredHS predicts interfaces to be hot spots with a default cutoff 0 which is adjustable by the user. Users can put the mouse over a residue to view its residue ID and predicted score. (B) Interactive 3D view for a prediction. Predicted hot spots are colored according to their predicted scores. Residues with score higher than zero are shown from light red to red as the score increases.

RESULTS

The PredHS web server trains prediction models based on a dataset of 265 experimentally mutated interface residues obtained from ASEdb (3) and the published data of Kortemme and Baker (10), among which 65 are hot spots. To make a fair comparison with other methods, we use an independent test dataset extracted from the BID database that contains alanine-mutation experiments of a different set of 127 interface residues, of which 39 are identified as hot spots.

We calculated a variety of measures to evaluate the predictions:

graphic file with name M1.gif
graphic file with name M2.gif
graphic file with name M3.gif
graphic file with name M4.gif
graphic file with name M5.gif
graphic file with name M6.gif

Here TP, FP, TN and FN are true positive, false positive, true negative and false negative counts. We also calculated the area under the receiver operating characteristic (ROC) curve (AUC).

PredHS predicts hot spots using an optimal feature set of 38 features, which are selected from the combination of 108 site features, 108 Euclidean features and 108 Voronoi features with the proposed two-step feature selection approach. These features are calculated based on heterogeneous information resources, including position-specific scoring matrix (PSSM) (33), physicochemical features (34), solvent accessible burial (35), atom/residue contacts (13), pair potentials (36), topographical score (16,26), four-body pseudo-potential (25), side chain energy score (24) and local structural entropy (23). To analyze the relative contribution of different feature resources, we calculated the ratio of each feature resource occurred in the selected optimal set (37). The ratio of 0.117 is used as a reference ratio since it is the ratio of selected 38 optimal features out of the total number of features. From Figure 3, we can see that the topographical score contributes most to the hot spot identification, followed by the side chain energy score, atom/residue contacts, four-body pseudo-potential and local structural entropy.

Figure 3.

Figure 3.

Relative contribution of different feature resources. The y-axes show the ratio of the individual feature resource occurred in the selected optimal features. The reference ratio of 0.117 is the ratio of 38 selected features out of the total number of features.

We used 10-fold cross validation on the training dataset to evaluate the predictive power of structural neighborhood properties and selected optimal features. Five SVM classifiers were built and tested using five groups of features, including site, sequence, Euclidean, Voronoi and optimal features. The sequence features are generated with a sliding window of 21, which includes 10 residues upstream and 10 residues downstream of the target residue in the protein sequence. As shown in Table 1, classifiers with structural neighborhood properties (Euclidean and Voronoi) achieve better performance than those using site and sequence features in terms of AUC score. The classifier with linear sequence neighborhood properties is significantly worse than the others, and thus the sequence features are not included in the combination. PredHS-SVM with the optimal features achieves the best performance, suggesting that the proposed two-step feature selection algorithm can effectively improve the prediction.

Table 1.

Prediction performance comparison of classifiers with different types of features (site, sequence, Euclidean, Voronoi and optimal subset)

Feature types AUC Accuracy Recall Specificity Precision CC F1
Site 0.81 0.82 0.62 0.89 0.66 0.52 0.63
Sequence 0.76 0.80 0.39 0.93 0.77 0.42 0.46
Euclidean 0.82 0.82 0.57 0.91 0.67 0.50 0.60
Voronoi 0.83 0.84 0.60 0.92 0.75 0.57 0.65
Optimal subset (PredHS-SVM) 0.87 0.88 0.75 0.93 0.79 0.69 0.76

Furthermore, we compared PredHS with other five state-of-the-art methods, including Robetta (10), FOLDEF (9), HotPoint (38), KFC2a and KFC2b (15). Each method has a companion web server or a stand-alone software. Results of the independent BID dataset are shown in Table 2. PredHS significantly outperforms the existing methods in the five performance measures (accuracy, specificity, precision, CC and F1 score). Although KFC2a has a similar recall value (0.74) to that of PredHS-Ensemble, the specificity (0.74) and precision (0.56) of KFC2a are much lower than that (0.80 and 0.63) of PredHS-Ensemble.

Table 2.

Prediction performance comparison on the independent BID dataset. Maximum value(s) of each performance measure is(are) highlighted in bold.

Methods Accuracy Recall Specificity Precision CC F1
Robetta 0.70 0.33 0.86 0.52 0.23 0.41
FOLDEF 0.68 0.26 0.87 0.48 0.16 0.33
HotPoint 0.69 0.59 0.74 0.5 0.31 0.54
KFC2a 0.74 0.74 0.74 0.56 0.41 0.64
KFC2b 0.79 0.59 0.87 0.68 0.47 0.63
PredHS-SVM 0.83 0.59 0.93 0.79 0.57 0.68
PredHS-Ensemble 0.79 0.74 0.80 0.63 0.53 0.68

CONCLUSION

The PredHS web server provides an automated platform to predict hot spots from interfaces. In contrast to the approaches based on the recognition of differences in physicochemical properties, evolutionary conservation and solvent accessible area, an advantage of PredHS is that it integrates Euclidian and Voronoi neighborhoods together with a variety of heterogeneous information, including sequence-based, structure-based and energetic features. What's more, PredHS uses a two-step feature selection approach, providing an effective way for selecting an optimal subset of features within a reasonable computational cost, which improves the prediction performance and reduces the risk of over-fitting.

A limitation of PredHS and many other hot spot prediction methods is that they can only identify hot spots from known protein interfaces, which means that the input to these methods should be protein complexes forming interfaces other than monomers. We plan to improve PredHS by using structural alignment methods to detect hot spots from predicted interfaces, and thus make monomer input possible.

PredHS has been in service for >10 months and it is under continuous improvement. We hope PredHS can be applied to a wide range of hot spot identification and further functional analysis and so to provide a practical tool for biologists.

Acknowledgments

L.D. thanks for support from postdoctoral research station of Central South University.

FUNDING

National Natural Science Foundation of China [61309010, 61173118, 61272380]; China 863 Program [2012AA020403]; Specialized Research Fund for the Doctoral Program of Higher Education of China [20130162120073]. Funding for open access charge: National Natural Science Foundation of China.

Conflict of interest statement. None declared.

REFERENCES

  • 1.Clackson T., Wells J.A. A hot spot of binding energy in a hormone-receptor interface. Science (New York, N.Y.) 1995;267:383–386. doi: 10.1126/science.7529940. [DOI] [PubMed] [Google Scholar]
  • 2.Wells J.A., McClendon C.L. Reaching for high-hanging fruit in drug discovery at protein-protein interfaces. Nature. 2007;450:1001–1009. doi: 10.1038/nature06526. [DOI] [PubMed] [Google Scholar]
  • 3.Thorn K.S., Bogan A.A. ASEdb: a database of alanine mutations and their effects on the free energy of binding in protein interactions. Bioinformatics. 2001;17:284–285. doi: 10.1093/bioinformatics/17.3.284. [DOI] [PubMed] [Google Scholar]
  • 4.Fischer T.B., Arunachalam K.V., Bailey D., Mangual V., Bakhru S., Russo R., Huang D., Paczkowski M., Lalchandani V., Ramachandra C., et al. The binding interface database (BID): a compilation of amino acid hot spots in protein interfaces. Bioinformatics. 2003;19:1453–1454. doi: 10.1093/bioinformatics/btg163. [DOI] [PubMed] [Google Scholar]
  • 5.Massova I., Kollman P.A. Computational alanine scanning to probe protein−protein interactions: a novel approach to evaluate binding free energies. J. Am. Chem. Soc. 1999;121:8133–8143. [Google Scholar]
  • 6.Grosdidier S., Fernandez-Recio J. Identification of hot-spot residues in protein-protein interactions by computational docking. BMC Bioinformatics. 2008;9:447. doi: 10.1186/1471-2105-9-447. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 7.Brenke R., Kozakov D., Chuang G.Y., Beglov D., Hall D., Landon M.R., Mattos C., Vajda S. Fragment-based identification of druggable ‘hot spots’ of proteins using Fourier domain correlation techniques. Bioinformatics. 2009;25:621–627. doi: 10.1093/bioinformatics/btp036. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 8.Huo S., Massova I., Kollman P.A. Computational alanine scanning of the 1:1 human growth hormone-receptor complex. J. Comput. Chem. 2002;23:15–27. doi: 10.1002/jcc.1153. [DOI] [PubMed] [Google Scholar]
  • 9.Guerois R., Nielsen J.E., Serrano L. Predicting changes in the stability of proteins and protein complexes: a study of more than 1000 mutations. J. Mol. Biol. 2002;320:369–387. doi: 10.1016/S0022-2836(02)00442-4. [DOI] [PubMed] [Google Scholar]
  • 10.Kortemme T., Baker D. A simple physical model for binding energy hot spots in protein-protein complexes. Proc. Natl. Acad. Sci. U.S.A. 2002;99:14116–14121. doi: 10.1073/pnas.202485799. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 11.Ofran Y., Rost B. Protein-protein interaction hot spots carved into sequences. PLoS Comput. Biol. 2007;3:e119. doi: 10.1371/journal.pcbi.0030119. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 12.Darnell S.J., Page D., Mitchell J.C. An automated decision-tree approach to predicting protein interaction hot spots. Proteins. 2007;68:813–823. doi: 10.1002/prot.21474. [DOI] [PubMed] [Google Scholar]
  • 13.Cho K.I., Kim D., Lee D. A feature-based approach to modeling protein-protein interaction hot spots. Nucleic Acids Res. 2009;37:2672–2687. doi: 10.1093/nar/gkp132. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 14.Xia J.F., Zhao X.M., Song J., Huang D.S. APIS: accurate prediction of hot spots in protein interfaces by combining protrusion index with solvent accessibility. BMC Bioinformatics. 2010;11:174. doi: 10.1186/1471-2105-11-174. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 15.Zhu X., Mitchell J.C. KFC2: a knowledge-based hot spot prediction method based on interface solvation, atomic density, and plasticity features. Proteins. 2011;79:2671–2683. doi: 10.1002/prot.23094. [DOI] [PubMed] [Google Scholar]
  • 16.Assi S.A., Tanaka T., Rabbitts T.H., Fernandez-Fuentes N. PCRPi: presaging critical residues in protein interfaces, a new computational tool to chart hot spots in protein interfaces. Nucleic Acids Res. 2010;38:e86. doi: 10.1093/nar/gkp1158. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 17.Segura J., Fernandez-Fuentes N. PCRPi-DB: a database of computationally annotated hot spots in protein interfaces. Nucleic Acids Res. 2011;39:D755–760. doi: 10.1093/nar/gkq1068. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 18.Tuncbag N., Gursoy A., Keskin O. Identification of computational hot spots in protein interfaces: combining solvent accessibility and inter-residue potentials improves the accuracy. Bioinformatics. 2009;25:1513–1520. doi: 10.1093/bioinformatics/btp240. [DOI] [PubMed] [Google Scholar]
  • 19.Wang L., Liu Z.P., Zhang X.S., Chen L. Prediction of hot spots in protein interfaces using a random forest model with hybrid features. Protein Eng. Des. Sel. 2012;25:119–126. doi: 10.1093/protein/gzr066. [DOI] [PubMed] [Google Scholar]
  • 20.Cukuroglu E., Gursoy A., Keskin O. HotRegion: a database of predicted hot spot clusters. Nucleic Acids Res. 2012;40:D829–D833. doi: 10.1093/nar/gkr929. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 21.Guney E., Tuncbag N., Keskin O., Gursoy A. HotSprint: database of computational hot spots in protein interfaces. Nucleic Acids Res. 2008;36:D662–D666. doi: 10.1093/nar/gkm813. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 22.Deng L., Guan J., Wei X., Yi Y., Zhang Q.C., Zhou S. Boosting prediction performance of protein-protein interaction hot spots by using structural neighborhood properties. J. Comput. Biol. 2013;20:878–891. doi: 10.1089/cmb.2013.0083. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 23.Chan C.H., Liang H.K., Hsiao N.W., Ko M.T., Lyu P.C., Hwang J.K. Relationship between local structural entropy and protein thermostability. Proteins. 2004;57:684–691. doi: 10.1002/prot.20263. [DOI] [PubMed] [Google Scholar]
  • 24.Liang S., Grishin N.V. Effective scoring function for protein sequence design. Proteins. 2004;54:271–281. doi: 10.1002/prot.10560. [DOI] [PubMed] [Google Scholar]
  • 25.Krishnamoorthy B., Tropsha A. Development of a four-body statistical pseudo-potential to discriminate native from non-native protein conformations. Bioinformatics. 2003;19:1540–1548. doi: 10.1093/bioinformatics/btg186. [DOI] [PubMed] [Google Scholar]
  • 26.Levy E.D. PiQSi: protein quaternary structure investigation. Structure (London, England:1993) 2007;15:1364–1367. doi: 10.1016/j.str.2007.09.019. [DOI] [PubMed] [Google Scholar]
  • 27.Okabe A., Boots B., Sugihara K. Spatial Tessellations: Concepts and Applications of Voronoi Diagrams. Hoboken, New Jersey, United States: John Wiley & Sons, Inc; 1992. [Google Scholar]
  • 28.Barber C.B., Dobkin D.P., Huhdanpaa H. The quickhull algorithm for convex hulls. ACM Trans. Math. Softw. 1996;22:469–483. [Google Scholar]
  • 29.Segura J., Jones P.F., Fernandez-Fuentes N. Improving the prediction of protein binding sites by combining heterogeneous data and Voronoi diagrams. BMC Bioinformatics. 2011;12:352. doi: 10.1186/1471-2105-12-352. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 30.Liaw A., Wiener M. Classification and regression by randomForest. R News. 2002;2:18–22. [Google Scholar]
  • 31.Chang C.-C., Lin C.-J. LIBSVM: a library for support vector machines. ACM Trans. Intell. Syst. Technol. 2011;2:1–27. [Google Scholar]
  • 32.Hartshorn M.J. AstexViewer: a visualisation aid for structure-based drug design. J. Comput. Aided Mol. Des. 2002;16:871–881. doi: 10.1023/a:1023813504011. [DOI] [PubMed] [Google Scholar]
  • 33.Deng L., Guan J., Dong Q., Zhou S. Prediction of protein-protein interaction sites using an ensemble method. BMC Bioinformatics. 2009;10:426. doi: 10.1186/1471-2105-10-426. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 34.Kawashima S., Kanehisa M. AAindex: amino acid index database. Nucleic Acids Res. 2000;28:374. doi: 10.1093/nar/28.1.374. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 35.Kabsch W., Sander C. Dictionary of protein secondary structure: pattern recognition of hydrogen-bonded and geometrical features. Biopolymers. 1983;22:2577–2637. doi: 10.1002/bip.360221211. [DOI] [PubMed] [Google Scholar]
  • 36.Keskin O., Bahar I., Badretdinov A.Y., Ptitsyn O.B., Jernigan R.L. Empirical solvent-mediated potentials hold for both intra-molecular and inter-molecular inter-residue interactions. Protein Sci. 1998;7:2578–2586. doi: 10.1002/pro.5560071211. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 37.Hu L., Cui W., He Z., Shi X., Feng K., Ma B., Cai Y.D. Cooperativity among short amyloid stretches in long amyloidogenic sequences. PloS One. 2012;7:e39369. doi: 10.1371/journal.pone.0039369. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 38.Tuncbag N., Keskin O., Gursoy A. HotPoint: hot spot prediction server for protein interfaces. Nucleic Acids Res. 2010;38:W402–W406. doi: 10.1093/nar/gkq323. [DOI] [PMC free article] [PubMed] [Google Scholar]

Articles from Nucleic Acids Research are provided here courtesy of Oxford University Press

RESOURCES