Skip to main content

Wormpath: searching for molecular interaction networks in Caenorhabditis elegans

Abstract

Background

High-throughput transcriptional profiling using Next-Generation Sequencing (RNA-Seq) or microarray technology have become standard tools in molecular biology. Successful investigations of gene regulatory mechanisms from these data typically employ mathematical models of biological networks.

Results

We have developed Wormpath, a software for molecular network discovery which operates on the genetic and physical interaction data of the Wormbase, a comprehensive resource of molecular data on Caenorhabditis elegans. We use Wormpath to show that the insulin/insulin-like growth factor signalling (IIS) pathway responds to UV-induced DNA damage during development.

Conclusions

Our software provides highly facilitated access to C. elegans interaction data and is capable of identifying essential molecular networks within a list of differentially expressed genes.

Background

Genome-wide expression profiling is achieved by high-throughput sequencing (RNA-Seq) or by expression microarrays. An initial analysis of the resulting data is typically achieved by sorting the entirety of all genes by statistical evidence for differential expression compared to a control condition. For downstream analysis, statistics about the functional properties enriched in a set of differentially expressed genes are needed as well as information on mutual dependencies between genes or larger molecular networks. The nematode worm Caenorhabditis elegans is a widely used model organism in developmental biology and genetics [1] and subject to multiple studies based on high-throughput gene expression data (e.g. [2]). In this paper, we describe Wormpath, a software enabling the discovery of complex networks among a set of differentially expressed genes which is specifically optimized for use in C. elegans studies. Recently, we used Wormpath as part of a larger study on the DNA damage response [3].

Since its inception in 1998, the Wormbase [4] has emerged as a widely used repository for genomic information on C. elegans and other nematodes, including comprehensive knowledge on previously reported molecular interactions. These data comprise genetic as well as physical interactions and are based on a large variety of experimental methods such as yeast one-, two-, and three-hybrid assays as well as RNAi in mutant backgrounds. The interactions are both manually and automatically curated with an emphasis on including large-scale data sets [5]. Wormpath takes advantage of this resource to search for networks between members of a user-provided list of differentially expressed genes. For any of these networks, the software reports statistical measures, graphical plots and functional annotation by GO terms.

Other tools for molecular network discovery from high-throughput data include Cytoscape [6] or web-based software like the Pathway Projector [7] – a selection of related tools was reviewed by Thomas and Bonchev [8]. As the aforementioned software programs, Wormpath is freely available but, in contrast to the others, it is specifically tailored for analyses in C. elegans and closely interacts with the comprehensive knowledge in the Wormbase. By adopting our software, researchers from the worm field can now use extensive information on molecular interactions of C. elegans without additional efforts like local software installation or database maintenance.

Implementation

Our software ignores interactions which are only computationally predicted, e.g. from orthologous interactions, but not experimentally confirmed in C. elegans. Furthermore, we call an indirect interaction a pair of interactions that connect two nodes representing genes from the list of differentially expressed genes to an additional node that acts as a linker gene which is not differentially expressed. This reflects the fact that a key gene might have been missed, for instance due to technical reasons. Given a list \( \mathbb{L} \) of differentially expressed genes, our approach relies on a large basic graph G = (V, E) with a set V of vertices and a set E of edges, representing the topology of the network between members of \( \mathbb{L} \). Genes are represented by nodes in V and interactions between genes or their proteins are represented by edges in E labeled as either direct or indirect.

Searching the graph G for networks is closely related to the problem of finding the connected components of G defined as all connected subgraphs which are not subgraphs of any larger connected graph, where a graph is called connected if each pair of its nodes is connected by a path. Searching the connected components is a classical problem for which a typical solution is formed e.g., by a depth-first search algorithm [9]. Members of larger candidate gene sets often form highly interconnected networks because it is likely that many of them are players in the same biological processes. Thus, the connected components of the basic graph easily become very large themselves. To avoid this, our approach is controlled by an iteration depth D defining the number of allowed steps from a start node. The software localizes the first gene of \( \mathbb{L} \) on G and searches all d-neighbours, i.e. all nodes that are reachable in at most d{1, …, D} steps from that position, with both direct and indirect interactions taken into account. After replacing the indirect interactions by the two respective interactions plus a new node for the linker gene, the software builds a new graph N = (V N , E N ) composed of only the d-neighbours and the edges between them. This procedure is repeated with the remaining genes of the list. Statistical significance of the networks is assessed and the results are sorted according to their network scores (see below). The algorithm is then repeated with D replaced by D-1, …, 1 to generate additional networks which are of smaller complexity.

To assess the statistical features of a network N in the results list, N is assigned a score defined as the average number of citations supporting its edges, providing a measure of the strength of experimental evidence for N. To test whether this network score is larger than expected by chance alone, the score is re-calculated for a given number of randomly simulated networks and a p-value is calculated as the fraction of those simulated scores which are at least as large as the original score.

Furthermore, the induced sub-network composed of all 1-neighbours of N is given by N 1 = {(v, e) G | v V; V N : d(v, ) = 1}. We consider the null hypothesis H 0 that the proportion of genes that are elements of N 1 is equal in \( \mathbb{L} \) and in the entirety of all C. elegans genes. If H 0 can be rejected, we conclude that the members of N 1 are significantly over-represented in \( \mathbb{L} \) and the presence of N in \( \mathbb{L} \) is unlikely to have occurred by chance alone.

If the database contains a total number of N genes, the number X of members of N 1 contained in \( \mathbb{L} \) is a hypergeometrically distributed random variable with parameters N, |N 1|, and |\( \mathbb{L} \)| and therefore has got the probability density function fX with

$$ {f}^X\left(\mathrm{k}\right):=\mathrm{P}\left(\mathrm{X}=\mathrm{x}\right)=\frac{\left(\begin{array}{c}\hfill N-\left|{\boldsymbol{N}}^1\right|\hfill \\ {}\hfill \left|\mathbb{L}\right|-k\hfill \end{array}\right)\left(\begin{array}{c}\hfill \left|{\boldsymbol{N}}^1\right|\hfill \\ {}\hfill k\hfill \end{array}\right)}{\left(\begin{array}{c}\hfill N\hfill \\ {}\hfill \left|\mathbb{L}\right|\hfill \end{array}\right)} $$

From this, the p-value for N can be calculated by \( p={\displaystyle {\sum}_{\tilde{k}=k}^n{f}^X\left(\tilde{k}\right)} \). If this p-value is sufficiently small, H 0 can be rejected at the predefined significance level.

Our approach to statistical assessment of the networks resulting from a Wormpath analysis covers two distinct scientific aspects. The network score and its corresponding score-based p-value provide a measure of the strength of experimental evidence for the interactions involved in the network. On the other hand, the result from the second significance test termed the list-based p-value tells us to what extent differentially expressed genes are over-represented in the network compared to the entire genome. In some cases, these two approaches can lead to opposite results for the same network (see Results and Discussion); however, their combined information draws a broader picture of the statistical features of the respective molecular network than one of them alone.

The Wormpath software itself has been implemented using Perl/CGI and takes advantage of GraphViz [10] to layout the networks and generate the graphical output. Users can browse their results online or save a compressed version of the output to their local computer. The computation is based on a local database synchronized with the Wormbase using the AcePerl API. The source code of Wormpath as of version 1.0.4 is provided as a supplement to this manuscript (Additional file 1).

Results and discussion

To show the potential of our approach for molecular network discovery, we re-analyzed microarray data from our recent study in which we reported that genes responding to DNA damage during development are enriched in the insulin/insulin-like growth factor signalling (IIS) pathway [3]. Transcriptional profiling of C. elegans L1 larvae after 6 h under UV irradiation at 60 mJ/cm−2 resulted in a list of 1349 differentially expressed genes (p < 0.01; fold change > ±1.5; Additional file 2: Table S1, online). Using iteration depth D = 1, Wormpath identifies a list of 25 molecular interaction networks significantly enriched among this set of genes (p < 0.01; Table 1). The p-values based on the network score and those based on the test for enrichment of differentially expressed genes represent two different statistical aspects of the resulting networks and the results for the two methods are opposite for some of them (Table 1). The IIS genes daf-16/FoxO and daf-2/Igf1 are part of 10 (daf-16) and 4 (daf-2) out of these 25 networks, indicating that they play a central regulatory role among the genes altered upon UV irradiation during development. The highest-scoring network (score 23.33; p < 0.0001) comprises both daf-16 and daf-2 (Figure 1). Wormpath links this network to a DAVID [11] analysis which reveals that dauer larval development is among the GO terms enriched for the genes involved, indicating that they do in fact respond to DNA damage.

Table 1 Networks identified in a Wormpath analysis of 1349 genes regulated upon UV radiation
Figure 1
figure 1

Top-scoring network among genes altered by UV radiation. In an analysis of a set of 1349 genes differentially expressed upon UV radiation, Wormpath revealed 25 significantly enriched networks. The network shown exhibits the strongest statistical evidence among all results (score 23.33; p < 0.0001). Red nodes represent induced genes whereas white nodes represent unchanged genes. Any edge denotes an interaction between the two genes, where a grey line indicates that the interaction has been described in only one publication and the bold line between daf-16 and daf-2 indicates that this interaction has been described multiple times in the literature (135 papers).

Although daf-2, the C. elegans orthologue of the human insulin-like growth factor 1 (Igf1) receptor, is not differentially expressed upon UV irradiation, the software recognizes that daf-16 as well as daf-2 are central players. This illustrates the effectiveness of using linker genes as in our approach. Regarding the statistical evaluation, the largest network scores are achieved by networks with strong experimental evidence for their interactions. In our analysis of the 1349 UV-responsive genes, the network score is therefore maximized by the smallest network among those which contain the daf-16/daf-2 interaction given that the negative regulation of daf-16 activity downstream of daf-2 has been described multiple times in the literature. In our recent study [3], however, we have reported the network with the largest number of interactions as this gives the most comprehensive selection of candidate genes related to the IIS pathway. In contrast, the network score defined in this paper is rather useful to assess the strength of scientific evidence for a particular network.

A summary of the features of Wormpath compared to those of other tools is given in Table 2. Among the softwares listed, Wormpath is the only one that is easily accessible to benchside biologists and can be used to systematically search a list of candidate genes for molecular networks in C. elegans. For instance, the usage of Cytoscape requires at least basic knowledge on the structure and sources of the interaction database that is used and mapping your own data to the resulting network requires deeper software skills. Also, Cytoscape itself does not provide any functionality to extract or statistically evaluate existing sub-networks. The Pathway Projector, on the other hand, can use candidate genes identified from experimental data only to highlight them on existing KEGG pathways in C. elegans, whereas a systematic search and assessment of networks within the candidate genes is not provided. Finally, Ingenuity Pathway Analysis is a very powerful software with a comprehensive back-end database, but it is subject to commercial licensing and supports the analysis of networks in C. elegans data only by homology mapping. In contrast to these softwares, Wormpath greatly facilitates access to the Wormbase interaction database and uses this rich resource to build molecular networks from a list of candidate genes uploaded by the user. In addition, the software is available free of charge and the design of its interface is very intuitive and easy to use.

Table 2 Features of Wormpath compared to other softwares

Among the goals of Wormpath’s future development is the application of its methodology also to data from other model organisms such as Drosophila melanogaster (fruit fly) and Saccharomyces cerevisiae (yeast). Furthermore, the interaction database used by the software will be enriched with interaction data from other sources including ChIP-Seq data from the modENCODE project [12] and miRNA target gene prediction algorithms (reviewed by [13]).

Conclusions

We have shown that the Wormpath software is generally suitable for the discovery of networks composed of previously described molecular interactions of the worm. Our software facilitates downstream analysis of experiments based on high-throughput transcriptional profiling and enables an easy approach to network biology in C. elegans.

Availability and requirements

Project name: Wormpath

Project home page: http://bifacility.uni-koeln.de/wormpath

Operating system: Browser-accessible web service, platform-independent

Programming language: Perl/CGI

Other requirements: None

License: GPL version 3

Restrictions to use by non-academics: The software is accessible without any restrictions.

Abbreviations

RNA-Seq:

RNA sequencing

UV:

Ultra violet

IIS:

Insulin/insulin-like signaling

CGI:

Common gateway interface

GO:

Gene ontology

References

  1. Brenner S. The genetics of Caenorhabditis elegans. Genetics. 1974;77(1):71–94.

    PubMed Central  CAS  PubMed  Google Scholar 

  2. Spencer WC, Zeller G, Watson JD, Henz SR, Watkins KL, McWhirter RD, et al. A spatial and temporal map of C. elegans gene expression. Genome Res. 2011;21(2):325–41.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  3. Müller MM, Castells-Roca L, Babu V, Ermolaeva M, Müller RU, Frommolt P, et al. DAF-16/FoxO and EGL-27/GATA promote developmental growth in response to persistent somatic DNA damage. Nat Cell Biol. 2014;16(12):1168–79.

    Article  PubMed  Google Scholar 

  4. Stein L, Sternberg P, Durbin R, Thierry-Mieg J, Spieth J. Wormbase: network access to the genome and biology of Caenorhabditis elegans. Nucleic Acids Res. 2001;29(1):82–6.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  5. Rogers A, Antoshechkin I, Bieri T, Blasiar D, Bastiani C, Canaran P, et al. WormBase 2007. Nucleic Acids Res. 2008;36(database issue):D612–7.

    PubMed Central  CAS  PubMed  Google Scholar 

  6. Shannon P, Markiel A, Ozier O, Baliga NS, Wang JT, Ramage D, et al. Cytoscape: a software environment for integrated models of biomolecular interaction networks. Genome Res. 2003;13(11):2498–504.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  7. Kono N, Arakawa K, Ogawa R, Kido N, Oshita K, Ikegami K, et al. Pathway projector: web-based zoomable pathway browser using KEGG atlas and Google Maps API. PLoS One. 2009;4(11):e7710.

    Article  PubMed Central  PubMed  Google Scholar 

  8. Thomas S, Bonchev D. A survey of current software for network analysis in molecular biology. Hum Genomics. 2010;4(5):353–60.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  9. Hopcroft J, Tarjan R. Efficient algorithms for graph manipulation. Comm ACM. 1973;16(6):372–8.

    Article  Google Scholar 

  10. Gansner ER, North SC. An open graph visualization system and its applications to software engineering. Software Pract Exper. 2000;30(11):1203–33.

    Article  Google Scholar 

  11. Huang DW, Sherman BT, Tan Q, Collins JR, Alvord WG, Roayaei J, et al. The DAVID gene function classification tool: a novel biological module-centric algorithm to functionally analyze large gene lists. Genome Biol. 2007;8(9):R183.

    Article  PubMed Central  PubMed  Google Scholar 

  12. Celniker SE, Dillon LA, Gerstein MB, Gunsalus KC, Henikoff S, Karpen GH, et al. Unlocking the secrets of the genome. Nature. 2009;459(7249):927–30.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  13. Oulas A, Karathanasis N, Louloupi A, Pavlopoulos GA, Poirazi P, Kalantidis K, et al. Prediction of miRNA targets. Methods Mol Biol. 2015;1269:207–29.

    Article  PubMed  Google Scholar 

Download references

Acknowledgements

PF acknowledges financial support from the Deutsche Forschungsgemeinschaft (CancerSysDB FR3313/2-1), the Bundesministerium für Wirtschaft und Energie (Transcriptalyzer KF2429610MS2) and the Bundesministerium für Bildung und Forschung (NGSgoesHPC 01IH11003A). BS received funding from the Deutsche Forschungsgemeinschaft (CECAD, SFB 829, SFB 670 and KFO 286), the European Research Council (ERC Starting Grant 260383), Marie Curie (FP7 ITN CodeAge 316354, aDDRess 316390, MARRIAGE 316964 and ERG 239330), the German-Israeli Foundation (1104–68.11/2010), the Deutsche Krebshilfe (109453) and the Bundesministerium für Bildung und Forschung (SyBACol 0315893A-B).

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Peter Frommolt.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

PF and BS developed the software and wrote the manuscript. Both authors read and approved the final manuscript.

Additional files

Additional file 1:

Source code of the Wormpath software as of version 1.0.4 (February 2015).

Additional file 2: Table S1.

List of 1349 genes differentially expressed upon UV radiation. The file is suitable as an input file for the Wormpath software.

Rights and permissions

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

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Frommolt, P., Schumacher, B. Wormpath: searching for molecular interaction networks in Caenorhabditis elegans . Source Code Biol Med 10, 5 (2015). https://0-doi-org.brum.beds.ac.uk/10.1186/s13029-015-0034-6

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://0-doi-org.brum.beds.ac.uk/10.1186/s13029-015-0034-6

Keywords