Skip to main content

A multilevel layout algorithm for visualizing physical and genetic interaction networks, with emphasis on their modular organization

Abstract

Background

Graph drawing is an integral part of many systems biology studies, enabling visual exploration and mining of large-scale biological networks. While a number of layout algorithms are available in popular network analysis platforms, such as Cytoscape, it remains poorly understood how well their solutions reflect the underlying biological processes that give rise to the network connectivity structure. Moreover, visualizations obtained using conventional layout algorithms, such as those based on the force-directed drawing approach, may become uninformative when applied to larger networks with dense or clustered connectivity structure.

Methods

We implemented a modified layout plug-in, named Multilevel Layout, which applies the conventional layout algorithms within a multilevel optimization framework to better capture the hierarchical modularity of many biological networks. Using a wide variety of real life biological networks, we carried out a systematic evaluation of the method in comparison with other layout algorithms in Cytoscape.

Results

The multilevel approach provided both biologically relevant and visually pleasant layout solutions in most network types, hence complementing the layout options available in Cytoscape. In particular, it could improve drawing of large-scale networks of yeast genetic interactions and human physical interactions. In more general terms, the biological evaluation framework developed here enables one to assess the layout solutions from any existing or future graph drawing algorithm as well as to optimize their performance for a given network type or structure.

Conclusions

By making use of the multilevel modular organization when visualizing biological networks, together with the biological evaluation of the layout solutions, one can generate convenient visualizations for many network biology applications.

Peer Review reports

Background

Network graphs provide a valuable conceptual framework for representing and mining high-throughput experimental datasets, as well as for extracting and interpreting their biological information by the means of graph-based analysis approaches [18]. In cellular systems, network nodes typically refer to biomolecules, such as genes or proteins, and the edge connections the type of relationships the network is encoding, including physical or functional information. Network visualization aims to organize the complex network structures in a way that provides the user with readily apparent insights into the most interesting biological patterns and relationships within the data, such as components of biological pathways, processes or complexes, which can be further investigated by follow-up computational and/or experimental analyses [46, 9, 10]. Owing to the developments in biotechnologies, experimental datasets are steadily increasing in their size and complexity, posing many challenges to the network-centric data visualization and biological exploration.

There exists a wide variety of advanced network layout algorithms that seek to place connected nodes of a graph close to each other. Conventionally, these layout algorithms are specifically designed for a particular network type, such as gene regulatory networks or signalling pathways [11, 12], metabolic pathways or biochemical networks [1315], or phylogenetic networks [16]. Algorithmic solutions have also been introduced for specific network topologies, such as drawing fragmented networks [17], grid layouts [18], or detailed visualization of small networks [19]. However, there exists no universal layout solution, and therefore a practical strategy involves trying out multiple layout algorithms a number of times to see which one best arranges a given network [6, 20]. Such a test-and-trial strategy often neglects the biological relevance of the layout solutions, as well as requires bioinformatics skills or resources to allow experimenting with several algorithms, many of which are not implemented as user-friendly software packages.

To provide researchers with an easy access to network visualization tools, several network analysis software come with sophisticated methods for laying out networks. Such software packages, each providing a specific range of visualization options, include, e.g., VisANT, NAViGaTOR, PATIKA, PINA, MATISSE, GraphViz, Osprey, Graphle, CellDesigner, Biolayout, ProViz and Pajek; see [4, 5, 10] and references therein. Among others, Cytoscape software platform for network analysis and visualization has been widely adopted by the biological community because of its ease of use, compatibility with and direct access to many network formats and databases, respectively, as well as straightforward extensibility through open-source plug-in development [4, 5, 20, 21]. In its core, a number of advanced layout algorithms are available, including those based on spring-embedded and force -directed graph drawing approaches [22, 23]. Many of these algorithms work reasonably well, especially for small- and medium-sized networks (e.g., 50-1000 nodes), whereas larger networks, in particular those with a dense or clustered connectivity structure, are more difficult to visualize, often resulting in 'hairball' network layouts [46].

Many biological networks have shown to represent with a modular organization [24], which often manifests in a hierarchical cluster structure of highly interconnected network modules across a spectrum of resolution levels [13]. Such modular architecture has been revealed using both physical mapping of protein interaction networks [1], as well as by quantitative mapping of genetic interactions networks [25]. These two network types encode fundamental and partly complementary information about physical and functional relationships among biomolecules. Protein-protein interaction networks characterize physical relationships between proteins that are in direct binding contact or co-existence in a complex. Changes in the observed modularity of the human protein interaction networks has been used, for instance, to predict biological and clinical outcomes, such as brain cancer progression or breast cancer metastasis [26, 27]. Genetic interaction networks mapped by combinations of pairwise gene mutations in model organisms, such as budding yeast, have revealed highly hierarchical maps of inter-connected network modules, such as components of compensatory pathways or protein complexes, and their functional cross-connections that regulate cellular processes and maintain mutational robustness [28, 29].

We hypothesized that such a multilevel organization of the network connectivity structure could be utilized to provide both visually attractive and biologically relevant network layouts. Therefore, we implemented a Cytoscape plug-in, named Multilevel Layout, which combines traditional node placement algorithms with a multilevel optimization framework introduced by Walshaw [30]. The multilevel framework first constructs a hierarchy of increasingly coarser graphs and then applies the force-directed placement at each level of resolution to generate globally clear and aesthetic layout solutions. Our implemented version of the generic multilevel framework is modified for network biology applications, e.g., by including options for grouping the nodes based on their degree of connectivity or using clustering coefficient to further emphasize the hierarchical modularity of the networks. We have previously demonstrated that the longer running time of the multilevel approach, compared to the traditional layout options, is compensated by its capacity to provide visually pleasant layouts also for larger networks [31].

In the present work, we investigated whether the multilevel layout approach could provide also biologically meaningful network visualizations, in addition to being visually attractive. To this end, we compared the multilevel layout solutions to those generated by popular layout algorithms in the Cytoscpape platform, in terms of their capacity at capturing the semantic similarity information about underlying biological processes. Based on such systematic comparative evaluations on various large-scale networks, originating both from physical and genetic interaction mappings, one could provide the users with a practical guidance on how to choose a preferable layout algorithm for different network types and their characteristic properties. To facilitate drawing of networks with several thousands of nodes, we improved the computational complexity of the multilevel approach through the use of efficient M-tree database structures. To promote their widespread usage in network biology applications, we have made available efficient implementations of both the Multilevel Layout algorithm and Biological Evaluation as plug-ins for Cytoscape software.

Methods

Multilevel layout algorithm

The multilevel framework for graph drawing was originally proposed by Walshaw [30]. The generic algorithm combines the traditional force-directed node placement method of Fruchterman and Reingold [23] with multilevel organization by recursively coarsening graphs in two phases. In the first phase, the algorithm generates a set of increasingly coarser graphs, G 0, G 1, ..., G L , where G 0 is the original graph for which the layout is being calculated, and G L is the coarsest graph consisting of only two nodes and one connecting edge. The graph G i is said to be on the level i of the graph hierarchy, or the level i of the progress of the multilevel algorithm. In the multilevel concept, the graphs are coarsened by finding a maximal independent subset of edges and by combining the nodes connected by these edges into a metanode in the graph on the next level of the hierarchy (Figure 1). Since the problem of solving the maximal independent edge set problem is generally NP-hard, and the computation time is essential for many users of the network biology platforms, we content ourselves here on non-optimal solutions. The coarsening scheme proposed by Walshaw [30] was to pick a random node and match it with a neighboring node with the smallest weight (defined to be 1 for each node in G 0 and the number of original nodes inside a metanode in G i for i > 0). If there are nodes without a suitable matching partner in G i-1, then those nodes form singleton nodes in the graph on the next level G i . To deal with specific types of biological networks, such as those having 'star-like' structures, we modified the weighting function by taking into account also the node degree (the number of edges incident to the node) in the matching phase [31] (Additional File 1).

Figure 1
figure 1

Graph coarsening for multilevel organization. The coarsening process is visualized in a sub-network of Ito-Core (8 nodes, 10 edges). The arrows and highlighting indicate those nodes that are combined into a new metanode (MN). At the first level of the coarsening (1), nodes N2 and N3; nodes N4 and N8; and nodes N6 and N7 are merged into metanodes MN1, MN3, and MN2 (2). At the next level (3), node N1 and metanode MN1 are merged into a new metanode MN3; and node N5 and metanode MN2 are merged into metanode MN5. Finally, after merging metanodes MN5 and MN3 into metanode MN6 (4), there are only two nodes left and the coarsening process is finished (5).

In the second phase of the multilevel method, the graphs G L , G L-1, ..., G 1 are uncoarsened starting from the coarsest one. The two nodes of the graph G L are initially placed randomly within the canvas. Then, at each recursion level, the nodes combined at the previous level are placed on the same location as the combined metanode. If the metanode consists of only one node from the previous recursion level, then the node is placed on the same location as the one representing it on the higher level. After such initial placing, a node-weighted version of the force-directed placement algorithm is applied on each recursion level. To speed-up the calculation of the force-directed placement, we made here the use of M-trees in order to quickly fetch the neighboring nodes of the node for which a new position is being calculated. The M-tree is an index structure that enables efficient indexing and querying of spatial data in metric spaces [32, 33]. As another modification for biological applications, we implemented an option that allows improved separation of dense clusters according to their clustering coefficient (CC, the number of edges connecting the neighbors of the node divided by the maximum possible number of such edges). The clustering option emphasizes the attractive forces of those nodes with high CC-values towards their connected neighbors and also emphasizes the repulsive forces between the network clusters [31] (Additional File 1).

Implementation of the algorithm

The Java implementation of the multilevel layout algorithm is distributed as an open-source Cytoscape plug-in, named Multilevel Layout, licensed with GNU GPLv2 license [34]. The plug-in can be used either with default or customized settings (Additional File 2). The most important setting is the clustering option which toggles on or off the usage of clustering coefficient in the layout calculation (by default it is on). The natural spring length setting can be used to scale up or down the resulting layout, which may be needed with very large graphs having several recursive coarsening levels. In most cases, however, the user can simply rely on the default setting, since such downscaling is done automatically during the layout calculation if the resulting layout becomes too wide. Problems with extreme wide networks may occur in the form of abnormal termination of the algorithm, if the inter-node distance underflows the decimal scale of the programming language. In addition, there are two other layout user-settings: a constant multiplier for repulsive force calculation (a higher value increases the effect of the repulsive force), and a tolerance parameter which controls the convergence of the algorithm (a higher value results in faster convergence). The user can also choose whether the original weighting function or its degree-modified version is used in the node matching process.

Biological evaluation procedure

To facilitate biological evaluation of the layout algorithms and their solutions, we developed and implemented an additional plug-in for Cytoscape, named Biological Evaluation plug-in, for which implementation, source-code and user-instructions are freely available from website [35]. The idea behind the evaluation procedure is to compare the two-dimensional layout generated by a layout algorithm against an external biological evaluation criterion. More specifically, our procedure reviews all the connected edges of the layout in the order of their Euclidean distances, and evaluates such increasing neighbor sets with respect to a Gene Ontology (GO)-based semantic similarity of the corresponding gene products [36]. Semantic similarity has been widely used for biological evaluation of many bioinformatic approaches [37]. Our implementation constructs a GO structure in the computer memory such that it can be used to efficiently query the semantic similarity between gene or protein nodes in the layout [38].

The output of the evaluation plug-in is a graphical evaluation chart, which depicts how well the information content of the network layout agrees with the biological process ontology stored in the GO (Additional File 3). As the percentage of evaluated neighbors increases towards 100%, the average semantic similarity of each algorithm approaches the random trace, which represents the average semantic similarity of the whole network. As an upper bound, the evaluation chart includes also the theoretical optimal case, which represents the ideal situation in which the ranking of the node pair according to their layout distance equals the ranking based on the semantic similarity of these pairs in the GO. Consequently, a trace in the chart that is closest to such optimal line suggests that the evaluated layout algorithm tends to produce the most biologically meaningful layout for a given network. To account for randomness in the layout algorithm, we repeated the layout generation and evaluation multiple times, and the results shown in the evaluation chart are averages over the runs.

To summarize the evaluation traces into single a statistic for each layout algorithm, we calculated a semantic similarity score (area between the semantic similarity trace of the algorithm and the random trace divided by the area between the optimal and random traces). The higher the score, the more biologically meaningful is the layout solution, whereas values close to zero correspond to random selection of nodes. The normalized score makes it also is easy to compare the evaluation results across a number of interaction networks. The semantic similarity scores from the different layout algorithms were compared separately for the physical interaction and genetic interaction networks. The relative improvement obtained with the multilevel approach was evaluated by comparing its performance against the other layout algorithms. Statistical significance of the observed differences between the algorithms in their semantic similarity scores was assessed using the paired t-test, where the p-value is calculated by the means of the two-tailed Student's t-distribution. Three different significance levels were used: p < 0.0005, p < 0.005 and p < 0.05.

Test network data

To evaluate the performance of the layout algorithms implemented in Cytoscape, we used 11 interaction networks of budding yeast (Saccharomyce Ceravisiae), representing a wide range of topological properties (Table 1). In particular, we focused on two particular types of relationships the network are typically encoding: physical links based on screening of pairwise protein-protein interactions (PPI) or multiple protein co-complex associations (CCA), and genetic interactions between pairwise gene deletions, which reflect the relative effect of a mutation in one gene on the phenotype of a mutation in another gene. It has been shown that the genetic interaction networks encode functional information that is supplemental to that obtained from the physical protein interactions or complexes [29, 39, 40].

Table 1 Interaction networks used in the study

The test networks included five of the physical interaction datasets available from the CCSB Interactome Database [41]. The first one is from the early study by Ito et al. [42], who used their high-throughput mapping system, based on yeast two-hybrid (Y2H) screens, to identify pairwise two-hybrid interactions in all possible combinations between the proteins of the S. Ceravisiae (Ito-Core). In each network, we extracted the largest connected component to be used in the evaluations. The 'second-generation' high-quality Y2H dataset is from the recent study of Yu et al. [43], in which they carried out a proteome-scale high-throughput Y2H screen in triplicate (Y2H-CCSB). An integrated PPI dataset was also constructed by Yu et al. by combining the Y2H-CCSB and Ito-Core networks with the PPI data obtained from another Y2H screen of Uetz et al. [44] (Y2H-Union).

A rather different type of physical network was constructed by Collins et al. [45], who combined two independent screens carried out by Gavin et al. [46] and Krogan et al. [47], in which CCA links were identified on a large-scale using affinity-purification followed by mass spectrometry (AP/MS-Combined). The Y2H and AP/MS data are of complementary nature resulting in PPI networks with different topological and biological properties. In particular, the CCA networks emphasize the complex membership, resulting in higher clustering coefficient (Table 1). The fifth dataset from the CCSB Interactome Database consists of both physical and genetic interactions, constructed trough literature-curative analysis of online publications initially by Reguly et al. [48], and further refined and filtered later by Yu et al. [43], such that interactions were curated from two or more publications (LC-Multiple).

The two other physical interaction datasets were downloaded from two published PPI network analyses. In the first one, von Mering et al. [49] combined the PPI data from the previous studies by Ito et al. [42] and Uetz et al. [44], with the aim of using the combined interaction dataset as a reference network when comparing different Y2H screening approaches for discovering physical protein interactions in yeast (VonMering). In the second study, Schwikowski et al. [50] analyzed yeast physical interactions available from public databases, such as the yeast proteome database and the MIPS database, and from previous large-scale studies, such as those of Ito et al. [42] and Uetz et al. [44]. However, they included only direct interactions discovered trough biochemical binding experiments or Y2H screening, thus leaving out those protein complexes for which the protein contacts were unknown (Schwikowski).

The four genetic interaction networks used in the evaluations came from two technically different quantitative interaction screening approaches; epistatic mini array profiling (E-MAP) from the Krogan Lab Interactome Database [51], and synthetic genetic array (SGA) mappings from the Boone Lab DRYGIN Database [52]. Two E-MAP datasets were used here, in which the mapping approach was applied to the genes involved either in the yeast early secretory pathway (Secretory-Map) [53] or in various aspects of chromosome biology (Chromosome-Map) [54]. In contrast to these selected sets of pairwise deletion mutants in yeast, Costanzo et al. [55] constructed an unbiased genetic interaction screen by applying their SGA approach on whole-genome scale. We used this high-dimensional dataset subject to two interaction scoring cut-offs (Costanzo and Costanzo-Stringent; Table 1).

Results

The performance of the Multilevel Layout algorithm, with and without the clustering option (referred to as MLL and MLL-C), was compared against three built-in layout algorithms in Cytoscape. Force-directed layout (FDL) is a variant of the widely used node placement algorithm by Fruchterman and Reingold [23], thus representing a baseline reference for the MLL. The Cytoscape implementation takes an advantage of the efficient force-calculation algorithm by Barnes and Hut [56]. Cytoscape's Spring-embedded layout (SEL) implements a variant of the layout algorithm introduced by Kamada and Kawai [22]. The algorithm is based on the idea of minimizing the total energy of the network by calculating partial differential equations of the energy function and moving the nodes accordingly. The FDL and SEL algorithms represent popular open-source solutions, capable of producing visually pleasant layout solutions, especially for relatively small and simple network structures [6, 10]. The yFiles Organic layout (ORL) is a proprietary closed-source implementation of the force-directed placement paradigm, which combines elements from several layout algorithms to facilitate identification of clusters of tightly connected network modules [20], hence sharing the same objective with the MLL-C.

Run-to-run variability of the layout solutions

The evaluation runs were performed on a laptop with Intel i7 Q740 processor and 6 GB RAM running Windows 7 OS. The four layout algorithms were run using their default parameter settings in Cytoscape version 2.8.1 [57]. The layouts of the ORL algorithm remain relatively constant from run-to-run, except for smaller-scale networks, and therefore its evaluation was repeated 5 times. The rest of the layout algorithms are more non-deterministic, resulting in some degree of between-run variability, and therefore their performance was assessed based on several runs: 10-20 initializations for MLL and FDL and a maximum of 10 repeats for the SEL because of its relatively high computational complexity. The results were averaged over the replicate runs and the variability in computational times and semantic similarity scores was assessed with standard error of the mean (SEM). In general, ORL and FDL showed lowest variability over the replicate runs, followed by MLL, MLL-C and SEL (Additional File 4). Although the MLL-C algorithm is sensitive to the random initialization, its layout solutions preserve the main characteristics of the underlying network topology, such as highly connected hub nodes or network clusters, even if these may end up being in different locations in the different runs (Additional File 5). Therefore, the MLL-C algorithm is capable of producing topologically consistent layout solutions, the biological relevance of which is evaluated in the next sections.

Semantic similarity in the physical networks

Compared to the popular layout algorithms in Cytoscape platform, the layout solutions produced by the versions of the MLL algorithm captured relatively well the underlying biological processes of the various test networks (Figure 2). In particular, when using the clustering option of the algorithm, the biological information contents of the MLL-C layout solutions were significantly higher than those of the FDL or SEL solutions in the physical test networks (p < 0.0005 and p < 0.005, respectively, paired t-test). The yFiles ORL algorithm obtained the best semantic similarity score in three of the 11 test networks; these networks encode Y2H protein-protein interactions, co-complex membership associations and literature-curated physical and genetic interactions (Additional File 4). Among these three networks, the AP/MS-Combined protein complex network represents a rather unusual case with exceptionally high clustering coefficient (Table 1). In the two other networks, the semantic similarity scores are close to each other with MLL-C and ORL. In fact, in the Y2H-CCSB network, MLL-C showed best semantic similarity among the nearest network neighbors, whereas the ORL layout outperforms the others when going to more distant node pairs (Additional File 3). However, both MLL-C and ORL generated visually balanced network layouts, with marked cluster structures, whereas SEL and FDL resulted in more ball-like or prolonged solutions (Figure 3).

Figure 2
figure 2

Biological evaluation of the layout algorithms. The black and grey bars show the average semantic similarity over the networks of physical interactions (PI) and genetic interactions (GI), respectively. Error bars show the standard error of the mean (SEM). Only one of the GI networks could be laid out using the SEL algorithm in less than one hour. The performance of the other algorithms was compared against the multilevel layout with the clustering option on (MLL-C): *** p < 0.0005; ** p < 0.005; * p < 0.05, two-sided paired t-test.

Figure 3
figure 3

Example layouts for the CCSB-Y2H network. (A) yFiles Organic layout (ORL). (B) Cytoscape's Spring-embedded layout (SEL). (C) Cytoscape's Force-directed layout (FDL). (D) Multilevel layout with the clustering option (MLL-C). The number of nodes and edges in the CCSB-Y2H network are 964 and 1598, respectively, with an average clustering coefficient of 0.095. The node sizes and edge widths were standardized in Cytoscape to make the layout displays comparable in accuracy (the same zooming resolution was used in the export).

Semantic similarity in the genetic networks

To test whether the good performance of the ORL algorithm in the mixed physical and genetic interaction network will also hold when analyzing purely functional relationships, we evaluated its relative performance on four large-scale genetic interaction networks (Table 1). The evaluation results changed quite dramatically when focusing on these functional interaction networks. In general, the semantic similarity scores were at a lower level compared to the physical protein interaction networks (Figure 2). When comparing the different layout options, the MLL-C algorithm showed increased biological information content beyond those of the FDL, SEL or even ORL (p < 0.05, paired t-test). Interestingly, the performance of the FDL was similar both in the physical and genetic interaction networks. Moreover, it seems that the clustering option of the multilevel algorithm is not necessary when drawing genetic interaction networks. In fact, the MLL algorithm without using the clustering option provided even slightly better results in the smaller one of the two E-MAP networks (Secretory-Map; Additional File 4). However, the differences between the two MLL modes were relatively small compared to the performance of the other layout options on the genetic interaction networks (Additional File 3). Besides the network type, no other network parameter could explain the variation in the semantic similarities across the layout solutions either in the physical or genetic interaction networks (Additional File 6).

Running time of the algorithms

Among the layout algorithms tested in Cytoscape, FDL was systematically the fastest and SEL systemically the slowest layout option (Figure 4). As expected, the number of nodes and edges in the network were the most predictive network properties for the computation time of most layout algorithms, including MLL, MLL-C and FDL (p < 10-5, Pearson's correlation, t-distribution); however, the running time of the SEL algorithm was correlated more strongly with other parameters, such as network density, average node density or its standard deviation (Additional File 6). Notably, the SEL algorithm could draw only 7 out of the 11 test networks in less than one hour. The running time of the proprietary, closed-source ORL implementation seems to level off after 1000 nodes, regardless of the increased network complexity (Figure 4). The two MLL implementations were relatively fast on networks with less than 2000 nodes (running time less than one minute); however, for the two largest genetic interaction networks, comprising of 3811 and 4319 nodes and 35,924 and 74,984 edges, respectively, the running time of the MLL-C grows exponentially, approaching almost 4 and 7 minutes. Therefore, even if the M-tree architecture could decrease the computation times of the MLL-C algorithm, especially in larger and moderately dense networks (Additional File 7), further speed-up would be advantageous, especially when moving towards extremely large and densely connected networks.

Figure 4
figure 4

Computation times of the layout algorithms. The running times (in seconds) are plotted as a function of the network size (number of nodes). The number of the nodes correlated significantly with the running times of the MLL, MLL-C (with or without the M-tree option) and FDL algorithms (p < 10-5). The running time of the proprietary ORL implementation converged after 1000 nodes. The systematically slowest SEL algorithm was omitted from the illustration, since it could draw only 7 out of the 11 test networks in less than one hour. The arrows point the two largest SGA genetic interaction networks (Costanzo and Costanzo-Stringent).

Discussion

We have implemented a multilevel network layout algorithm and shown that it can generate visually pleasant and biologically meaningful layouts for a wide spectrum of biological network structures. In general, the Multilevel Layout (MLL) plug-in provided layout solutions and network views that are complementary to those of the built-in layout options of Cytoscape; it demonstrated an added value especially in large-scale networks representing either pairwise functional or physical interactions between genes or proteins.

A particular network type in which the multilevel algorithm showed an improved performance involved the complex networks of genetic interactions. In contrast to the physical PPI networks, emphasizing densely interconnected network clusters in the functional genetic interaction layouts did not seem to increase the information on the biological processes, as was demonstrated by the reduced semantic similarity of ORL, and also of MLL-C to some extent, compared to the MLL without the clustering option. This indicates that genetic interaction modules encode also a wide range of functional cross-talk across multiple biological pathways. Such quantitative genetic networks are increasingly being mapped in model organisms to study many fundamental questions, such as genotype-phenotype relationships and buffering of genetic variation [25, 28, 58]. Genetic interactions are also involved in many human disease phenotypes, such as cancers and cardiovascular diseases. As an example, a statistical epistasis network was recently constructed based on SNP-data to study the global architecture of gene-gene interactions, as well to identify higher-level relationships and inter-connected modules involved in bladder cancer [59]. Application of the multilevel layout algorithm to such emerging networks should prove useful for many network biology and network medicine applications.

In addition to the multilevel layout, we have also introduced here a novel way of evaluating layout solutions in terms of their biological relevance. The implementation of the Biological Evaluation plug-in enables one to evaluate layout solutions from any existing or future graph drawing algorithm and to optimize its performance for a given network under the analysis. In the present work, the comparative evaluations were carried out on yeast interaction networks, since the GO annotations in S. Ceravisiae are relative accurate and established, compared to many other organisms. Beyond the systematic evaluations presented here, we have been extensively testing and applying the MLL plug-in also in other organisms. For instance, when applied to the literature-curated Human Protein Reference Database (HPRD) network [60], the multilevel organization was able to visualize both the global and local network structures, such as the large number of peripheral protein nodes and highly interconnected sub-network modules, which were largely missed by the other layout algorithms in Cytoscape (Figure 5; Additional File 8).

Figure 5
figure 5

Example layouts for the HPRD network. (A) yFiles Organic layout (ORL). (B) Cytoscape's Spring-embedded layout (SEL). (C) Cytoscape's Force-directed layout (FDL). (D) Multilevel layout with the clustering option (MLL-C). The HPRD network consists of 5699 protein nodes and 19,779 literature-curated protein-protein interactions. A high-resolution version of the layout solutions of the four layout algorithms is provided in Additional File 8.

After generating the layout, the resulting networks can be investigated in more detail, for example, by zooming into densely-connected clusters. There is a wide range of clustering algorithms introduced for finding such sub-network modules [61], some of which are also available in network analysis software, including MCODE [62] or Graphle [63]. As an example, we searched here for the top-scoring clusters in the Schwikowski network using the MLL-C layout and ClusterViz Cytoscape plug-ins (Additional File 9). To facilitate revealing the full spectrum of hierarchical modularity of a network, one could also incorporate a cluster detection phase explicitly within the multilevel framework, hence providing a multi-resolution viewing of the modules as communities or metanodes, similarly as was done in the GenePro [64] or GLay [65]. Combining all of the nodes in the detected clusters could also further improve the multilevel layout solutions, especially in networks such as the AP/MS-Combined, which show exceptionally high and extensive clustering structure. The good performance of the organic layout in this network indicates that there is still potential for further improvement.

Instead of first detecting sub-network clusters or modules based on the network connectivity and then contrasting these against known complexes or pathways, an alternative approach is to use such external biological information directly to optimize the placement of the nodes or multinodes [12, 6671]. Here, we chose not to use any additional information in guiding the layout process, since this could bias the biological evaluation of the layout algorithms, and because reliable external data may not be always available, for instance, when studying human interaction networks. However, one could extend the multilevel layout framework to incorporate also additional information, such as user-defined GO annotations or other node attributes, in the node matching phase, in order to better emphasize biologically meaningful aspects of the network topology. The multilevel framework can also be combined with other algorithms than the force-directed layout in order to improve or modify the final layout result. The yFiles organic layout would be an interesting option to include; however, its proprietary implementation is not publicly available.

A limitation of the current implementation of the multilevel layout algorithm is its relatively lengthy running times in the largest network graphs. For instance, generating the layout took almost 7 minutes for the largest yeast genetic interaction network (4319 nodes with 74,984 edges) and 8 minutes for the human HPRD-PPI network (5699 nodes with 19,779 edges). While the M-tree architecture resulted in somewhat reduced computation times, further speed-ups could be achieved by linking specific C functions to the Java implementation [65], or by using hardware-based graphics acceleration in Cytoscape [72]. For instance, performance benefits could be obtained through full usage of the power of graphics processing units. Additional decrease in the layout calculation times will likely be obtained by making better use of multiple cores in the future versions of Cytoscape. For example, the Intel i7 processor could handle eight simultaneous processing threads, making it suitable for parallelized layout calculation once the Cytoscape platform is capable of supporting multi-threading and effective parallelization.

Abbreviations

AP/MS:

Affinity-purification/mass spectrometry

CC:

Clustering coefficient

CCA:

Co-complex association

FDL:

Force-directed layout

GO:

Gene ontology

E-MAP:

Epistatic miniarray profiling

HPRD:

Human protein reference database

MLL:

Multilevel layout

ORL:

Organic layout

PPI:

Protein-protein interaction

SEL:

Spring-embedded layout

SGA:

Synthetic genetic array

Y2H:

Yeast two-hybrid.

References

  1. Barabási AL, Oltvai ZN: Network biology: understanding the cell's functional organization. Nat Rev Genet. 2004, 5: 101-113. 10.1038/nrg1272.

    Article  PubMed  Google Scholar 

  2. Albert R: Scale-free networks in cell biology. J Cell Sci. 2005, 118: 4947-4957. 10.1242/jcs.02714.

    Article  CAS  PubMed  Google Scholar 

  3. Aittokallio T, Schwikowski B: Graph-based methods for analysing networks in cell biology. Brief Bioinform. 2006, 7: 243-255. 10.1093/bib/bbl022.

    Article  CAS  PubMed  Google Scholar 

  4. Suderman M, Hallett M: Tools for visually exploring biological network. Bioinformatics. 2007, 23: 2651-2659. 10.1093/bioinformatics/btm401.

    Article  CAS  PubMed  Google Scholar 

  5. Pavlopoulos GA, Wegener AL, Schneider R: A survey of visualization tools for biological network analysis. BioData Mining. 2008, 1: 12-10.1186/1756-0381-1-12.

    Article  PubMed  PubMed Central  Google Scholar 

  6. Merico D, Gfeller D, Bader GD: How to visually interpret biological data using networks. Nat Biotechnol. 2009, 27: 921-924. 10.1038/nbt.1567.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  7. Chuang HY, Hofree M, Ideker T: A decade of systems biology. Annu Rev Cell Dev Biol. 2010, 26: 721-744. 10.1146/annurev-cellbio-100109-104122.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  8. Pavlopoulos GA, Secrier M, Moschopoulos CN, Soldatos TG, Kossida S, Aerts J, Schneider R, Bagos PG: Using graph theory to analyze biological networks. BioData Mining. 2011, 4: 10-10.1186/1756-0381-4-10.

    Article  PubMed  PubMed Central  Google Scholar 

  9. Schreiber F: Vis Methods Mol Biol. 2008, 453: 441-450. 10.1007/978-1-60327-429-6_23.

    Article  CAS  Google Scholar 

  10. Gehlenborg N, O'Donoghue SI, Baliga NS, Goesmann A, Hibbs MA, Kitano H, Kohlbacher O, Neuweger H, Schneider R, Tenenbaum D, Gavin AC: Visualization of omics data for systems biology. Nat Methods. 2010, 7 (3 Suppl): S56-S68.

    Article  CAS  PubMed  Google Scholar 

  11. Hosoyama N, Nasimul N, Iba H: Layout search of a gene regulatory network for 3-D visualization. Genome Inform. 2003, 14: 103-113.

    Google Scholar 

  12. Kojima K, Nagasaki M, Jeong E, Kato M, Miyano S: An efficient grid layout for biological networks utilizing various biological attributes. BMC Bioinforma. 2007, 8: 76-10.1186/1471-2105-8-76.

    Article  Google Scholar 

  13. Paley SM, Karp PD: The Pathways Tools cellular overview diagram and Omics Viewer. Nucleic Acids Res. 2006, 34: 3771-3778. 10.1093/nar/gkl334.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  14. Villéger AC, Pettifer SR, Kell DB: Arcadia: a visualization tool for metabolic pathways. Bioinformatics. 2010, 26: 1470-1471. 10.1093/bioinformatics/btq154.

    Article  PubMed  PubMed Central  Google Scholar 

  15. Rocha I, Maia P, Evangelista P, Vilaca P, Soares S, Pinto JP, Nielsen J, Patil KR, Ferreira EC, Rocha M: OptFlux: an open-source software platform for in silico metabolic engineering. BMC Syst Biol. 2010, 4: 45-10.1186/1752-0509-4-45.

    Article  PubMed  PubMed Central  Google Scholar 

  16. Gambette P, Huson DH: Improved layout of phylogenetic networks. IEEE/ACM Trans Comput Biol Bioinform. 2008, 5: 472-479.

    Article  PubMed  Google Scholar 

  17. Stajdohar M, Mramor M, Zupan B, Demšar J: FragViz: visualization of fragmented networks. BMC Bioinforma. 2010, 11: 475-10.1186/1471-2105-11-475.

    Article  Google Scholar 

  18. He S, Mei J, Shi G, Wang Z, Li W: LucidDraw: efficiently visualizing complex biochemical networks within MATLAB. BMC Bioinforma. 2010, 11: 31-10.1186/1471-2105-11-31.

    Article  Google Scholar 

  19. Dannenfelser R, Lachmann A, Szenk M, Ma'ayan A: FNV: Light-weight Flash-based network and pathway viewer. Bioinformatics. 2011, 27: 1181-1182. 10.1093/bioinformatics/btr098.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  20. Cline MS, Smoot M, Cerami E, Kuchinsky A, Landys N, Workman C, Christmas R, Avila-Campilo I, Creech M, Gross B, Hanspers K, Isserlin R, Kelley R, Killcoyne S, Lotia S, Maere S, Morris J, Ono K, Pavlovic V, Pico AR, Vailaya A, Wang PL, Adler A, Conklin BR, Hood L, Kuiper M, Sander C, Schmulevich I, Schwikowski B, Warner GJ, Ideker T, Bader GD: Integration of biological networks and gene expression data using Cytoscape. Nat Protoc. 2007, 2: 2366-2382. 10.1038/nprot.2007.324.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  21. Shannon P, Markiel A, Ozier O, Baliga NS, Wang JT, Ramage D, Amin N, Schwikowski B, Ideker T: Cytoscape: a software environment for integrated models of biomolecular interaction networks. Genome Res. 2003, 13: 2498-2504. 10.1101/gr.1239303.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  22. Kamada T, Kawai S: An algorithm for drawing general undirected graphs. Inf Process Lett. 1989, 31: 7-15. 10.1016/0020-0190(89)90102-6.

    Article  Google Scholar 

  23. Fruchterman TM, Reingold EM: Graph drawing by force-directed placement. Software Pract Exper. 1991, 21: 1129-1164. 10.1002/spe.4380211102.

    Article  Google Scholar 

  24. Hartwell LH, Hopfield JJ, Leibler S, Murray AW: From molecular to modular cell biology. Nature. 1999, 402 (6761 Suppl): C47-C52.

    Article  CAS  PubMed  Google Scholar 

  25. Beltrao P, Cagney G, Krogan NJ: Quantitative genetic interactions reveal biological modularity. Cell. 2010, 141: 739-745. 10.1016/j.cell.2010.05.019.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  26. Taylor IW, Linding R, Warde-Farley D, Liu Y, Pesquita C, Faria D, Bull S, Pawson T, Morris Q, Wrana JL: Dynamic modularity in protein interaction networks predicts breast cancer outcome. Nat Biotechnol. 2009, 27: 199-204. 10.1038/nbt.1522.

    Article  CAS  PubMed  Google Scholar 

  27. Dutkowski J, Ideker T: Protein networks as logic functions in development and cancer. PLoS Comput Biol. 2011, 7: e1002180-10.1371/journal.pcbi.1002180.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  28. Dixon SJ, Costanzo M, Baryshnikova A, Andrews B, Boone C: Systematic mapping of genetic interaction networks. Annu Rev Genet. 2009, 43: 601-625. 10.1146/annurev.genet.39.073003.114751.

    Article  CAS  PubMed  Google Scholar 

  29. Michaut M, Baryshnikova A, Costanzo M, Myers CL, Andrews BJ, Boone C, Bader GD: Protein complexes are central in the yeast genetic landscape. PLoS Comput Biol. 2011, 7: e1001092-10.1371/journal.pcbi.1001092.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  30. Walshaw C: A multilevel algorithm for force-directed graph-drawing. J Graph Algorithms Appl. 2003, 7: 253-285.

    Article  Google Scholar 

  31. Salmela P, Nevalainen OS, Aittokallio T: A multilevel graph layout algorithm for Cytoscape bioinformatics software platform. Turku Centre for Computer Science. 2008, Turku, Technical Report 861, [http://tucs.fi:8080/publications/insight.php?id=tSaAiNe08a]

    Google Scholar 

  32. Ciaccia P, Patella M, Rabitti F, Zezula P: Indexing metric spaces with M-tree. Proc Quinto Convegno Nazionale SEBD. 1997, Verona, 1-20.

    Google Scholar 

  33. Luoma O, Tuikkala J, Nevalainen O: Accelerating GLA with an M-Tree. World Academy of Science, Engineering and Technology. 2005, Volume 4: 196-199.

    Google Scholar 

  34. Multilevel Layout Project. [http://code.google.com/p/multilevellayout/]

  35. Biological Evaluation Project. [http://code.google.com/p/externalvalidator/]

  36. Lord PW, Stevens RD, Brass A, Goble CA: Investigating semantic similarity measures across the Gene Ontology: the relationship between sequence and annotation. Bioinformatics. 2003, 19: 1275-1283. 10.1093/bioinformatics/btg153.

    Article  CAS  PubMed  Google Scholar 

  37. Pesquita C, Faria D, Falcão AO, Lord P, Couto FM: Semantic similarity in biomedical ontologies. PLoS Comput Biol. 2009, 5: e1000443-10.1371/journal.pcbi.1000443.

    Article  PubMed  PubMed Central  Google Scholar 

  38. Tuikkala J, Elo L, Nevalainen OS, Aittokallio T: Improving missing value estimation in microarray data with gene ontology. Bioinformatics. 2006, 22: 566-572. 10.1093/bioinformatics/btk019.

    Article  CAS  PubMed  Google Scholar 

  39. Boone C, Bussey H, Andrews BJ: Exploring genetic interactions and networks with yeast. Nat Rev Genet. 2007, 8: 437-449. 10.1038/nrg2085.

    Article  CAS  PubMed  Google Scholar 

  40. Beyer A, Bandyopadhyay S, Ideker T: Integrating physical and genetic maps: from genomes to interaction networks. Nat Rev Genet. 2007, 8: 699-710. 10.1038/nrg2144.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  41. CCSB Interactome Database. [http://interactome.dfci.harvard.edu/S_cerevisiae/index.php]

  42. Ito T, Chiba T, Ozawa R, Yoshida M, Hattori M, Sakaki Y: A comprehensive two-hybrid analysis to explore the yeast protein interactome. Proc Natl Acad Sci USA. 2001, 98: 4277-4278. 10.1073/pnas.091096398.

    Article  Google Scholar 

  43. Yu H, Braun P, Yildirim MA, Lemmens I, Venkatesan K, Sahalie J, Hirozane- Kishikawa T, Gebreab F, Li N, Simonis N, Hao T, Rual JF, Dricot A, Vazquez A, Murray RR, Simon C, Tardivo L, Tam S, Svrzikapa N, Fan C, de Smet AS, Motyl A, Hudson ME, Park J, Xin X, Cusick ME, Moore T, Boone C, Snyder M, Roth FP, Barabási AL, Tavernier J, Hill DE, Vidal M: High-quality binary protein interaction map of the yeast interactome network. Science. 2008, 322: 104-110. 10.1126/science.1158684.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  44. Uetz P, Giot L, Cagney G, Mansfield TA, Judson RS, Knight JR, Lockshon D, Narayan V, Srinivasan M, Pochart P, Qureshi-Emili A, Li Y, Godwin B, Conover D, Kalbfleisch T, Vijayadamodar G, Yang M, Johnston M, Fields S, Rothberg JM: A comprehensive analysis of protein - protein interactions in Saccharomyces cerevisiae. Nature. 2000, 403: 623-627. 10.1038/35001009.

    Article  CAS  PubMed  Google Scholar 

  45. Collins SR, Kemmeren P, Zhao XC, Greenblatt JF, Spencer F, Holstege FC, Weissman JS, Krogan NJ: Toward a comprehensive atlas of the physical interactome of Saccharomyces cerevisiae. Mol Cell Proteomics. 2007, 6: 439-450.

    Article  CAS  PubMed  Google Scholar 

  46. 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, Russell RB, Superti-Furga G: Proteome survey reveals modularity of the yeast cell machinery. Nature. 2006, 440: 631-636. 10.1038/nature04532.

    Article  CAS  PubMed  Google Scholar 

  47. 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, Collins SR, Chandran S, Haw R, Rilstone JJ, Gandi K, Thompson NJ, Musso G, St Onge P, Ghanny S, Mandy HY, Lam MHY, Butland G, Altaf-Ul AM, Kanaya S, Shilatifard A, O'Shea E, Weissman JS, Ingles CJ, Hughes TR, Parkinson J, Gerstein M, Wodak SJ, Emili A, Greenblatt JF: Global landscape of protein complexes in the yeast Saccharomyces cerevisiae. Nature. 2006, 440: 637-643. 10.1038/nature04670.

    Article  CAS  PubMed  Google Scholar 

  48. Reguly T, Breitkreutz A, Boucher L, Breitkreutz BJ, Hon GC, Myers CL, Parsons A, Friesen H, Oughtred R, Tong A, Stark C, Ho Y, Botstein D, Andrews B, Boone C, Troyanskya OG, Ideker T, Dolinski K, Batada NN, Tyers M: Comprehensive curation and analysis of global interaction networks in Saccharomyces cerevisiae. J Biol. 2006, 5: 11-10.1186/jbiol36.

    Article  PubMed  PubMed Central  Google Scholar 

  49. von Mering C, Krause R, Snel B, Cornell M, Oliver SG, Fields S, Bork P: Comparative assessment of large-scale data sets of protein-protein interactions. Nature. 2002, 417: 399-403.

    Article  CAS  PubMed  Google Scholar 

  50. Schwikowski B, Uetz P, Fields S: A network of protein-protein interactions in yeast. Nat Biotechnol. 2000, 18: 1257-1261. 10.1038/82360.

    Article  CAS  PubMed  Google Scholar 

  51. The Krogan Lab Interactome Database. [http://interactome-cmp.ucsf.edu/]

  52. The Boone Lab DRYGIN Database. [http://drygin.ccbr.utoronto.ca/]

  53. Schuldiner M, Collins SR, Thompson NJ, Denic V, Bhamidipati A, Punna T, Ihmels J, Andrews B, Boone C, Greenblatt JF, Weissman JS, Krogan NJ: Exploration of the function and organization of the yeast early secretory pathway through an epistatic miniarray profile. Cell. 2005, 123: 507-519. 10.1016/j.cell.2005.08.031.

    Article  CAS  PubMed  Google Scholar 

  54. Collins SR, Miller KM, Maas NL, Roguev A, Fillingham J, Chu CS, Schuldiner M, Gebbia M, Recht J, Shales M, Ding H, Xu H, Han J, Ingvarsdottir K, Cheng B, Andrews B, Boone C, Berger SL, Hieter P, Zhang Z, Brown GW, Ingles CJ, Emili A, Allis CD, Toczyski DP, Weissman JS, Greenblatt JF, Krogan NJ: Functional dissection of protein complexes involved in yeast chromosome biology using a genetic interaction map. Nature. 2007, 446: 806-810. 10.1038/nature05649.

    Article  CAS  PubMed  Google Scholar 

  55. Costanzo M, Baryshnikova A, Bellay J, Kim Y, Spear ED, Sevier CS, Ding H, Koh JL, Toufighi K, Mostafavi S, Prinz J, St Onge RP, VanderSluis B, Makhnevych T, Vizeacoumar FJ, Alizadeh S, Bahr S, Brost RL, Chen Y, Cokol M, Deshpande R, Li Z, Lin ZY, Liang W, Marback M, Paw J, San Luis BJ, Shuteriqi E, Tong AH, van Dyk N: The genetic landscape of a cell. Science. 2010, 327: 425-431. 10.1126/science.1180823.

    Article  CAS  PubMed  Google Scholar 

  56. Barnes J, Hut P: A hierarchical O(N log N) force-calculation algorithm. Nature. 1986, 324: 446-449. 10.1038/324446a0.

    Article  Google Scholar 

  57. Cytoscape website. [http://www.cytoscape.org]

  58. Lindén RO, Eronen VP, Aittokallio T: Quantitative maps of genetic interactions in yeast: Comparative evaluation and integrative analysis. BMC Syst Biol. 2011, 5: 45-10.1186/1752-0509-5-45.

    Article  PubMed  PubMed Central  Google Scholar 

  59. Hu T, Sinnott-Armstrong NA, Kiralis JW, Andrew AS, Karagas MR, Moore JH: Characterizing genetic interactions in human disease association studies using statistical epistasis networks. BMC Bioinforma. 2011, 12: 364-10.1186/1471-2105-12-364.

    Article  CAS  Google Scholar 

  60. Keshava Prasad TS, Goel R, Kandasamy K, Keerthikumar S, Kumar S, Mathivanan S, Telikicherla D, Raju R, Shafreen B, Venugopal A, Balakrishnan L, Marimuthu A, Banerjee S, Somanathan DS, Sebastian A, Rani S, Ray S, Harrys Kishore CJ, Kanth S, Ahmed M, Kashyap MK, Mohmood R, Ramachandra YL, Krishna V, Rahiman BA, Mohan S, Ranganathan P, Ramabadran S, Chaerkady R, Pandey A: Human Protein Reference Database - 2009 update. Nucleic Acids Res. 2009, D767-D772. 37

  61. Aittokallio T: Module finding approaches for protein interaction networks. Biological Data Mining in Protein Interaction Networks. Edited by: Li XL, Ng SK. 2009, Hershey: IGI Global, 335-353.Medical Information Science Series,

    Chapter  Google Scholar 

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

    Article  Google Scholar 

  63. Huttenhower C, Mehmood SO, Troyanskaya OG: Graphle: interactive exploration of large, dense graphs. BMC Bioinforma. 2009, 10: 417-10.1186/1471-2105-10-417.

    Article  Google Scholar 

  64. Vlasblom J, Wu S, Pu S, Superina M, Liu G, Orsi C, Wodak SJ: GenePro: a Cytoscape plug-in for advanced visualization and analysis of interaction networks. Bioinformatics. 2006, 22: 2178-2179. 10.1093/bioinformatics/btl356.

    Article  CAS  PubMed  Google Scholar 

  65. Su G, Kuchinsky A, Morris JH, States DJ, Meng F: GLay: community structure analysis of biological networks. Bioinformatics. 2010, 26: 3135-3137. 10.1093/bioinformatics/btq596.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  66. Garcia O, Saveanu C, Cline M, Fromont-Racine M, Jacquier A, Schwikowski B, Aittokallio T: GOlorize: a Cytoscape plug-in for network visualization with Gene Ontology-based layout and coloring. Bioinformatics. 2007, 23: 394-396. 10.1093/bioinformatics/btl605.

    Article  CAS  PubMed  Google Scholar 

  67. Schreiber F, Dwyer T, Marriott K, Wybrow M: A generic algorithm for layout of biological networks. BMC Bioinforma. 2009, 10: 375-10.1186/1471-2105-10-375.

    Article  Google Scholar 

  68. Bindea G, Mlecnik B, Hackl H, Charoentong P, Tosolini M, Kirilovsky A, Fridman WH, Pagès F, Trajanoski Z, Galon J: ClueGO: a Cytoscape plug-in to decipher functionally grouped gene ontology and pathway annotation networks. Bioinformatics. 2009, 25: 1091-1093. 10.1093/bioinformatics/btp101.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  69. Jia M, Choi SY, Reiners D, Wurtele ES, Dickerson JA: MetNetGE: interactive views of biological networks and ontologies. BMC Bioinforma. 2010, 11: 469-10.1186/1471-2105-11-469.

    Article  Google Scholar 

  70. Fung DC, Wilkins MR, Hart D, Hong SH: Using the clustered circular layout as an informative method for visualizing protein-protein interaction networks. Proteomics. 2010, 10: 2723-2727. 10.1002/pmic.201000046.

    Article  CAS  PubMed  Google Scholar 

  71. Praneenararat T, Takagi T, Iwasaki W: Interactive, multiscale navigation of large and complicated biological networks. Bioinformatics. 2011, 27: 1121-1127. 10.1093/bioinformatics/btr083.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  72. Brown KR, Otasek D, Ali M, McGuffin MJ, Xie W, Devani B, Toch IL, Jurisica I: NAViGaTOR: Network Analysis, Visualization and Graphing Toronto. Bioinformatics. 2009, 25: 3327-3329. 10.1093/bioinformatics/btp595.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

Download references

Acknowledgements

The work was supported by the Academy of Finland (grants 120569, 133227, 140880 and 218310 to TA). The funders had no role in study design, data collection and analysis, decision to publish or preparation of the manuscript.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Tero Aittokallio.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

TA conceived the study and ON participated in its design. PS, JT and HV implemented the Multilevel Layout plug-in. JT developed and implemented the Biological Evaluation plug-in. JT analyzed the datasets. JT, PS, ON and TA wrote the manuscript. All authors read and approved the final manuscript.

Electronic supplementary material

Additional file 1: Internal TUCS Technical Report by Salmela et al. (2008). (PDF 11 MB)

Additional file 2: User-adjustable settings for the Multilevel Layout plug-in. (PDF 215 KB)

Additional file 3: Comparison of the layout algorithms using semantic similarity. (PDF 3 MB)

Additional file 4: Running times and semantic similarities for the test networks. (PDF 14 KB)

Additional file 5: Multiple runs of the MLL-C algorithm in the Ito-Core network. (PDF 6 MB)

Additional file 6: Correlation coefficients for running times and semantic scores. (PDF 7 KB)

Additional file 7: Relative speed-up of MLL-C provided by the M-tree architecture. (PDF 49 KB)

Additional file 8: Layout solutions when applied to the human HPRD network. (PDF 5 MB)

Additional file 9: The top-scoring clusters found in the Schwikowski network. (PDF 6 MB)

Authors’ original submitted files for images

Rights and permissions

Open Access This article is published under license to BioMed Central Ltd. This is an Open Access article is distributed under the terms of the Creative Commons Attribution License ( https://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

Tuikkala, J., Vähämaa, H., Salmela, P. et al. A multilevel layout algorithm for visualizing physical and genetic interaction networks, with emphasis on their modular organization. BioData Mining 5, 2 (2012). https://doi.org/10.1186/1756-0381-5-2

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1756-0381-5-2

Keywords