Skip to main content

Ontology integration to identify protein complex in protein interaction networks

Abstract

Background

Protein complexes can be identified from the protein interaction networks derived from experimental data sets. However, these analyses are challenging because of the presence of unreliable interactions and the complex connectivity of the network. The integration of protein-protein interactions with the data from other sources can be leveraged for improving the effectiveness of protein complexes detection algorithms.

Methods

We have developed novel semantic similarity method, which use Gene Ontology (GO) annotations to measure the reliability of protein-protein interactions. The protein interaction networks can be converted into a weighted graph representation by assigning the reliability values to each interaction as a weight. Following the approach of that of the previously proposed clustering algorithm IPCA which expands clusters starting from seeded vertices, we present a clustering algorithm OIIP based on the new weighted Protein-Protein interaction networks for identifying protein complexes.

Results

The algorithm OIIP is applied to the protein interaction network of Sacchromyces cerevisiae and identifies many well known complexes. Experimental results show that the algorithm OIIP has higher F-measure and accuracy compared to other competing approaches.

Background

In the post-genomic era, one of the most important issues is to systematically analyze and comprehensively understand the topology of biological networks and biochemical progress in cells. The current knowledge base of protein-protein interactions has been built from the heterogeneous data sources generated by high-throughput techniques [14].Protein complexes can help us to understand certain biological progress and to predict the functions of proteins. A wide range of graphtheoretic approaches have been employed for detecting protein complexes from protein interaction networks. However, they have been limited in accuracy due to the presence of unreliable interactions and the complex connectivity patterns of the networks. The experimental data sets are susceptible to false positives, i.e., some fraction of the putative interactions detected must be considered spurious because they cannot be confirmed to occur in vivo[5].

To resolve the inaccuracy resulting from false connections, other functional knowledge can be integrated into the protein interaction networks. For example, many groups [68] have investigated the integration of gene expression data from microarray experiments to improve protein complexes identification. However, gene expression data are also susceptible to experimental sources of bias and noise. The correlations of mRNA levels with even cognate protein expression may be modest at best. These factors limit the usefulness of microarray data for assessing the reliability of protein-protein interactions. Gene Ontology (GO) [9] is another useful data source to combine with the protein interaction networks. The GO is currently one of the most comprehensive and well-curated ontology databases in the bioinformatics community. It provides a collection of well-defined biological terms, called GO terms, spanning biological processes, molecular functions and cellular components. The GO has been used to facilitate the analysis of gene expression data [1012].

In this work, we integrate protein-protein interactions with the information content in the GO annotation database and topology weights to enhance the modularization of interaction networks. An unweighted protein interaction network can be converted into a weighted graph representation by assigning a weight to each interaction [13]. The weight of each interaction is interpreted as its reliability, i.e., the probability of the interaction being a true positive. We propose a novel method to measure the reliability of protein-protein interactions using GO annotation data and topology weights. Following the approach of that of the previously proposed clustering algorithm IPCA[14] which expands clusters starting from seeded vertices, we present a clustering algorithm OIIP based on the new large weighted protein interaction networks.

Methods

Weighted network

Weights quantify the likelihood of the interaction between every pair of proteins, and they can be estimated by encoding the proteins using gene ontology (GO) consortium. “Ontology” is a specification of a conceptualization that refers to the subject of existence. GO is established by the following three criteria: (I) biological process referring to a biological objective to which the gene or gene product contributes; (II) molecular function defined as the biochemical activity of a gene product; (III) cellular component referring to the place in the cell where a gene product is active. It is very common for the same protein or proteins in the same subfamily to form protein complexes, for example, protein Ste2p and Ste3p from a complex that is among activated G protein-coupled receptors in yeast cellular mating.[15] It is also common for proteins in heterofamilies to form protein complexes if they share a conservative motif, for example, protein Ctf19, Mcm21, and Okp1 from a heterocomplex in the budding yeast kinetochore.[16] Complicated protein complexes may be formed by multiple proteins, some of which share same biological processes and some are from the same subfamily, for example, Dsl1p complex, involved in Golgi-ER retrograde transport, includes Dsl1p, Dsl3p, Q/t-SNARE proteins, and so forth.[17] Thus GO consortium is considered to be a very helpful vehicle for investigating protein-protein interactions,[18] because these three criteria reflect the attribute of gene, gene product, gene-product groups and the subcellular localization[1921].

Semantic similarity has been used in Information Science to evaluate the similarity between two concepts in a taxonomy[22], and we applied it to protein-protein interactions to estimate the similarity between two proteins. Based on the previous method [23], we proposed our semantic similarity method. We define an annotation size of a GO term as the number of annotated proteins on the GO term. The semantic similarity between two proteins is then calculated based on the annotation size of the GO term, on which both proteins are annotated. According to the transitivity property of GO annotation, if a protein x is annotated on a GO term gi, it is also annotated on the GO terms on the path from gi to the root GO term in the GO structure. Thus, the proportion of the annotation size of a GO term to the total number of annotated proteins can quantify the specificity of the GO term. If two proteins are annotated on a more specific GO term and have more common GO terms, then they are functionally more similar.

Suppose a protein x is annotated on m different GO terms. Si(x) denotes a set of annotated proteins on the GO term gi, whose annotation includes x, where 1≤i≤m. In the same way, suppose both x and y are annotated on n different GO terms, where n≤m. Sj(x, y) denotes a set of annotated proteins on the GO term gj, whose annotation includes x and y, where 1≤j≤n. Then, the minimum size of Si(x), mini|Si(x)|, is less than or equal to minj|Sj(x, y)|.C(x,y) denotes the sets of GO terms, whose annotation includes x and y. |C(x,y)| is the number of common GO terms which x and y both have.

Suppose the size of annotation represents the number of annotated proteins on a GO term. Using the annotation size of the most specific GO term, on which two proteins x and y are annotated, we define semantic similarity Ssem(x, y) between x and y as follows:

(1)

Smax is the maximum size of annotation among all GO terms in a DAG structure. If two proteins x and y are annotated on a more specific GO term and more common GO terms than x and z, then x is semantically more similar to y than z.

Considering the graph topology, we also involve the topology weight. For an input graph G = (V, E), we assign the topology weight of an edge [u, v] to be the number of neighbors shared by the vertices u and v. Then we assigned the sum of Ssem(u, v) and topology weight to the edge between u and v as a weight.

Weighted vertex and selecting seed

We define the weight of each vertex to be the sum of the weights of its incident edges. After all vertices are assigned weights, we also sort in non-increasing order the vertices by their weights and store them in a queue Sq (vertices of the same weight are ordered in terms of their degrees). The complexity of calculating edge weights and vertex weights is O(|V||E|), and the complexity of sorting all vertices by their weights is O(|V| log |V|).

The notion that vertex weight is a good measure for selecting seeds has been adopted by DPClus [40] and MCODE[24]. Here, we also pick the highest weighted vertices as the seeds. Our procedure proceeds as follows. We pick the first vertex in the queue Sq and use it as a seed to grow a new cluster. Once the cluster is completed, all vertices in the cluster are removed from the queue Sq and we pick the first vertex remaining in the queue Sq as the seed for the next cluster. There is an important difference between this seed selection procedure and the one used in the IPCA algorithm [14]. Our procedure computes the vertex weight for each vertex based on the weighted networks; while the IPCA algorithm computes the vertex weight based on the original networks. We feel that our approach is biologically more meaningful because a complex is not only a dense structure in the original protein network but also have biological function.

Extending cluster

We introduce a new concept to measure how strongly a vertex v is connected to a subgraph K: the interaction probability Evk of a vertex v to a subgraph K, where vK, is defined by

(2)

Where evk is the sum of the weights of edges between the vertex v and K, and wk is the sum of weights of edges in K. We discuss the relationship between the parameter Evk and INvK introduced in the algorithm IPCA[14]. According to [14], INvK is defined as , where mvK is the number of edges between the vertex v and K, and nK is the number of vertices in K. By the expressions, our parameter Evk is similar to the parameter INvK. While our parameter considers with the biological weights, it have more biological meaning.

A cluster K is extended by adding vertices recursively from its neighbors according to the priority. The priority of a neighbor v of K is determined by the value Evk. This procedure is similar to the one proposed in IPCA [14], except that we do not use INvk to judge the extending. So whether a high priority vertex v is added to the cluster is determined by the Extend-judgment test below.

Let Tin be a threshold ranging between 0 and 1, let d be a positive integer, and let K be a subgraph. SP is the shortest path. A vertex vK is added to the cluster if the following two conditions are satisfied (where K + v denotes the subgraph induced by K and v):

  1. 1.

    Evk≥Tin; and

  2. 2.

    The(SP(K+v)≤d)

Only when the candidate vertex v is satisfied the conditions, can it be added to the cluster. Once the new vertex v is added to the cluster, the cluster is updated.

Evaluation

Before we present the results of our comparative experiments, let us first introduce the various evaluation metrics that have been used to evaluate their computational methods for complex detection. We will then present the experimental results of comparing different state-of-the-art techniques using these evaluation metrics.

Overall, there are three types of evaluation metrics used to evaluate the quality of the predicted complexes and compute the overall precision of the prediction methods.

Precision, recall and f-measure

Precision, recall and F-measure are commonly-used evaluation metrics in information retrieval and machine learning. For evaluating protein complex prediction, we need to define how well a predicted complex which consists of a set of protein members, matches an actual complex, which is another set of protein members. The neighborhood affinity score NA (p, b) between a predicted complex p =(Vp,Ep ) and a real complex b =(Vb,Eb ) in the benchmark complex set, as defined in equation (3) below, can be used to determine whether they match with each other. If NA (p, b) ≥ ω ,they are considered to be matching (ω is usually set as 0.20 or 0.25). Let P and B denote the sets of complexes predicted by a computational method and real ones in the benchmark, respectively. Let Ncp be the number of predicted complexes which match at least one real complex and Ncb be the number of real complexes that match at least one predicted complex. Precision and Recall are then defined as follows: [2527]

(3)
(4)
(5)
(6)

F-measure, or the harmonic mean of Precision and Recall, can then be used to evaluate the overall performance

(7)

Sensitivity, positive predictive value and accuracy

Recently, sensitivity (Sn), positive predictive value (PPV) and accuracy (Acc) have also been proposed to evaluate the accuracy of the prediction methods [28, 29]. Given n benchmark complexes and m predicted complexes, let Tij denote the number of proteins in common between ith benchmark complex and jth predicted complex. Sn and PPV are then defined as follows:

(8)
(9)

Here Ni is the number of proteins in the ith benchmark complex.

(10)

Generally, high Sn values indicate that the prediction has a good coverage of the proteins in the real complexes, while high PPV values indicate that the predicted complexes are likely to be true positives. As a summary metric, the accuracy of a prediction, Acc, can then be defined as the geometric average of sensitivity and positive predictive value,

(11)

P-values (functional homogeneity)

As we gained more and more biological knowledge about the proteins, we can associate a protein with (possibly multiple) functional annotations. The statistical significance of the occurrence of a protein cluster (predicted protein complex) with respect to a given functional annotation can be computed by the following hypergeometric distribution in equation (12) [30, 31]:

(12)

Where a predicted complex C contains k proteins in the functional group F and the whole PPI network contains |V| proteins. The functional homogeneity of a predicted complex is the smallest p-value over all the possible functional groups. A predicted complex with a low functional homogeneity indicates it is enriched by proteins from the same function group and it is thus likely to be true protein complex. By setting a common threshold which specifies the acceptable level of statistical significance, the numbers of predicted complexes with functional homogeneity under this threshold for the various methods can then be used for evaluating their respective overall performance.

Results and discussion

The protein interaction database is downloaded from the Gavin database [31] and BioGrid (version yeast HC-BIOGRID-2.0.31). The protein-complex dataset CYC2008 [38] which we used is a comprehensive catalogue of 408 manually curated heterometic protein complexes reliably backed by small-scale experiment reported. We apply the proposed algorithm OIIP to this two databases. In the following subsections, we discuss the effect of the value Tin on clustering, compare the predicted clusters with the known complexes, evaluate the significance of the predicted clusters. We will also compare the algorithm OIIP to eight competing previous methods for their performance of identifying protein complexes. Since most proteins in the same complex have same or correlative function and involve in the same biological process, we employ biological annotation information, including Go cellular component annotation [39], GO Molecular Function annotation [39] and GO Biological process annotation [39] to assess the predicted protein-complexes.

The effect of Tin on clustering

To understand how the value of Tin influences the outcome of the clustering, we generate 9 sets of clusters by using Tin = 0.1, 0.2,..., 0.9 from the Gavin PPI dataset. The effect on the predicted clusters with different Tin is given in Figure 1.

Figure 1
figure 1

The effect of T in on clustering. The effect on the predicted clusters with different Tin is given in this Figure 1. Figure 1(a) shows that the total number of the predicted clusters is increasing as Tin increases. However, there is an abrupt decrease at Tin = 0.5. Figure 1(b) shows that the size of the biggest cluster is decreasing as Tin increases. With the increasing of Tin, the probability of neighbors added to the cluster is decreasing. Thus, the size of the predicted clusters is also decreasing.

Figure 1(a) shows that the total number of the predicted clusters is increasing as Tin increases. However, there is a abrupt decrease at Tin = 0.5. This is probably caused by the Hub structures in the protein interaction network. When Tin = 0.5, these Hub structures are decomposed into complexes that consist of only 2 proteins. Figure 1(b) shows that the size of the biggest cluster is decreasing as Tin increases. With the increasing of Tin, the probability of neighbors added to the cluster is decreasing. Thus, the size of the predicted clusters is also decreasing.

As shown in Table 1, the Precision of the algorithm OIIP is about 0.6 when Tin=0.5, which implies that the clusters generated by OIIP are reliable. The F-measure is about 0.45 when Tin=0.4, which represents overall performance of an algorithm. The Accuracy takes into account of both the sensitivity and PPV, and is determined by the larger one. In this experiment, the Accuracy is mostly influenced by the PPV. The PPV of the clusters generated by OIIP increases with the increasing of Tin. Especially, an obvious increase appears when Tin ≥ 0.5.

Table 1 The Precision, Recall, F-measure, sensitivity, PPV and Accuracy of the predicted complexes by OIIP using different parameters

Comparison of OIIP and other methods

Since there have been protein complexes that were experimentally determined, a good protein complexes detecting algorithm should identify these known complexes as many as possible. Figure 2 shows the numbers of known complexes (size>2) matched to the clusters generated by OIIP and by other eight previous known methods: CoreMethod[37], Mcode[24], MCL[34], RNSC[33], CMC[36], CFinder[32], COACH[35], IPCA[14]. Our method predicted more complexes than others on Gavin PPI dataset. As show in Table 2 OIIP also get the highest F-measure (Tin=04). Although Mcode has the highest precision, its recall is very low. The fact is that the predicted protein complexes are fewer than our method. Some predicted clusters which are not matched with criterion complexes are possible actual complexes which are undiscovered. So it is necessary to predict more clusters with high F-measure value.

Figure 2
figure 2

Comparison of the predicted clusters with the known complexes on Gavin PPI dataset. Figure 2 shows the numbers of known complexes (size>2) matched to the clusters generated by OIIP and by other eight previous known methods: CoreMethod[15], Mcode[9], MCL[13], RNSC[12], CMC[14], CFinder[11], COACH[10], IPCA[5].

Table 2 Performance comparison of Identify protein complexes methods on Gavin dataset

And we count the number of clusters with p-value less than 0.01, a threshold which represents significant biological sense and compute the proportion of clusters which achieve low p-value. The proportion of clusters from various methods with low p-value is shown in Table 2. Table 2 also shows that the clusters predicted by our method have achieved highest biological significance than predicted clusters from others on all the three biological annotation datasets when T is set to 0.5. Compare to the IPCA, we have better performance in all evaluation measurements. So the ontology interaction to the PPI network is valuable to predict protein complexes.

As show in Figure 3, RNSC has the highest recall and CMC has the highest precision, while our method OIIP also gets the highest F-measure on BioGrid PPI dataset.

Figure 3
figure 3

The Precision, Recall and F-value of results predicted from various methods on BioGrid PPI dataset. As show in Figure 3, RNSC has the highest recall and CMC has the highest precision, while our method OIIP also gets the highest F-measure on BioGrid PPI dataset.

Examples of predicted complexes

From the results of the experiment above we know that most of our predicted clusters have highly biological meanings. We give some examples of predicted clusters with detailed information which are matched with the benchmark complexes in Table 3. We also list the best matched benchmark complexes, NA and the p-value of three protein annotation.

Table 3 Some predicted clusters which matched with benchmark complexes

Some of predicted clusters from our method are not matched with complex from criterion dataset. But we find that they have highly biologically significant and have high local density, so some of them may be real complexes which are still undiscovered. We also give some examples in Table 4 and Figure 4. Their p-value of biological annotation shows that some of them may be the candidate protein complexes. The results are useful for biologists to find the new protein complexes.

Figure 4
figure 4

Some predicted complexes which don’t match with benchmark complexes. Some of predicted clusters from our method are not matched with complex from criterion dataset. But we find that they have highly biologically significant and have high local density, so some of them may be real complexes which are still undiscovered. We also give some examples in Figure 4. Their p-value of biological annotation shows that some of them may be the candidate protein complexes. The results are useful for biologists to find the new protein complexes.

Table 4 Some predicted complexes which don’t match with benchmark complexes

Conclusions

It is believed that identification of protein complexes is useful to explain certain biological progress and to predict functions of proteins. In this paper, we developed an algorithm OIIP to identify protein complexes based on the new large weighted protein interaction networks. Experimentally generated protein-protein interaction data includes an enormous amount of false positives. So we introduced a semantic similarity method to measure the reliability of interactions. For this measurement, we use the annotations in Gene Ontology (GO), which provides the comprehensive functional information. When we implemented the OIIP algorithm with weighted networks, the overall F-measure and accuracy of complexes is substantially improved. This result strongly appeals the necessity of integrating of functional information for the analysis of protein-protein interaction data.

The fact that biological properties are poor at the identification reveals that the higher-level structures (e.g., secondary and tertiary structure) of proteins cannot be accurately represented by the primary structure under the current coding techniques. The experimentally determined protein interaction network has not been used in the research, and a possible future research could combine the experimentally determined protein interactions with the GO estimated interactions to further improve the identification.

References

  1. Uetz P: A comprehensive analysis of protein-protein interactions in Saccharomyces cerevisiae. Nature 2000,403(1):623–627.

    CAS  PubMed  Google Scholar 

  2. Ito T: A comprehensive two-hybrid analysis to explore the yeast protein interactome. PNAS 2001,98(8):4569–4574. 10.1073/pnas.061034498

    CAS  PubMed Central  PubMed  Google Scholar 

  3. Gavin AC: Functional organization of the yeast proteome by systematic analysis of protein complexes. Nature 2002,415(1):141–147.

    CAS  PubMed  Google Scholar 

  4. Ho Y: Systematic identification of protein complexes in Saccharomyces cerevisiae by mass spectrometry. Nature 2002,415(1):180–183.

    CAS  PubMed  Google Scholar 

  5. von Mering C: Comparative assessment of large-scale data sets of protein-protein interactions. Nature 2002,417(1):399–403.

    CAS  PubMed  Google Scholar 

  6. Cho YR, Hwang W, Zhang A: Identification of overlapping functional modules in protein interaction networks: information flow-based approach. Proceedings of 6th IEEE International Conference on Data Mining Workshops 2006, 147–152.

    Google Scholar 

  7. Ideker T, Ozier O, Schwikowski B, Siegel AF: Discovering regulatory and signalling circuits in molecular interaction networks. Bioinformatics 2002,18(1):S233-S240. 10.1093/bioinformatics/18.suppl_1.S233

    PubMed  Google Scholar 

  8. Tornow S, Mewes HW: Functional modules by relating protein interaction networks and gene expression. Nucleic Acids Res 2003,31(21):6283–6289. 10.1093/nar/gkg838

    CAS  PubMed Central  PubMed  Google Scholar 

  9. The Gene Ontology Consortium: The Gene Ontology (GO) project in 2006. Nucleic Acids Research 2006,34(1):322–326. 10.1093/nar/gkj439

    Google Scholar 

  10. Hvidsten TR, Lagreid A, Komorowski J: Learning rule based models of biological process from gene expression time profiles using Gene Ontology. Bioinformatics 2003,19(9):1116–1123. 10.1093/bioinformatics/btg047

    CAS  PubMed  Google Scholar 

  11. Fang Z, Yang J, Li Y, Luo Q, Liu L: Knowledge guided analysis of microarray data. Journal of Biomedical Informatics 2006,39(1):401–411.

    CAS  PubMed  Google Scholar 

  12. Doherty JM, Carmichael LK, Mills JC: GOurmet: A tool for quantitative comparison and visualization of gene expression profiles based on gene ontology (GO) distributions. BMC Bioinformatics 2006,7(151):332–365.

    Google Scholar 

  13. Barrat A, Barthelemy M, Pastor-Satorras R, Vespignani A: The architecture of complex weighted networks. PNAS 2004,101(11):3747–3752. 10.1073/pnas.0400087101

    CAS  PubMed Central  PubMed  Google Scholar 

  14. Li Min, Chen Jianer, Wang Jianxin: Modifying the DPClus algorithm for identifying protein complexes based on new topological structures. BMC Bioinformatics 2008,9(398):345–352.

    Google Scholar 

  15. Shi C, Kaminskyj S, Caldwell S, Loewen MC: A role for a complex between activated G protein-coupled receptors in yeast cellular mating. Proc. Natl. Acad. Sci. U.S.A 2007,104(13):5395–5400. 10.1073/pnas.0608219104

    CAS  PubMed Central  PubMed  Google Scholar 

  16. Ortiz J, Stemmann O, Rank J: Lechner: A putative protein complex consisting of Ctf19, Mcm21, and Okp1 represents a missing link in the budding yeast kinetochore. Genes Dev 1999,13(9):1140–1155. 10.1101/gad.13.9.1140

    CAS  PubMed Central  PubMed  Google Scholar 

  17. Kraynack BA, Chan A, Rosenthal E, Essid M, Umansky B, Waters MG, Schmitt HD: Dsl1p, Tip20p, and the novel Dsl3(Sec39) protein are required for the stability of the Q/t-SNARE complex at the endoplasmic reticulum in yeast. Mol. Biol. Cell 2005,16(9):3963–3977. 10.1091/mbc.E05-01-0056

    CAS  PubMed Central  PubMed  Google Scholar 

  18. Chou KC, Cai YD: Predicting Protein-Protein Interactions from Sequences in a Hybridization Space. Proteome Res 2006,5(1):316–322.

    CAS  Google Scholar 

  19. Ashburner M: Gene Ontology: tool for the unification of biology. Nat. Genet 2000,25(1):25–29. 10.1038/75556

    CAS  PubMed Central  PubMed  Google Scholar 

  20. Chou JJ, Li H, Salvessen GS, Yuan J, Wagner G: Solution structure of BID, an intracellular amplifier of apoptotic signalling. Cell 1999,96(1):615–624.

    CAS  PubMed  Google Scholar 

  21. Oxenoid K, Chou JJ: The structure of phospholamban pentamer reveals a channel-like architecture in membranes. Proc. Natl. Acad. Sci., U.S.A 2005,102(1):10870–10875. 10.1073/pnas.0504920102

    CAS  PubMed Central  PubMed  Google Scholar 

  22. Resnik P: Using information content to evaluate semantic similarity in a taxonomy. The Proc. of 14th International Joint Conference on Artificial Intelligence 1995, 448–453.

    Google Scholar 

  23. Cho Y-R, Hwang W, Ranmanathan M, Zhang A: Semantic integration to identify overlapping functional modules in protein interaction networks. BMC Bioinformatics 2007,265(8):147–160.

    Google Scholar 

  24. Bader G, Hogue C: An Automated Method for Finding Molecular Complexes in Large Protein Interaction Networks. BMC Bioinformatics 2003,4(2):455–470.

    Google Scholar 

  25. Chua HN, Ning K, Sung WK, Leong HW, Wong L: Using indirect protein-protein interactions for protein complex prediction. CSB 2007,2(1):97–109.

    Google Scholar 

  26. Geva G, Sharan R: Identification of Protein Complexes from Co-immunoprecipitation Data. Bioinformatics 2009,74(3):1223–1146.

    Google Scholar 

  27. Wu M, Li XL, Kwoh CK, Ng SK: A Core-Attachment based Method to Detect Protein Complexes in PPI Networks. BMC Bioinformatics 2009,10(169):122–142.

    Google Scholar 

  28. Brohee S, van Helden J: Evaluation of clustering algorithms for protein-protein interaction networks. BMC Bioinformatics 2006,7(1):488–502. 10.1186/1471-2105-7-488

    PubMed Central  PubMed  Google Scholar 

  29. Friedel CC, Krumsiek J, Zimmer R: Boostrapping the Interactome: Unsupervised Identification of Protein Complexes in Yeast. RECOMB 2008,1(1):3–16.

    Google Scholar 

  30. Bu D, Zhao Y, Cai L, Xue H, Zhu X, Lu H, Zhang J, Sun S, Ling L, Zhang N, Li G, Chen R: Topological structure analysis of the protein-protein interaction network in budding yeast. Nucleic Acids Res 2003,31(9):2443–2450. 10.1093/nar/gkg340

    CAS  PubMed Central  PubMed  Google Scholar 

  31. Gavin AC, Aloy P, Grandi P: Proteome survey reveals modularity of the yeast cell machinery. Nature 2006,440(1):631–636.

    CAS  PubMed  Google Scholar 

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

    CAS  PubMed  Google Scholar 

  33. King A, Przulj N, Jurisica I: Protein Complex Prediction via Cost-based Clustering. Bioinformatics 2004,20(1):3013–3020. 10.1093/bioinformatics/bth351

    CAS  PubMed  Google Scholar 

  34. Pereira-Leal JB, Enright AJ, Ouzounis CA: Detection of functional modules from protein interaction networks. Protein Structure Function, and Bioinformatics 2004,54(1):49–57.

    CAS  Google Scholar 

  35. Wu M, Li XL, Kwoh CK, Ng SK: A Core-Attachment based Method to Detect Protein Complexes in PPI Networks. BMC Bioinformatics 2009,10(1):169–181. 10.1186/1471-2105-10-169

    PubMed Central  PubMed  Google Scholar 

  36. Liu GM, Chua HN, Wong L: Complex discovery from weighted PPI networks. Bioinformatics 2009,25(15):1891–1897. 10.1093/bioinformatics/btp311

    CAS  PubMed  Google Scholar 

  37. Leung HC, Yiu SM, Xiang Q, Chin FY: Predicting Protein Complexes from PPI Data: A Core-Attachment Approach. Journal of Computational Biology 2009,16(2):133–144. 10.1089/cmb.2008.01TT

    CAS  PubMed  Google Scholar 

  38. Shuye Pu, Wong Jessica, Turner Brian: Up-to-data catalogues of yeast protein complexes. Nucleic Acids Research 2009,37(1):825–831.

    Google Scholar 

  39. TG Consortium: The Gene Ontology Consortium: Creating the gene ontology resource: design and implementation. Genome Res 2001,11(1):1425–1433.

    Google Scholar 

  40. Altaf-Ul-Amin M, Shinbo Y, Mihara K, Kurokawa K, Kanaya S: Development and implementation of an algorithm for detection of protein complexes in large interaction networks. BMC Bioinformatics 2006,207(3):134–163.

    Google Scholar 

Download references

Acknowledgements

This work is supported by grant from the Natural Science Foundation of China (No. 60673039 and 61070098), the National High Tech Research and Development Plan of China (No. 2006AA01Z151), the Fundamental Research Funds for the Central Universities (No. DUT10JS09) and Liaoning Province Doctor Startup Fund (No. 20091015).

This article has been published as part of Proteome Science Volume 9 Supplement 1, 2011: Proceedings of the International Workshop on Computational Proteomics. The full contents of the supplement are available online at http://www.proteomesci.com/supplements/9/S1.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Bo Xu.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

Please see sample text in BX identified all protein complexes and generated this manuscript; ZHY provided data information and edited this manuscript; HFL supervised all aspects of this manuscript. All authors read and approved the final manuscript.

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 cited.

Reprints and permissions

About this article

Cite this article

Xu, B., Lin, H. & Yang, Z. Ontology integration to identify protein complex in protein interaction networks. Proteome Sci 9 (Suppl 1), S7 (2011). https://doi.org/10.1186/1477-5956-9-S1-S7

Download citation

  • Published:

  • DOI: https://doi.org/10.1186/1477-5956-9-S1-S7

Keywords