Skip to main content

Detecting protein complexes in protein interaction networks using a ranking algorithm with a refined merging procedure

Abstract

Background

Developing suitable methods for the identification of protein complexes remains an active research area. It is important since it allows better understanding of cellular functions as well as malfunctions and it consequently leads to producing more effective cures for diseases. In this context, various computational approaches were introduced to complement high-throughput experimental methods which typically involve large datasets, are expensive in terms of time and cost, and are usually subject to spurious interactions.

Results

In this paper, we propose ProRank+, a method which detects protein complexes in protein interaction networks. The presented approach is mainly based on a ranking algorithm which sorts proteins according to their importance in the interaction network, and a merging procedure which refines the detected complexes in terms of their protein members. ProRank + was compared to several state-of-the-art approaches in order to show its effectiveness. It was able to detect more protein complexes with higher quality scores.

Conclusions

The experimental results achieved by ProRank + show its ability to detect protein complexes in protein interaction networks. Eventually, the method could potentially identify previously-undiscovered protein complexes.

The datasets and source codes are freely available for academic purposes at http://faculty.uaeu.ac.ae/nzaki/Research.htm.

Background

Proteins often collaborate by forming groups referred to as protein complexes in order to execute various cellular functions [1]. Accordingly, identifying protein complexes in protein interaction networks is an essential step towards better understanding normal and abnormal cellular processes. The higher the amounts of discovered biological information, the greater are the possibilities to design more effective medical treatments for numerous diseases. The biological methods employed for the detection of protein complexes often face drawbacks, mainly in time and cost requirements. Therefore, many computational methods were designed in order to complement the experimental efforts; for instance, by highlighting protein groups which could potentially delineate various cellular functions. In a computational context, a protein interaction network is usually modeled as an interaction graph in which vertices represent the proteins and edges represent their interactions. In this setting, it is generally assumed that protein complexes correspond to dense subgraphs. Among the recent methods, we herein highlight: Markov Clustering (MCL) [2] which uses random walks in protein interaction networks, the molecular complex detection (MCODE) algorithm [3] which identifies complexes as dense regions grown from highly-weighted vertices, the clustering based on maximal cliques (CMC) method [4], the Affinity Propagation (AP) algorithm [5], ClusterONE [6] which identifies protein complexes through clustering with overlapping neighborhood expansion, the restricted neighborhood search (RNSC) algorithm [7, 8], the RRW algorithm which generates complexes by using repeated random walks [9], CFinder [10] which is based on the clique percolation method and the GIBA tool [11] which consists of clustering and filtering steps to generate the set of protein complexes corresponding to a given protein interaction dataset. These methods, among several ones, showed relatively good performance in detecting protein complexes. However, the assumption that protein complexes correspond to dense subgraphs in the interaction network limits the detection process because it does not usually allow the identification of complexes with few members and/or few interactions. ProRank [12] is a recent method developed to detect protein complexes from protein interaction networks based on a protein ranking algorithm. When compared with previous methods, the experimental studies showed better results for the ProRank algorithm in terms of the number of detected protein complexes as well as precision, recall and accuracy levels. In spite of that, ProRank does not take into account possible overlaps among the detected complexes. In fact, a protein can exhibit many functions by being part of different complexes [13]. Therefore, it is indeed beneficial to reflect this fact when searching for protein complexes in interaction networks. Moreover, ProRank computes a similarity matrix consisting of the similarity scores among all the proteins in the network. This step can be discarded since it is computationally-expensive and has a comparatively small effect on the final results [14]. In this paper, we present ProRank+, an enhanced protein-complex detection algorithm which is able to detect possibly-overlapping complexes. Additionally, the method includes a novel merging procedure, Merging by Cohesiveness, used to refine the detected protein complexes. Here, complexes are viewed as entities of highly-interconnected members that are well-separated from the rest of the interaction network. The experimental studies and results greatly favor our approach.

Methods

The ProRank method

ProRank [12, 14] is a recent protein complex-detection method. It mainly consists of a protein ranking algorithm inspired by Google’s PageRank algorithm [1518] which quantifies and ranks web pages according to their level of importance. Likewise, ProRank applies the same analogy on protein interaction networks to rank proteins in interaction networks and thus pinpoint the “essential” ones which most-likely play key roles in cellular functions. Those proteins could then be considered as starting points based on which the detected complexes can be formed. In addition, the method also takes into account the evolutionary relationships among protein members of the same complex by calculating their pairwise similarities. Five main steps delineate the ProRank algorithm:

  1. 1.

    Pruning: removing unreliable interactions which could negatively affect the detection process using the AdjustCD method [19, 20], a weighting scheme that iteratively calculates the reliability of protein interactions based on the topology of the interaction network. Then, the interactions with scores less than a specified threshold are discarded.2. Filtering: a protein interaction network usually contains noisy proteins which may belong to one of three defined types: bridge proteins which have a disconnected subgraph of neighbors; fjord proteins whose neighbors have a small number of interactions among each other; and shore proteins which have at least one neighbor with significantly few interactions with other proteins. Accordingly, proteins in the network are examined for potential memberships in these types. Figure 1 illustrates examples of the described categories.

Figure 1
figure 1

Examples of bridge, fjord and shore proteins in protein-protein interaction networks.

  1. 3.

    Protein Similarity Calculating: proteins belonging to the same complex most likely have evolutionary relationships. Consequently, the similarity scores among all the proteins in the network are calculated using pairwise alignment.

  2. 4.

    Protein Ranking: a ranking algorithm, analogous to the PageRank algorithm, is used to order proteins based on two criteria: the number of interactions in which they participate and their similarity levels with other proteins.

  3. 5.

    Complex Detection: using the spoke model, essential proteins, which do not belong to any of the types defined in step 2, are consecutively considered by their decreasing ranking order and each of them is pulled from the interaction network along with its neighbors to form a protein complex. Here, each protein can belong to one complex only.

In addition to the steps mentioned above, the ProRank algorithm discards formed protein complexes of less than three members. Also, it merges two complexes if more than 50% of the neighbors of each protein belonging to the first complex are in the second complex. To show the potential of the approach, we consider the network presented in Figure 2. It is a sub-network generated from the yeast protein-protein interaction dataset at the Mentha interactome browser [21], version date 05/01/2014. The sub-network includes of 235 interactions. It corresponds to the largest connected portion of the network consisting of proteins which participate in the interactions of scores greater than or equal to 0.99, and their inter-connections of scores greater than or equal to 0.8. The nodes colored in yellow highlight the essential proteins identified by ProRank and the resulting protein complexes are presented in the first row of Figure 3.

Figure 2
figure 2

A yeast protein-protein interaction sub-network. The nodes coloured in yellow correspond to essential proteins identified by the ProRank algorithm.

Figure 3
figure 3

The detected complexes by the original ProRank algorithm when applied on the sub-network in Figure  2 .

The ProRank + method

Although the ProRank method achieved competitive results when compared to other approaches, it could still be improved further. Pruning, filtering, ranking and complex-detection steps constitute strong building blocks of the approach. This is true since unreliable interactions can be removed by the pruning step; noisy proteins can be identified by the filtering phase; essential proteins can be ordered based on their importance in the network by the ranking step; and detected complexes can be formed starting from essential proteins by the spoke model at the complex-detection stage. On the other hand, the similarity calculating step by which the similarities among all the proteins in a given interaction network are computed is computationally very expensive because such networks are typically very large. Since the effect of this step on the final results is relatively minimal [12] and because the high similarity among proteins is not exclusive to the ones belonging to the same complex, it can be excluded. Consequently, this will decrease the required computation time and will not compromise the quality of the final results.

Added to that, proteins could contribute in multiple cellular functions by being part of several protein complexes [13]. For instance, among the 1189 proteins contained in the MIPS catalog of protein complexes [22], 820 proteins (approx. 69%) belong to more than one complex. Similarly, among the 1279 covered by the SGD complex set [23], 332 proteins (approx. 26%) belong to multiple complexes. A protein interaction network is hence expected to comprise overlapping complexes, and accounting for this biological fact would most likely lead to more accurate complex-detection results. Accordingly, let us observe the effect of this adjustment on the protein-protein interaction network presented in Figure 2. The detected complexes, corresponding to applying the ProRank method with the added overlap assumption, are listed Figure 4. The results uphold the improvement added by the overlap extension which could potentially lead to a more correct detection of protein complexes. Actually, by allowing proteins to belong to more than one complex, the number of complexes formed from the identified essential proteins becomes higher indeed. However, it can be noticed that the amount of overlaps among some the detected complexes is relatively high. This was anticipated. Actually, since all essential proteins are now seeds for forming protein complexes, the ones that share numerous neighbors will certainly produce close and highly-overlapping protein complexes. In order to overcome this limitation and to further improve the quality of the predicted complexes, the following filtering and merging steps are added to the algorithm (Figure 5):

Figure 4
figure 4

The detected complexes by the ProRank algorithm with the complex-overlap assumption when applied on the sub-network in Figure  2 .

Figure 5
figure 5

A schema representing the steps which delineate the ProRank + algorithm.

  1. 1.

    The set of generated complexes is filtered to remove duplicates resulting from the complex-overlap notion.

  2. 2.

    Next, a merging procedure referred to as Merging by Cohesiveness, is applied in the direction of exploring more variations of the detected complexes. In consistency with the initial considerations of the ProRank method, we rely on the key roles of the essential proteins in the network to establish the merging process. All the detected complexes are matched against each other for possible merging. Two complexes, C1 and C2, whose percentage of overlapping essential proteins is above a merging threshold, merging_threshold, are merged along with their interconnections to form a larger complex C. Then, the process adopts the cohesiveness measure introduced in [6] to assess the quality of the resulting complex and its iteratively-extended variants defined hereafter. The cohesiveness of a complex C is given by equation (1):

    Cohesive C = w in C w in C + w out C + p
    (1)

where w in (C) is the sum of the weights of edges that are entirely contained in C, w out (C) is the sum of the weights of edges that connect the proteins belonging to C to the rest of the network, and p is a penalty term reflecting uncertainties in the protein interaction network. This cohesiveness measure was developed to model the assumption by which a protein complex is viewed as an entity with strongly-interconnected members that is well-separated from the rest of the network. The successive steps of our merging procedure aim at refining merged complex while increasing their cohesiveness measures. For each protein, prot, contained in C: first, the set of its neighbors, N prot , is formed; then, for each neighbor protein, n prot , in N prot , the complex C’ = C {n prot } is constructed; and if the cohesiveness of C’ is greater or equal to the cohesiveness of C, n prot is added to C. After exploring all the proteins initially belonging to C in the same manner, the derived complex is added to the final list of detected complexes. The pseudocode of merging two complexes, Merge_by_Cohesiveness, is presented in next sub-section.

  1. 3.

    Possible duplicate complexes may also result from the merging processes. Therefore, an additional duplicate-filtering step is added in order to ensure the accuracy of the results.

Results and discussion

Datasets and evaluation criteria

ProRank + was tested on five large-scale protein-protein interaction datasets associated to the well-studied yeast microorganism. Four of the datasets consist of weighted protein interactions, they are: Collins [24], Krogan core and Krogan extended [25], and Gavin [1]. The fifth dataset, BioGRID [26], contains unweighted interactions. The properties of the 5 datasets used in the experimental work are shown in Table 1. The set of predicted complexes was matched against the MIPS catalog of protein complexes [27]. The datasets and the reference set of complexes were used to evaluate the ClusterONE method and to compare its performance with other approaches. We also adopted the same quality scores applied in [6] to assess the quality of our algorithm. In addition, it is important to note that the parameters of the compared algorithms were optimized in such a way to produce best possible results. The quality scores cover: (a) the number of complexes in the reference catalog that are matched with at least one of the predicted complexes with an overlap score, w, greater than 0.25; (b) the clustering-wise sensitivity (S n ); and (c) the clustering-wise positive predictive value (PPV) which were originally introduced in by Brohée and van Helden in [28] to calculate the matching quality, mainly in terms of the correctly-matched protein members among the detected complexes; (d) the geometric accuracy (Acc) which is the geometric mean of S n and PPV; and (e) the maximum matching ratio (MMR) which reflects how accurately the predicted complexes represent the reference complexes by dividing the total weight of the maximum matching by the number of reference complexes. Given m predicted complexes and n references complexes, and based on the confusion matrix, T = [t ij ], the corresponding formulae are given by the following equations ((2,3,4,5)) where t ij represents the number of proteins that are found in both predicted complex m and reference complex n.

Table 1 The properties of the five datasets used in the experimental study
w A , B = A B 2 A B
(2)
S n = i = 1 n ma x j = 1 m t ij i = 1 n n i
(3)
PPV = j = 1 m ma x i = 1 n t ij j = 1 m i = 1 n t ij
(4)
Acc = S n × PPV
(5)

Experimental settings of ProRank+

The steps of applying ProRank + on a given dataset, D, and their experimental settings are:

  1. 1.

    Pruning: removing unreliable protein interactions from D using the AdjustCD method [19, 20]. This technique assigns weights to the interactions based on the network topology and considers as unreliable those whose weights are less than a specified threshold. Here, we experimentally set the threshold to 0.2 for weighted datasets and to 0.45 for unweighted datasets.

  2. 2.

    Filtering: identifying bridge, fjord, and shore proteins which could add noise to the network, as defined in [12].

  3. 3.

    Protein Ranking: proteins are ordered using a ranking algorithm, in analogy with the PageRank algorithm.

  4. 4.

    Complex Detection: all the essential proteins, i.e. those that are filtered as noise, are seeds based on which detected complexes are formed using the spoke model. Here, a protein can belong to more than one complex.

  5. 5.

    Pre-processing: The set of predicted complexes is filtered to remove possible duplicates generated due to the introduced overlap assumption.

  6. 6.

    Merging by Cohesiveness: Two detected complexes, whose overlap is above a merging threshold, here 75%, are merged. The subsequent complex is iteratively extended following the presented merging procedure.

  7. 7.

    Post-processing: again, the refined set of predicted complexes is filtered to remove possibly replicated copies of the same complexes resulting from the previous merging step.

Comparison with other methods

ProRank + was compared to other state-of-the-art methods, applied on the same datasets and evaluated based on the same quality scores. These methods include ProRank [12] to highlight the attained improvement, Markov Clustering (MCL) [2], the molecular complex detection (MCODE) algorithm [3], the clustering based on maximal cliques (CMC) method [4], the Affinity Propagation (AP) algorithm [5], ClusterONE [6], the restricted neighborhood search (RNSC) algorithm [7], the RRW algorithm [9], and CFinder [10]. The comparisons among the results scored by these approaches [6] and those scored by ProRank + are displayed in Figures 6 and 7. Since not all the algorithms can be applied to unweighted datasets, fewer methods for instance were applied on the BioGRID dataset.

Figure 6
figure 6

ProRank + compared to ProRank, MCL, MCODE, CMC, AP, ClusterONE, RNSC, RRW, and CFinder. Here, the four weighted yeast datasets are used: Collins, Krogan core, Krogan extended and Gavin. The comparisons are in terms of (a) the number of clusters that match the reference complexes, (b) the geometric accuracy (Acc) which reflects the clustering-wise sensitivity (S n ) and the clustering-wise positive predictive value (PPV), and (c) the maximum matching ratio (MMR).

Figure 7
figure 7

ProRank + compared to ProRank, MCL, MCODE, AP, ClusterONE, RNSC, and RRW. Here, the un-weighted BioGRID dataset is used. The comparisons are in terms of (a) the number of clusters that match reference complexes, and (b) the geometric accuracy (Acc) which reflects the clustering-wise sensitivity (S n ) and the clustering-wise positive predictive value (PPV), and the maximum matching ratio (MMR).

The experimental results show that ProRank + detected a higher number of protein complexes that matched with the reference set. It is worth-mentioning that the number of clusters predicted by ProRank + is relatively higher than the number of clusters returned by the other methods for Collins, Gavin and BioGRID datasets. Nevertheless, the ratio equivalent to the number of matched complexes over the number of detected clusters falls within the same range of the ratio corresponding to the other methods. Added to that, ProRank + achieved higher clustering-wise sensitivity (S n ), geometric accuracy (Acc) and maximum matching ratio (MMR) for all the considered datasets. However, it could not surpass the clustering-wise positive predictive value (PPV) of ProRank which was the highest for all datasets. This can be justified by the fact that PPV tends to be lower when the overlaps among the detected complexes are substantial. By the PPV formula, a complex-detection algorithm that fully succeeds in detecting the reference complexes has a PPV value less than or equals to 1 since there is a matching predicted complex for every reference complex, in addition to other predicted complexes that partially overlap with reference complexes. On the other hand, a dummy detection algorithm which distributes the proteins into separate sets of single elements has a PPV value equals to 1, which is greater than the PPV of the perfect algorithm that is able to detect all reference complexes. Consequently, PPV values must be carefully analyzed since they may not always reflect the competence of a certain method. Moreover, the geometric accuracy (Acc) is negatively affected by the predicted complexes that do not match any of the reference complexes. This somehow contradicts the initial purpose of developing methods for the detection of protein complexes which mainly consists of finding previously unknown or undiscovered entities. Accordingly, the MMR measure [6] was introduced to overcome such limitations by dividing the total weight of the maximum matching with the number of reference complexes. The MMR values achieved by ProRank + are in the favor of the proposed approach. We hereby note that our approach could also be explored using other pruning methods such as the ones introduced in [29, 30].

Testing the ability of ProRank + to detect small complexes

Detecting small protein complexes is not a common feature of complex-detection methods. In fact, it is important to identify such complexes in protein interaction networks. For instance, among the 313 protein complexes included in the MIPS catalogue [22], 104 complexes consist of 2 or 3 proteins (approx. 33%). Most of the approaches which view protein complexes as dense regions in the interaction networks are usually unable to detect complexes of small sizes. In view of that, we also tested the ability of ProRank + to detect small protein complexes. We considered the same yeast datasets that were utilized in the previous experiments. The set consisting of the 104 complexes of small sizes in the MIPS catalogue [22] was formed and used as a reference set. The datasets were filtered by the AdjustCD method with a threshold of 0.2. The corresponding results are shown in Table 2. The table highlights the competency of ProRank + in detecting small protein complexes in terms of the number of matched complexes as well as the accuracy (Acc) and the maximum matching ratio (MMR) scores.

Table 2 Testing ProRank + on small complexes

Testing ProRank + on Human protein-protein interaction dataset

When tested on various datasets, weighted and unweighted, ProRank + was able to detect more complexes than state-of-the-art methods with higher quality scores. Indeed, the method could be very helpful for biologists if it was tested on Human interactions and proved valuable in detecting known protein complexes of key roles in normal and abnormal cellular functions. Therefore, we applied our method on the Human interactions dataset in the BioGRID repository [26]. The interactions are unweighted, and thus the pruning threshold was set to 0.45. The pruned dataset consisted of 3031 interactions. ProRank + was able to predict 267 protein complexes. We then examined the detected complexes for potential mappings with known protein complexes; some of which are presented in Table 3 and highlighted hereafter.

Table 3 Selected complexes detected by ProRank + when tested on human protein-protein interaction dataset
  1. 1.

    The CCT micro-complex [31] which participates in protein folding, assembly and transport. It was fully-detected by ProRank + .

  2. 2.

    The Ribosomal protein complex [32] was detected with an 81.48% match. Five additional proteins were detected: SLC25A5, RPS27L, NOP56, RPL10L, and RPLP0P6. Their association with the detected complex may be just noise or, on the contrary, could present biologically meaningful information.

  3. 3.

    The PA700-20S-PA28 complex [33] was detected with a mapping percentage of 83.33%. This complex is a key component of the ATP-dependent proteolytic pathway in eukaryotic cells and is responsible for the degradation of most cellular proteins.

  4. 4.

    A recent publication [34] confirmed that the mutations of the SWItch/Sucrose NonFermentable (SWI/SNF) complex are ubiquitous in various types of cancer. Accordingly, future research efforts will put more focus on this tumor suppressor complex towards better understanding of cancer diseases and in the direction of developing more effective cures. The SWI/SNF complex is composed of ten elements distributed as follows: (a) SMARCA2 or SMARCA4, two mutually-exclusive ATPase enzymatic subunits; (b) ARID1A, ARID1B, or PBRM1, three mutually-exclusive subunits associated to functional specificity; (c) core and accessory subunits including SMARCB1, SMARCC1, SMARCC2, SMARCE1, SMARCD1, SMARCD2, or SMARCD3, PHF10, DPF1, or DPF2, DPF3, and ACTL6A or ACTL6B. We mapped the composition of SWI/SNF with the set of predicted complexes by ProRank+. Our method was able to detect a complex consisting of the elements SMARCA4, SMARCC1, ARID1A, SMARCE1, SMARCC2, SMARCA2, SMARCB1. In comparison with the known structure of SWI/SNF, ProRank + correctly predicted six members out of ten corresponding to 60% of its subunits with a relatively low number of false positives.

The above experiment affirms the ability of ProRank + to identify significant and key protein complexes from protein interaction data. In addition, such outcomes could potentially contain relevant and previously-undiscovered protein complexes or unidentified protein members of certain complexes.

Conclusions

In this paper, we presented ProRank+, an efficient method for detecting protein complexes in protein-protein interaction networks. The detection process is mainly centered on a ranking algorithm that allows the identification of key proteins based on which the corresponding components are formed. It is also tailored by a series of pruning, filtering and merging steps, allowing the refinement of the drawn complexes. Unlike most approaches, the design of our method is not bound by the sole association of protein complexes to dense regions in interaction networks. In addition, ProRank + takes into account possible overlaps among complexes and this is an important assumption that reflects biological facts. In contrast with other methods, the experimental study underlined the competitive ability of ProRank + to identify protein complexes. The performance of our algorithm was tested using weighted and un-weighted datasets, and using Human protein interaction data as well. The results were in favor of the introduced approach.

References

  1. Gavin AC, Aloy P, Grandi P, Krause R, Boesche M, Marzioch M, Rau C, Jensen LJ, Bastuck S, Dümpelfeld B, Edelmann A, Heurtier MA, Hoffman V, Hoefert C, Klein K, Hudak M, Michon AM, Schelder M, Schirle M, Remor M, Rudi T, Hooper S, Bauer A, Bouwmeester T, Casari G, Drewes G, Neubauer G, Rick JM, Kuster B, Bork P, et al: Proteome survey reveals modularity of the yeast cell machinery. Nature. 2006, 440: 631-636. 10.1038/nature04532.

    Article  PubMed  CAS  Google Scholar 

  2. Dongen S: Graph Clustering by Flow Simulation. 2000, University of Utrecht: Amsterdam, PhD Thesis

    Google Scholar 

  3. Bader GD, Hogue CWV: An automated method for finding molecular complexes in large protein interaction networks. BMC Bioinformatics. 2003, 4: 2-10.1186/1471-2105-4-2.

    Article  PubMed Central  PubMed  Google Scholar 

  4. Guimei L, Wong L, Chua HN: Complex discovery from weighted PPI networks. Bioinformatics. 2009, 25 (15): 1891-1897. 10.1093/bioinformatics/btp311.

    Article  Google Scholar 

  5. Frey BJ, Dueck D: Clustering by passing messages between data points. Science. 2007, 315 (5814): 972-976. 10.1126/science.1136800.

    Article  PubMed  CAS  Google Scholar 

  6. Nepusz T, Yu H, Paccanaro A: Detecting overlapping protein complexes in protein-protein interaction networks. Nat Methods. 2012, 9: 471-472. 10.1038/nmeth.1938.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  7. King AD, Przulj N, Jurisica I: Protein complex prediction via cost-based clustering. Bioinformatics. 2004, 20 (17): 3013-3020. 10.1093/bioinformatics/bth351.

    Article  PubMed  CAS  Google Scholar 

  8. Przulj N, Wigle DA, Jurisica I: Functional topology in a network of protein interactions. Bioinformatics. 2004, 20 (3): 340-348. 10.1093/bioinformatics/btg415.

    Article  PubMed  CAS  Google Scholar 

  9. Macropol K, Can T, Singh AK: RRW: repeated random walks on genome-scale protein networks for local cluster discovery. BMC Bioinformatics. 2009, 10: 283-10.1186/1471-2105-10-283.

    Article  PubMed Central  PubMed  Google Scholar 

  10. Adamcsek B, Palla G, Farkas IJ, Derenyi I, Vicsek T: CFinder: locating cliques and overlapping modules in biological networks. Bioinformatics. 2006, 22 (8): 1021-1023. 10.1093/bioinformatics/btl039.

    Article  PubMed  CAS  Google Scholar 

  11. Moschopoulos CN, Pavlopoulos GA, Schneider R, Likothanassis SD, Kossida S: GIBA: a clustering tool for detecting protein complexes. BMC Bioinformatics. 2009, 10 (Suppl 6): S11-10.1186/1471-2105-10-S6-S11.

    Article  PubMed Central  PubMed  Google Scholar 

  12. Zaki NM, Berengueres J, Efimov D: Detection of protein complexes using a protein ranking algorithm. Proteins. 2012, 80 (10): 2459-2468. 10.1002/prot.24130.

    Article  PubMed  CAS  Google Scholar 

  13. Hodgkin J: Seven types of pleiotropy. Int J Dev Biol. 1998, 42 (3): 501-505.

    PubMed  CAS  Google Scholar 

  14. Zaki NM, Berengueres J, Efimov D: Prorank: A Method for Detecting Protein Complexes. Proceedings of the 14th International Conference on Genetic and Evolutionary Computation Conference (GECCO ’12): 7–11 2012. Edited by: Terence S. 2012, Philadelphia: ACM, New York, 209-216.

    Google Scholar 

  15. Brin S, Page L: The anatomy of a large-scale hypertextual web search engine. Computer Networks & ISDN Systems. 1998, 30 (1–7): 107-117.

    Article  Google Scholar 

  16. Bryan K, Leise T: The $25,000,000,000 eigenvector: the linear algebra behind Google. SIAM Rev. 2006, 48 (3): 569-581. 10.1137/050623280.

    Article  Google Scholar 

  17. Langville AN, Meyer CD: Google’s PageRank and Beyond: The Science of Search Engine Rankings. 2006, NJ, USA: Princeton University Press

    Google Scholar 

  18. Ishii H, Tempo R: Distributed randomized algorithms for the PageRank computation. IEEE Trans Automatic Control. 2010, 55 (9): 1987-2000.

    Article  Google Scholar 

  19. Hon NC, Sung WK, Wong L: Exploiting indirect neighbours and topological weight to predict protein function from protein-protein interactions. Bioinformatics. 2006, 22 (13): 1623-1630. 10.1093/bioinformatics/btl145.

    Article  Google Scholar 

  20. Chua HN, Ning K, Sung WK, Leong W, Wong L: Using indirect protein-protein interactions for protein complex prediction. J Bioinform Comput Biol. 2008, 6 (3): 435-466. 10.1142/S0219720008003497.

    Article  PubMed  CAS  Google Scholar 

  21. Calderone A, Castagnoli L, Cesareni C: mentha: a resource for browsing integrated protein-interaction networks. Nat Methods. 2013, 10: 690-10.1038/nmeth.2561.

    Article  PubMed  CAS  Google Scholar 

  22. Mewes HW, Amid C, Arnold R, Frishman D, Güldener U, Mannhaupt G, Münsterkötter M, Pagel P, Strack N, Stümpflen V, Warfsmann J, Ruepp A: MIPS: analysis and annotation of proteins from whole genomes. Nucleic Acids Res. 2004, 32 (Suppl 1): 41-44.

    Article  Google Scholar 

  23. Hong EL, Balakrishnan R, Dong Q, Christie KR, Park J, Binkley G, Costanzo MC, Dwight SS, Engel SR, Fisk DG, Hirschman JE, Hitz BC, Krieger CJ, Livstone MS, Miyasato SR, Nash RS, Oughtred R, Skrzypek MS, Weng S, Wong ED, Zhu KK, Dolinski K, Botstein D, Cherry JM: Gene ontology annotations at SGD: new data sources and annotation methods. Nucleic Acids Res. 2008, 36 (Suppl 1): 577-581.

    Google Scholar 

  24. Collins SR, Kemmeren P, Zhao XC, Gleenblatt JF, Spencer F, Holstege FCP, Weissman JS, Krogan NJ: Toward a comprehensive atlas of the physical interactome of saccharomyces cerevisiae. Mol Cell Proteomics. 2007, 6 (3): 439-450.

    Article  PubMed  CAS  Google Scholar 

  25. Krogan NJ, Cagney G, Yu H, Zhong G, Guo X, Ignatchenko A, Li J, Pu S, Datta N, Tikuisis AP, Punna T, Peregrín-Alvarez JM, Shales M, Zhang X, Davey M, Robinson MD, Paccanaro A, Bray JE, Sheung A, Beattie B, Richards DP, Canadien V, Lalev A, Mena F, Wong P, Starostine A, Canete MM, Vlasblom J, Wu S, Orsi C: Global landscape of protein complexes in the yeast saccharomyces cerevisiae. Nature. 2006, 440: 637-643. 10.1038/nature04670.

    Article  PubMed  CAS  Google Scholar 

  26. Stark C, Breitkreutz BJ, Reguly T, Boucher L, Breitkreutz A, Tyres M: BioGRID: a general repository for interaction datasets. Nucleic Acids Res. 2006, 34 (Suppl 1): D535-D539.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  27. Mewes HW, Frishman D, Gruber C, Geier B, Haase D, Kaps A, Lemcke K, Mannhaupt G, Pfeiffer F, Schüller C, Stocker S, Weil B: MIPS: a database for genomes and protein sequences. Nucleic Acids Res. 2000, 28 (1): 37-40. 10.1093/nar/28.1.37.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  28. Brohée S, van Helden J: Evaluation of clustering algorithms for protein-protein interaction networks. BMC Bioinformatics. 2006, 7: 488-10.1186/1471-2105-7-488.

    Article  PubMed Central  PubMed  Google Scholar 

  29. Zaki NM, Dmitry D, Berengueres J: Protein complex detection using interaction reliability assessment and weighted clustering coefficient. BMC Bioinformatics. 2013, 14: 163-10.1186/1471-2105-14-163.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  30. Kritikos GD, Moschopoulos C, Vazirgiannis M, Kossida S: Noise reduction in protein-protein interaction graphs by the implementation of a novel weighting scheme. BMC Bioinformatics. 2011, 12: 239-10.1186/1471-2105-12-239.

    Article  PubMed Central  PubMed  Google Scholar 

  31. Liou AK, Willison KR: Elucidation of the subunit orientation in cct (chaperonin containing tcp1) from the subunit composition of cct micro-complexes. EMBO J. 1997, 16: 4311-4316. 10.1093/emboj/16.14.4311.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  32. Nakao A, Yoshihama M, Kenmochi N: Rpg: the ribosomal protein gene database. Nucleic Acids Res. 2004, 32 (Suppl 1): D168-D170.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  33. Kopp F, Dahlmann B, Kuehn L: Reconstitution of hybrid proteasomes from purified pa700-20 S complexes and pa28alphabeta activator: ultrastructure and peptidase activities. J Mol Biol. 2001, 313 (3): 465-471. 10.1006/jmbi.2001.5063.

    Article  PubMed  CAS  Google Scholar 

  34. Shain AH, Pollack JR: The spectrum of SWI/SNF mutations, ubiquitous in human cancers. PLos ONE. 2013, 8: 1:e55119-

    Article  Google Scholar 

Download references

Acknowledgements

The authors would like to acknowledge the assistance provided by the National Research Foundation (Grants Ref. No. 21 T021 and 31T052-UPAR) and the Research Support and Sponsored Projects Office at the United Arab Emirates University (UAEU).

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Eileen Marie Hanna.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

EMH and NZ have contributed to the conceptual development of the method. EMH has performed the experimental work and the statistical analysis. Both authors contributed to the manuscript writing. All authors read and approved the final manuscript.

Authors’ original submitted files for images

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly credited. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Hanna, E.M., Zaki, N. Detecting protein complexes in protein interaction networks using a ranking algorithm with a refined merging procedure. BMC Bioinformatics 15, 204 (2014). https://doi.org/10.1186/1471-2105-15-204

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-15-204

Keywords