Skip to main content

Joint clustering of protein interaction networks through Markov random walk

Abstract

Biological networks obtained by high-throughput profiling or human curation are typically noisy. For functional module identification, single network clustering algorithms may not yield accurate and robust results. In order to borrow information across multiple sources to alleviate such problems due to data quality, we propose a new joint network clustering algorithm ASModel in this paper. We construct an integrated network to combine network topological information based on protein-protein interaction (PPI) datasets and homological information introduced by constituent similarity between proteins across networks. A novel random walk strategy on the integrated network is developed for joint network clustering and an optimization problem is formulated by searching for low conductance sets defined on the derived transition matrix of the random walk, which fuses both topology and homology information. The optimization problem of joint clustering is solved by a derived spectral clustering algorithm. Network clustering using several state-of-the-art algorithms has been implemented to both PPI networks within the same species (two yeast PPI networks and two human PPI networks) and those from different species (a yeast PPI network and a human PPI network). Experimental results demonstrate that ASModel outperforms the existing single network clustering algorithms as well as another recent joint clustering algorithm in terms of complex prediction and Gene Ontology (GO) enrichment analysis.

Introduction

Over the past decade, one goal of systems biology is to understand how different molecules work together to maintain cellular functionalities [1, 2]. It is now a common belief that many complex diseases including cancer are due to systems impairments caused by not only single genetic mutations but also disruption of molecular interactions under different situations, which have been conjectured to be the probable sources of disease heterogeneity as well as treatment response heterogeneity [3–5]. Hence, by analyzing large-scale gene expression profiles and protein-protein interaction (PPI) data, computational methods may help us to have a better understanding of biological pathways and cellular organization and thereafter their relationships to diseases as well as potential drug responses [1, 2]. One way to investigate these large-scale data is to analyze them in the framework of network analysis [2]. In this paper, we focus on the analysis of PPI networks. We are interested in network clustering to divide the given network into small parts, which can be considered as potential functional modules or pathways [6–8] since biological functions are carried by groups of genes and proteins in a coordinated way [9, 10].

There are many existing algorithms for clustering single PPI networks. Normalized cut (NCut) method [11] aims to partition the network based on a novel global criterion, which focuses on the contrast between the total dissimilarity across different clusters and the total similarity within clusters based on network topology. The formulation of NCut is equivalent to finding low conductance sets on the transition matrix of the Markov random walk on the network to analyze [12, 13]. Markov CLustering algorithm (MCL) [14] detects clusters based on stochastic flow simulation, which has been proven to be effective at clustering biological networks. Recently, an enhanced version of MCL--Regularized MCL (RMCL) [15, 16]--has been proposed to penalize large clusters at each iteration of MCL to obtain more balanced clusters and it has been shown to have better performance to identify clusters with potential functional specificity.

However, it is well known that the current public PPI datasets are quite noisy and there exist both false positive and false negative interactions due to different technical reasons [17]. Therefore, clustering simply based on one network constructed from a single data source may not be able to yield robust and accurate results. We may need to appropriately integrate multiple information sources to repress the noise in existing PPI datasets by borrowing strengths from each other. AlignNemo [18] is one of such recent efforts, which detects network clusters on an alignment network of two given PPI networks. AlignNemo takes into account not only the network topology from two PPI networks but also the homology information between proteins across two networks. However, based on the reported experiments and our empirical findings, AlignNemo has low clustering coverage because the alignment network is constructed based on only similar proteins by their sequence similarity and those proteins that do not appear in the alignment network are never considered for clustering.

In this paper, we propose a joint clustering algorithm based on a new Markov random walk on an integrated network, which is constructed by integrating protein-protein interactions in given PPI networks as well as homological interactions introduced by sequence similarity between proteins across networks. A novel alternative random walk strategy is proposed on the integrated network with the transition matrix integrating both topology and homology information. We formulate the joint clustering problem as searching for low conductance sets defined by this transition matrix. We then derive an approximate spectral solution algorithm for joint network clustering.

The organization of the rest of the paper is as follows: In section 2, we introduce the construction of the integrated network, the new random walk strategy, our final optimization problem formulation and the spectral algorithm for joint clustering. Section 3 contains experimental results on clustering two PPI networks within the same species (two yeast PPI networks and two human PPI networks, respectively) as well as those from different species (one yeast and one human PPI networks). Our experimental results demonstrate that our joint clustering algorithm, which we call it ASModel, outperforms the state-of-the-art single network clustering algorithms as well as AlignNemo [18] in terms of both protein complex prediction and Gene Ontology (GO) enrichment analysis [19]. Finally, we draw our conclusions in section 4.

Methodology

Terminology

Let G = ( U , D ) and H = ( V , E ) be two PPI networks, where U and V are node sets representing N1 and N2 proteins in two networks, respectively; and D and E denote edges corresponding to respective protein-protein interactions. We assume that G and H are connected networks, whose topology structures can be mathematically captured by their corresponding adjacency matrices A1 and A2:

A 1 (i,j)= { 1 ( u i , u j ) ∈ D , i ≠ j ; 0 o t h e r w i s e . A 2 (i,j)= { 1 ( v i , v j ) ∈ ℰ , i ≠ j ; 0 o t h e r w i s e .
(1)

where u i , u j ∈ U and v i , v j ∈ V and we first ignore self-loops in PPI networks. Suppose some of the proteins in U and V are known a priori to be similar to each other by some criteria, such as their constituent or functional similarity. For example, we compute protein sequence similarity based on the normalized BLAST bit score [20] in this paper so that the latter performance evaluation in our experiments based on curated functional annotations is as unbiased as possible. In a similarity matrix S12, each element S12(u i , v j ) records the similarity between proteins u i ∈ U and v j ∈ V:

S 12 ( u i , v j ) = BLAST ( u i , v j ) BLAST ( u i , u j ) × BLAST ( v j , v j )
(2)

where BLAST(u i , v j ) stands for the bit score of sequence similarity between proteins u i and v j by BLAST [20]. Based on (2), we note that S12(u i , v j ) is in the range [0, 1].

Integrated network

In order to jointly cluster two PPI networks, we first define a new integrated network M= ( W , E T , E H ) . The set of nodes Win this integrated network is the union of proteins in two PPI networks ( W = U ∪ V ) . The integrated network M has two types of interactions, where E T represents the union of the sets of protein-protein interactions within the PPI networks ( E T = D ∪ E ) and E H are new "interactions" across two PPI networks introduced by the homological similarity S12. One example of an integrated network is illustrated in Figure 1A. In this example, W contains all the nodes in blue and red colors from two respective networks. The solid edges indicate the interactions in E T and the dashed edges represent the interactions in E H .

Figure 1
figure 1

Illustration of our proposed joint clustering algorithm. A. Construction of the integrated network. B. Random walk strategy. C. Equivalence between a directed network (transition matrix P ) and a symmetric undirected network (transition matrix P Ì„ ).

The integrated network combines both the topology information within two PPI networks and the homology information across two PPI networks. Therefore, M can be considered as the integration of two networks M T = ( W , E T ) and M H = ( W , E H ) , which share the same set of nodes W. M T is the network carrying the topology information within two PPI networks, whose adjacency matrix can be represented as follows:

A = A 1 0 0 A 2 N × N
(3)

where N = N1 + N2. M H is the network containing the homology information across two networks, whose adjacency matrix can be represented as

S = 0 S 12 S 12 T 0 N × N .
(4)

The examples of M T and M H are also illustrated in Figure 1A.

Random walk strategy on the integrated network

As shown in the previous section, the integrated network contains both topology and homology information represented in two sets of edges. In order to bring strengths from each other to improve the clustering performance in individual networks, we propose a random walk strategy on the integrated network M to integrate all information sources. To make use of both topology and homology information, we require the random walker must walk through topological and homological interactions ( E T and E H ) in an alternative order. However, as shown in Figure 1B, the random walker can either first walk by M T then on the network M H or first walk on M H then on M T . For the first type of random walk illustrated in Figure 1B, the transition matrix P A S Ì„ can be calculated as

P A S ̄ = P A × P S ̄
(5)

where P A = D A - 1 A and P S ̄ = D S ̄ - 1 S ̄ . The matrix D A is a diagonal matrix with the degree of each node on its diagonal elements. S ̄ = S + I N × N is the adjacency matrix of network M H with self-loops indicating self similarity of proteins. D S ̄ is the corresponding diagonal matrix with D S ̄ ( i , i ) = ∑ j S ̄ ( i , j ) , where i, j ∈ {1, 2, ..., N} are new node indices in the integrated network and S ̄ ( i , j ) > 0 when i, j indicate proteins from different PPI networks. Again, S ̄ ( i , i ) = 1 for self similarity. Further-more, we find that P A is the transition matrix of the random walk on M T and P S ̄ is the transition matrix of the random walk on M H including self-loops.

For the second type of random walk illustrated in Figure 1B, we can similarly compute the transition matrix

P S Ā = P S × P Ā
(6)

where P S = D S - 1 S and P Ā = D Ā - 1 Ā . Here, D S is a diagonal matrix with D S ( i , i ) = ∑ j S ( i , j ) . Here, Ā is the adjacency matrix of M T with self-loops to allow for the possibility of random walker staying at the current node. D Ā is the corresponding diagonal matrix with the node degree in Ā on its diagonal. P S is the transition matrix of the random walk on M H and P Ā is the transition matrix of the random walk on M T including self-loops.

We further assume that the probability of taking the first type of random walk should be the same as going with the second type of random walk. Therefore, our final transition matrix for the new random walk strategy can be represented by

P = 1 2 P A S ̄ + 1 2 P S Ā
(7)

Searching for low conductance sets based on P

In M T , proteins with topological interactions E T are likely to participate in similar cellular functions. Also, proteins with larger homological interactions E H in M H are more probable to be functionally similar. Because the random walk on the integrated network considers both types of interactions, each element P (i, j) of the corresponding transition matrix can be understood as the probability that proteins i and j have similar functions as these proteins are more likely to reach each other with a larger P (i, j). Based on this, we can make use of the concept of the conductance defined on the Markov chain to identify clusters based on P [11, 21] by searching for low conductance sets.

Similarly as done in [11, 21], we can formulate the optimization problem for joint network clustering:

min ∑ h = 1 k Φ P ( C h , C ̄ h ) s . t . ⋃ h = 1 k C h = W ; C h ∩ C l = ∅ , ∀ h ≠ l .
(8)

where Φ P ( C h , C ̄ h ) is the defined conductance of node subset C h to the rest of the network C ̄ h ; and k is the number of desired subsets as final network clusters. The conductance Φ P ( C h , C ̄ h ) can be computed as

Φ P ( C h , C ̄ h ) = ∑ i ∈ C h , j ∈ C ̄ h π i P ( i , j ) ∑ i ∈ C h π i , C h ∪ C ̄ h = W ,
(9)

where π is the stationary distribution of the corresponding Markov random walk on the integrated network and P T π = π .

The goal now is to find k low conductance sets defined by P. As in [21], we find that if we consider P as the transition matrix for a directed graph and try to find k low conductance sets based on (8), it is in fact equivalent to find k low conductance sets on an undirected graph with another transition matrix P Ì„ :

P ̄ = π P + P T π 2 .
(10)

Due to the equivalence, our optimization formulation for finding k low conductance sets can be formulated finally as

max t r a c e X T P ̄ X X T D P ̄ X s . t . X 1 k = 1 N , x i ℓ ∈ { 0 , 1 } ,
(11)

where D P ̄ is a diagonal matrix with D P ̄ ( i , i ) = ∑ j P ̄ ( i , j ) ; X is a N × k assignment matrix whose element x iℓ denotes whether node i belongs to cluster ℓ; 1 k and 1 N are all one vectors with k and N elements, respectively. Here, equations (8) and (11) have been proven to be equivalent previously in [21]. We can derive a spectral method to solve the above problem based on [12]. The directed network with P and its equivalent undirected network with P ̄ are illustrated in Figure 1C.

Joint Clustering Algorithm (ASModel)

Our joint clustering algorithm can be summarized into three steps which are illustrated in Figure 1. The first step is to construct the integrated network M. The second step is to compute the transition matrix P based on the alternative random walk strategy in (7). The final step is to find low conductance sets on the equivalent network and apply the spectral method to solve the optimization problem. Algorithm 1 provides the pseudo code for ASModel.

Algorithm 1. ASModel for Joint Network Clustering

Input: Adjacency matrices A1 and A2, Sequence similarity matrix S12, and the number of desired clusters k

Output: Cluster assignment matrix X

1. Construct the integrated network M and compute A and S;

2. Compute the transition matrix P based on the random walk strategy using (7);

3. Obtain the equivalent adjacency matrix P Ì„ which has the same low conductance sets as P;

4. Using the spectral algorithm to find k low conductance sets by P Ì„ from (11) [12].

Experiments

Algorithms, data, and metrics

We compare our joint clustering algorithm ASModel to NCut [11], MCL [14], RMCL [15, 16], and AlignNemo [18]. Among the selected algorithms for performance comparison, AlignNemo [18] is a recently proposed protein complex detection algorithm, which also takes into account the homology and topology information from two PPI networks. NCut is equivalent to searching for low conductance sets by the transition matrix defined directly based on the given single network. Therefore, comparing with NCut aims to show that finding low conductance sets on the integrated network by our new ASModel is superior to separately finding similar low conductance sets on individual networks. MCL and RMCL are two state-of-the-art algorithms which have been proven effective on analyzing biological networks. Comparing with them can further demonstrate that our joint clustering algorithm ASModel can achieve better performances than clustering single networks separately. Both NCut and ASModel have one input parameter, which is the number of clusters k. We sample k in [100, 3000] with an interval of 100 and report the best results. MCL also has one parameter, the inflation number. We similarly search for the best performing value from 1.2 to 5.0 with an interval of 0.1. For RMCL, we adopt the parameters suggested in [15, 16]. AlignNemo is a heuristic algorithm without any tuning parameters [18] and we directly implement the provided algorithm in our experiments.

In addition to evaluating joint clustering by ASModel using synthetic networks, we evaluate the performances of ASModel, NCut, MCL, RMCL, and AlignNemo on public PPI datasets for S. cerevisiae (budding yeast) and H. sapiens (human). For S. cerevisiae, Sce DIP and Sce BGS are two extracted PPI networks from the Database of Interacting Proteins (DIP) [22] and BioGRID [23], respectively. For H. sapiens, Hsa HPRD and Hsa PIPs are corresponding PPI networks derived from Human Protein Reference Database (HPRD) [24] and the PIPs dataset [25]. The details of each PPI network are given in Table 1.

Table 1 Information of four real-world PPI networks.

In order to access the performance of the competing algorithms, we first implement complex prediction to assess the quality of clustering results by evaluating the agreement of the clusters found by each method with curated protein complex standards. SGD [26] and CORUM [27] complexes are considered as the golden standards for complex prediction for yeast and human PPI networks, respectively. We then implement the GO enrichment analysis for further validation on function predicting performance from clustering results. In order to focus on more specific cellular functions, we use specific GO terms with information content (IC) larger or equal to 2, filtered out from all three domains: biological process, molecular function, and cellular component. The information content of a GO term g is defined as:

I C g = - l o g | g / r o o t | ,
(12)

where |g| and |root| are the number of proteins in GO term g and the number of proteins in its corresponding GO category. The information of reference complex datasets and GO terms is also provided in Table 1.

We adopt the widely used F-measure [28] to evaluate the performance for complex prediction. F-measure is the harmonic mean of precision and recall: F = 2 × precision × recall/(precision + recall), where precision and recall are defined as follows:

precision = | { C i ∈ C | N A C i , R j > 0 . 25 , ∃ R j ∈ R } | | C | ;
(13)
recall = | { R i ∈ R | N A ( C i , R j ) > 0 . 25 , ∃ C i ∈ C } | | R | ,
(14)

where C = {C1, C2, ..., C k } are the identified clusters by different algorithms and R = {R1, R2, ..., R l } denote the corresponding reference complex sets. The neighbor affinity N A C i , R j = | C i ∩ R j | 2 | C i × R j | measures the overlap between the predicted complex C i and the reference complex R j .

To evaluate the performance of GO enrichment analysis, we compute the p-value and the number of enriched GO terms from clustering results. Suppose that the whole network has N proteins with M proteins annotated with one GO term and the detected cluster has n proteins with m proteins annotated with the same GO term. The p-value of the cluster with respect to that GO term can be calculated as [29]

p-value =  ∑ i = m n ( m i ) ( N − M N − i ) ( N n )
(15)

We choose the lowest p-value of all enriched GO terms in the derived cluster as its final p-value. A GO term is enriched when the p-value of any cluster corresponding to this GO term is less than 1e-3.

Synthetic networks

We first evaluate and compare the clustering performance of our proposed ASModel with the performances of running random walk on individual networks as well as running the random walk directly on integrated networks with both interactions within networks and similarity across networks. The goal of this set of experiments is to demonstrate that not only joint clustering performs better than clustering individual networks by NCut, but also our proposed ASModel can achieve better performance than the normal random walk on the integrated work using the same set of integrated information.

We first generate two noise-free individual networks. The first network has 4 modules, each of which has 24 nodes. The second network also has 4 modules, each of which has 36 nodes. The edge density in each modules of both individual networks are 0.5. We further assign the nodes in the corresponding pairs of modules across two networks as potential "orthologous" node pairs. In this set of experiments, we set the similarity density of nodes within the corresponding modules to 0.2, meaning that 20% node pairs among all possible node pairs within the corresponding modules are randomly assigned to be similar to each other. We further add noise to both the interactions within individual networks and the node similarity across networks by randomly permuting a certain percentage of edges (both interaction and similarity) by Maslov-Sneppen procedure [30], which enables the performance evaluation at different noise levels. As we have the ground truth of modular structures in synthetic networks, we use the normalized mutual information (NMI) [31] as the evaluation criterion. We have generated 30 pairs of synthetic networks for each noise level and the average NMI values and their standard deviations of clustering results from three different random walk schema are shown in Figure 2 for the performance comparison. For joint clustering algorithms, we find that when the noise level is low, ASModel and normal random walk are competitive with each other. However, with the increasing noise level, ASModel clearly outperforms normal random walk. Comparing ASModel with single network clustering algorithm NCut, we observe that ASModel is also superior to NCut, indicating that joint clustering does achieve better clustering performance than clustering individual networks separately.

Figure 2
figure 2

Performance comparison on synthetic networks for random walk algorithms.

Joint clustering of PPI networks within the same species

In this section, we first jointly cluster two PPI networks from the same species to demonstrate the effectiveness of our ASModel. Through applying ASModel, we expect that each PPI network can borrow strengths from the other PPI network to enhance the clustering performance.

Joint clustering of the SceDIP and SceBGS PPI networks

Complex prediction

For the Sce DIP and Sce BGS networks, we report the performance of ASModel, NCut, MCL, RMCL, and AlignNemo on complex prediction in terms of the number of matched reference complexes and F-measure. The detailed information such as the number of clusters (cluster size ≥ 2) and the coverage is listed in Table 2. Figures 3A and 3B show the comparison results for the number of matched reference complexes and F-measure, respectively. As illustrated in Figure 3, ASModel detects the largest number of matched reference complexes and achieves the highest F-measure for both networks, which is substantially better than the results obtained by individual clustering using all the other single network clustering algorithms. Although AlignNemo also uses both topology and homology information, it is interesting to observe that it does not detect any matched reference complexes in this set of experiments, which in fact is different from the reported results in [18] though different networks were analyzed.

Table 2 The information of the derived clusters by all competing algorithms
Figure 3
figure 3

Performance comparison of competing algorithms for complex prediction in both yeast PPI networks. A. Comparison on the number of matched reference complexes. B. Comparison on the F-measure.

One important reason that we have seen different results for protein complex prediction by AlignNemo is that we here use a more strict evaluation criterion to consider that a reference complex R j is recovered by the identified cluster C i by clustering algorithms only when N A(C i , R j ) > 0.25. In the original paper of AlignNemo [18], a reference complex is considered to be recovered if at least two of its proteins overlap with a detected cluster, which may introduce the evaluation bias. Imagine that if one cluster contains 10 proteins, with every two belonging to a different reference complex. This evaluation criterion will conclude that five different complexes are recovered by the algorithm but the clustering results may not necessarily be desired. Our obtained results may indicate that the random walk strategy in our ASModel better integrates available information across networks than the heuristic strategy adopted in AlignNemo to discover biologically more meaningful clusters.

GO enrichment analysis

GO enrichment analysis has been done based on the detected clusters by ASModel, NCut, MCL, RMCL, and AlignNemo. For each cluster, it may be enriched in multiple GO terms and we choose the lowest p-value as the p-value for the cluster as explained earlier. We first sort the p-values of all clusters in an ascending order and then draw the corresponding monotonically decreasing -log(p-value) curves for all the algorithms in Figure 4. As shown in Figure 4A, for the Sce DIP PPI network, the curve of ASModel is on top of all the other competing algorithms, which indicates that the clusters detected by joint clustering ASModel are more consistent to the curated GO terms and hence capture the cellular functionalities better. For the Sce BGS PPI network from Figure 4B, we find that the curve of RMCL is on top of other algorithms for around the top 80 most significantly enriched clusters. However, when we check more derived clusters, the curve of ASModel is again on top of the other algorithms. Hence, overall, especially when we consider the total number of enriched GO terms shown in Figure 5, functional consistency of the detected clusters is improved by our joint clustering algorithm ASModel as ASModel can identify more enriched GO terms to unearth more biologically meaningful clusters with more significant p-values overall.

Figure 4
figure 4

Performance comparison of competing algorithms for GO enrichment analysis. A. GO enrichment comparison on the Sce DIP network. B. GO enrichment comparison on the Sce BGS network.

Figure 5
figure 5

Comparison on the number of enriched GO terms for all the competing algorithms in two yeast networks.

In summary, from both complex prediction and GO enrichment analysis, ASModel can achieve more biologically meaningful results. These promising results imply that joint clustering can improve the clustering performance for every individual PPI network when we integrate information from them appropriately.

Joint clustering of the HsaHPRD and HsaPIPs networks

Complex prediction

Similarly, the results of complex prediction from all the competing algorithms on two human PPI networks are shown in Figure 6. For the Hsa HPRD network, we find that RMCL and ASModel detect competitive numbers of reference complexes and achieve competitive F-measures. When we check the Hsa PIPs network, Figure 6 shows that ASModel identifies much more matched reference complexes and obtain substantially better F-measure than all the other algorithms. AlignNemo again does not detect any matched reference complexes based on the neighbor affinity metric. The performance of ASModel demonstrates that the clustering of Hsa PIPs network does benefit from the information in the Hsa HPRD network to achieve the better complex prediction performance. However, the performance on the Hsa HPRD network is not influenced much, probably due to the incompleteness of the Hsa PIPs dataset.

Figure 6
figure 6

Performance comparison of competing algorithms for complex prediction in both human PPI networks. A. Comparison on the number of matched reference complexes. B. Comparison on the F-measure.

GO enrichment analysis

We compare ASModel to NCut, MCL, RMCL, and AlignNemo on GO enrichment analysis by drawing similar -log(p-value) curves of the top ranked clusters based on their enrichment significance. From Figure 7, we observe that for both human PPI networks, the curves of ASModel are on top of all the competing algorithms. Furthermore, as shown in Figure 8, we find that ASModel also detects the largest number of enriched GO terms on both networks. The overall performance of GO enrichment analysis further validates that joint clustering significantly enhances the clustering performance for each PPI network.

Figure 7
figure 7

Performance comparison of competing algorithms for GO enrichment analysis. A. GO enrichment comparison on the Hsa HPRD network. B. GO enrichment comparison on the Hsa PIPs network.

Figure 8
figure 8

Comparison on the number of enriched GO terms for all the competing algorithms in two human networks.

From these two experiments of joint clustering PPI networks from the same species, we note that ASModel can make full use of topology and homology information to improve the clustering performance for each PPI network.

Joint clustering of PPI networks from different species

Joint clustering of PPI networks within the same species has been proven to yield promising results. In order to show that ASModel can also improve the clustering performance for PPI networks from different species, we have done the following experiment.

Joint clustering with SceDIP and HsaHPRD PPI networks

Complex prediction

We first report the performance for protein complex prediction. For the Sce DIP network, we compare the results of joint clustering of the Sce DIP and Hsa HPRD networks by ASModel, joint clustering of the Sce DIP and Sce BGS networks by ASModel, as well as results obtained from AignNemo and other single network clustering algorithms. We observe in Figure 9 that joint clustering of the Sce DIP and Sce BGS networks yields the best F-measure and the largest number of matched reference complexes. However, joint clustering of the Sce DIP and Hsa HPRD networks achieves the second best F-measure and detects competitive numbers of matched reference complexes as RMCL.

Figure 9
figure 9

Performance comparison of competing algorithms for complex prediction in the Sce DIP and Hsa HPRD network. A. Comparison on the number of matched reference complexes. B. Comparison on the F-measure. ASModel (Different Species) indicates the results obtained by joint clustering of the Sce DIP and Hsa HPRD PPI networks. ASModel (Same Species) indicates the results obtained from joint clustering of the Sce DIP and Sce BGS networks for yeast and joint clustering of the Hsa HPRD and Hsa PIPs PPI networks for human, respectively.

For the Hsa HPRD network, we compare the results of ASModel obtained from joint clustering of the Hsa HPRD and Hsa PIPs networks as well as joint clustering of the Hsa HPRD and Sce DIP PPI networks, AlignNemo, NCut, MCL, and RMCL. The comparison for the number of matched reference complexes and F-measure is given in Figure 9. From the figure, we find that RMCL gets the best performance in terms of these two metrics. ASModel achieves the competitive performance when joint clustering two human networks as shown before. ASModel for two human networks provides better results than jointly analyzing two networks for yeast and human. From this set of experiments, we find that joint clustering two networks within the same species works better than analyzing networks for different species. We in fact expect this because networks within the same species have more shared information, which can be utilized to supplement each other to improve clustering performance. Otherwise, for two networks for different species, joint clustering may not help as much since they may have different cellular constitution and organization due to evolutionary differences.

GO Enrichment analysis

We further illustrate the performance comparison for clustering the Sce DIP network in Figure 10A. We note that the curve of ASModel for the Sce DIP and Sce BGS networks is on top of the curve of ASModel for the Sce DIP and Hsa HPRD PPI networks. Furthermore, both curves from ASModel are on top of all the other algorithms. With respect to the Hsa HPRD PPI networks, we have the same observation that ASModel analyzing PPI networks within the same species is on top of ASModel analyzing networks from different species. Both of them are on top of the others. This further convinces us that joint clustering does improve the clustering performance. In addition, the more information that two PPI networks share, the more enhancement can be achieved by joint clustering. From the comparison of the number of enriched GO terms as shown in Figure 11, we have the same conclusion. ASModel analyzing networks within the same species detects the largest number of enriched GO terms. For analyzing networks from different species, ASModel identifies the second largest number of enriched GO terms among all competing algorithms.

Figure 10
figure 10

Performance comparison of competing algorithms for GO enrichment analysis on the Sce DIP and Hsa HPRD networks. A. GO enrichment comparison on the Sce DIP network. B. GO enrichment comparison on the Hsa HPRD network.

Figure 11
figure 11

Comparison on the number of enriched GO terms for all the competing algorithms in the Sce DIP and Hsa HPRD networks.

From these experiments, no matter analyzing two PPI networks from the same species or from two different species, our joint clustering algorithm ASModel can achieve better results than analyzing these networks separately using single network clustering algorithms. Furthermore, we find that joint clustering using two PPI networks from the same species achieves more significant performance improvement than using two PPI networks form different species, which coincides with our intuition that we can find more robust and accurate clustering results if we use networks from the same species or species that are phylogenetically close so that the conservation across networks helps to derive more confident clustering results.

Conclusions and future work

In this paper, we have proposed a joint network clustering algorithm ASModel based on a new alternative random walk strategy. The experimental results based on both complex prediction and GO enrichment analysis demonstrate that using ASModel to joint clustering two PPI networks can achieve better clustering results than single network clustering algorithms and AlignNemo. Furthermore, from comparing with the performances of joint clustering PPI networks within the same species (section 3.2) and those from different species (section 3.3), we find that the more information the PPI networks in the integrated network share, the better the clustering results can be achieved. For our future work, we are collaborating with biologists to explore the potential opportunities using our ASModel to identify biologically meaningful clusters in different species. By carefully investigating recovered clusters, we may have a better understanding of protein functionalities, cellular organization, as well as the underlying signal transduction mechanisms for deriving future systematic intervention strategies.

References

  1. Butland G, Peregrin-Alvarez J, Li J, et al.: Interaction network containing conserved and essential protein complexes in Escherichia coli. Nature. 2005, 433: 531-537. 10.1038/nature03239.

    Article  CAS  PubMed  Google Scholar 

  2. Kelley R, Ideker T: Systematic interpretation of genetic interactions using protein networks. Nat Biotech. 2005, 23: 561-566. 10.1038/nbt1096.

    Article  CAS  Google Scholar 

  3. Raman K: Construction and analysis of protein-protein interaction networks. Automated Experimentation. 2010, 2 (2):

  4. Zhang L, Zhang Y, Adusumilli S, et al.:: Molecular interactions that enable movement of the lyme disease agent from the tick gut into the hemolymph. PLoS Pathog. 2011, 7 (6): 1002079-10.1371/journal.ppat.1002079.

    Article  Google Scholar 

  5. Wang Q, Feng J, Wang J, et al.:: Disruption of tab1/p38[alpha] interaction using a cell-permeable peptide limits myocardial ischemia/reperfusion injury. Molecular Therapy advance online publication. 2013

    Google Scholar 

  6. Pereira-Leal J, Enright A, Ouzounis C: Detection of functional modules from protein interaction networks. Proteins. 2004, 54 (1): 49-57.

    Article  CAS  PubMed  Google Scholar 

  7. Spirin V, Mirny L: Protein complexes and functional modules in molecular networks. Proc Natl Acad Sci USA. 2003, 100: 12123-12128. 10.1073/pnas.2032324100.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  8. Poyatos J, Hurst L: How biologically relevant are interaction-based modules in protein networks?. Genome Biol. 2004, 5: 93-10.1186/gb-2004-5-11-r93.

    Article  Google Scholar 

  9. Bernardo DD, Gardner T, Collins J: Robust identification of large genetic networks. Pac Symp Biocomput. 2004, 9: 486-497.

    Google Scholar 

  10. Kolker E, Makarova K, Shabalina S, et al.:: Identification and functional analysis of 'hypothetical' genes expressed in Haemophilus influenzae. Nucleic Acids Res. 2004, 32 (8): 2353-2361. 10.1093/nar/gkh555.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  11. Shi J, Malik J: Normalized cuts and image segmentation. IEEE Trans. on Pattern Analysis and Machine Intelligence. 2000, 22 (8):

  12. Wang Y, Qian X: Functional module identification in protein interaction networks by interaction patterns. Bioinformatics. 2013

    Google Scholar 

  13. Xing E, Jordan M: On semidefinite relaxation for normalized k-cut and connections to spectral clustering. Technical report, UC. Berkeley. 2003

    Google Scholar 

  14. Dongen SV: A cluster algorithm for graphs. Technical Report INS-R0010. 2000

    Google Scholar 

  15. Satuluri V, Parthasarathy S: Scalable Graph Clustering Using Stochastic Flows: Applications to Community Discovery. 15th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (KDD'09). 2009

    Google Scholar 

  16. Satuluri V, Parthasarathy S, Ucar D: Markov Clustering of Protein Interaction Networks. ACM Conference on Bioinformatics, Computational Biology and Biomedicine 2010. 2010

    Google Scholar 

  17. DIttrich MT, Klau GW, Rosenwald A, Dandekar T, Muller T: Identifying functional modules in protein-protein interaction networks: an integrated exact approach. Bioinformatics. 2007, 24 (13): 223-231.

    Article  Google Scholar 

  18. Ciriello G, Mina M, Guzzi PH, Cannataro M, Guerra C: Alignnemo: A local network alignment method to integrate homology and topology. PLoS ONE. 2012, 7 (6): 38107-10.1371/journal.pone.0038107.

    Article  Google Scholar 

  19. Ashburner M, Ball C, Blake J, et al.:: Gene ontology: Tool for the unification of biology. the gene ontology consortium. Nat Genet. 2000, 25 (1): 25-29. 10.1038/75556.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  20. Altschul S, Gish W, Miller W, Myers E, Lipman D: Basic local alignment search tool. J Mol Biol. 1990, 215 (3): 403-410.

    Article  CAS  PubMed  Google Scholar 

  21. Satuluri V, Parthasarathy S: Symmetrizations for Clustering Directed Graphs. 14th International Conference on Extending Database Technology (EDBT11). 2011

    Google Scholar 

  22. Salwinski L, Miller C, Smith A, Pettit F, JU JB, Eisenberg D: The Database of Interacting Proteins: 2004 update. Nucleic Acids Research. 2004, 32: 449-451.

    Article  Google Scholar 

  23. Breitkreutz B, Stark C, et al.:: The BioGRID Interaction Database: 2008 update. Nucleic Acids Res. 2008, 36: 637-640.

    Article  Google Scholar 

  24. Prasad T, et al.:: Human Protein Reference Database--2009 update. Nucleic Acids Research. 2009, 37: 767-772. 10.1093/nar/gkn892.

    Article  Google Scholar 

  25. McDowall M, Scott M, Barton G: Pips: Human protein-protein interactions prediction database. Nucleic Acids Research. 2009, 37: 651-656. 10.1093/nar/gkn870.

    Article  Google Scholar 

  26. Hong E, et al.:: Gene ontology annotations at sgd: New data sources and annotation methods. Nucleic Acids Res. 2008, 36: 577-581.

    Article  Google Scholar 

  27. Ruepp A, Brauner B, Dunger-Kaltenbach I, et al.:: Corum: The comprehensive resource of mammalian protein complexes. Nucl Acids Res. 2008, 36: 646-650.

    Article  Google Scholar 

  28. Shih Y, Parthasarathy S: Identifying functional modules in interaction networks through overlapping markov clustering. Bioinformatics. 2012, 28: 473-479. 10.1093/bioinformatics/bts370.

    Article  Google Scholar 

  29. Shih Y, Parthasarathy S: Scalable global alignment for multiple biological networks. BMC Bioinformatics. 2012, 13 (Suppl 3): 11-10.1186/1471-2105-13-S3-S11.

    Article  Google Scholar 

  30. Maslov S, Sneppen K: Specificity and stability in topology of protein networks. Science. 2002, 296: 910-913. 10.1126/science.1065103.

    Article  CAS  PubMed  Google Scholar 

  31. Lancichinetti A, Fortunato S, Jnos K: Detecting the overlapping and hierarchical community structure in complex networks. New Journal of Physics. 2009, 11 (3): 033015-10.1088/1367-2630/11/3/033015.

    Article  Google Scholar 

Download references

Acknowledgements

This work was supported by Award R21DK092845 from the National Institute Of Diabetes And Digestive And Kidney Diseases, National Institutes of Health; and Award #1244068 from the National Science Foundation.

Declarations

Publication of this article was funded by the faculty startup fund for XQ from Texas A&M University.

This article has been published as part of BMC Systems Biology Volume 8 Supplement 1, 2014: Selected articles from the Twelfth Asia Pacific Bioinformatics Conference (APBC 2014): Systems Biology. The full contents of the supplement are available online at http://www.biomedcentral.com/bmcsystbiol/supplements/8/S1.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Xiaoning Qian.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

Conceived the algorithm: YW, XQ. Implemented the algorithm and performed the experiments: YW. Analyzed the results: YW, XQ. Wrote the paper: YW, XQ.

and Xiaoning Qian contributed equally to this work.

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

Cite this article

Wang, Y., Qian, X. Joint clustering of protein interaction networks through Markov random walk. BMC Syst Biol 8 (Suppl 1), S9 (2014). https://doi.org/10.1186/1752-0509-8-S1-S9

Download citation

  • Published:

  • DOI: https://doi.org/10.1186/1752-0509-8-S1-S9

Keywords