Skip to main content
Advertisement
  • Loading metrics

Multiscale community detection in Cytoscape

  • Akshat Singhal ,

    Contributed equally to this work with: Akshat Singhal, Song Cao, Christopher Churas

    Roles Formal analysis, Investigation, Methodology, Project administration, Software, Validation, Visualization, Writing – original draft, Writing – review & editing

    Affiliation Department of Computer Science and Engineering, University of California, San Diego, La Jolla, California, United States of America

  • Song Cao ,

    Contributed equally to this work with: Akshat Singhal, Song Cao, Christopher Churas

    Roles Formal analysis, Investigation, Methodology, Software, Validation, Writing – original draft

    Affiliation Department of Medicine, University of California, San Diego, La Jolla, California, United States of America

  • Christopher Churas ,

    Contributed equally to this work with: Akshat Singhal, Song Cao, Christopher Churas

    Roles Investigation, Methodology, Software, Validation, Writing – original draft

    Affiliation Department of Medicine, University of California, San Diego, La Jolla, California, United States of America

  • Dexter Pratt,

    Roles Conceptualization, Funding acquisition, Project administration, Resources, Supervision, Validation, Writing – review & editing

    Affiliation Department of Medicine, University of California, San Diego, La Jolla, California, United States of America

  • Santo Fortunato,

    Roles Conceptualization, Writing – review & editing

    Affiliation School of Informatics, Computing, and Engineering, Indiana University, Bloomington, Indiana, United States of America

  • Fan Zheng ,

    Roles Conceptualization, Investigation, Methodology, Validation, Visualization, Writing – original draft, Writing – review & editing

    f6zheng@ucsd.edu (FZ); tideker@ucsd.edu (TI)

    Affiliation Department of Medicine, University of California, San Diego, La Jolla, California, United States of America

  • Trey Ideker

    Roles Conceptualization, Funding acquisition, Resources, Supervision, Writing – review & editing

    f6zheng@ucsd.edu (FZ); tideker@ucsd.edu (TI)

    Affiliations Department of Computer Science and Engineering, University of California, San Diego, La Jolla, California, United States of America, Department of Medicine, University of California, San Diego, La Jolla, California, United States of America

Abstract

Detection of community structure has become a fundamental step in the analysis of biological networks with application to protein function annotation, disease gene prediction, and drug discovery. This recent impact creates a need to make these techniques and their accompanying visualization schemes available to a broad range of biologists. Here we present a service-oriented, end-to-end software framework, CDAPS (Community Detection APplication and Service), that integrates the identification, annotation, visualization, and interrogation of multiscale network communities, accessible within the popular Cytoscape network analysis platform. With novel design principles, CDAPS addresses unmet new challenges, such as identifying hierarchical community structures, comparison of outputs generated from diverse network resources, and easy deployment of new algorithms, to facilitate community-sourced science. We demonstrate that the CDAPS framework can be applied to high-throughput protein-protein interaction networks to gain novel insights, such as the identification of putative new members of known protein complexes.

This is a PLOS Computational Biology Software paper.

Introduction

One of the fundamental features of a complex network is the notion of community, which can be defined as a group of nodes that are more densely connected with each other than they are to the rest of the network. Community detection is a class of pattern recognition methods that assign network nodes to groups, or communities, based on the network‘s structural organization. As an important technique to probe the structural organization of a complex network, it has been successfully applied to many problem domains in systems biology, such as identifying protein complexes[14], cataloging ‘omics profiles[58], and prioritizing new disease genes[911].

Clustering, which relates to community detection at a single scale, is a well-established technique in network analysis and is supported by many applications such as Clustermaker2[12], CytoCluster[13], ClusterViz[14], and MCODE[15], which have been made available in bioinformatics environments like Cytoscape[16]. Recent work in multiscale network community detection makes it possible to build hierarchical representations of biological structure and function directly from networks[1719]. These developments create a new challenge: to make multiscale community detection techniques and their accompanying visualization schemes available to a broad range of biologists.

Here, we present a software infrastructure to address these challenges, termed CDAPS (Community Detection APplication and Service), deployed as an App in the Cytoscape platform for network analysis. CDAPS has several novel aspects in its design relative to existing applications in the field of bioinformatics. First, beyond assigning nodes in an input network to a set of clusters, multiscale community detection in CDAPS summarizes a network’s underlying multiscale structure in a separate hierarchical ontology, where each node represents a community. Second, CDAPS invokes community detection and functional enrichment algorithms via REST (REpresentational State Transfer) queries to a remote service outside of the Java-based Cytoscape desktop environment (Fig 1). On that service, community detection algorithms are encapsulated using Docker containers[20], enabling them to run in their native language and environment. Further, the use of remote servers allows incorporation of new algorithms without the need to update the App, and it removes the computational overhead of running these algorithms in the Cytoscape desktop application. As a whole, CDAPS provides an end-to-end pipeline that creates, annotates, visualizes, and interrogates hierarchical models based on multiscale patterns in networks.

thumbnail
Fig 1. Overview of the CDAPS workflow.

A flowchart illustrating various components of the CDAPS framework and the data flow between them. The CD app can send edges of an interaction network for community detection to the CD service. The service then launches the corresponding Docker image which executes the required task and sends back a hierarchy network to the CD app for visualization and community labeling.

https://doi.org/10.1371/journal.pcbi.1008239.g001

Design and implementation

The CDAPS framework contains two major components: CD App and CD service. CD App is part of the Cytoscape desktop application and acts as a client to the CD service. The CD service, as a typical service-oriented architecture [21], performs the community detection computation on a remote server. In the CD App, the user chooses a community detection algorithm to be applied to a given interaction network and then the pertinent data is sent to the CD service, where a Docker image hosting the algorithm is invoked to produce a hierarchical network. The results are returned to the CD App, which generates a new hierarchy network, or ontology, which contains information of the resulting communities (as nodes) and their hierarchical relationships (as edges). The whole framework provides efficient interfaces among different modular components of the pipeline (Fig 1).

CD App

CD App is an App for Cytoscape [16] which acts as a client for the CD service, providing a convenient user interface through menu options. Below we briefly describe its functions:

  1. Community detection: In this initial release, we provide four algorithms: Louvain [22], Infomap [23,24], OSLOM [25], and CliXO [26]. Louvain, Infomap, and OSLOM are popular community detection algorithms which are highly scalable and capable of organizing multiscale communities as a hierarchy. We also include our previously described CliXO algorithm, which uniquely organizes communities hierarchically in the form of a directed acyclic graph (DAG), i.e. a community is allowed to be part of different overlapping communities. These algorithms have previously been implemented without graphical user interfaces, making it difficult for new users to tune their parameters. Through CDAPS, we provide an interactive interface to tune parameters, such as the “resolution parameters” in Louvain (via Reichardt-Bornholdt configuration model [27] implemented in http://github.com/vtraag/louvain-igraph), Infomap (via the Markov time parameter in the Infomap package [28]), and OSLOM that control the granularity of the resulting communities. Because community detection is an active research field, and many new algorithms are proposed every year [29], the CD app is designed to be easily extended by packaging new algorithms as Docker images in a standardized format and adding them to the CD service (see details in "CD service").
  2. Functional enrichment: One of the key downstream analyses of community detection is to annotate the resultant protein communities by determining their overlap with gene sets associated with known functional or biological entities. We currently provide interfaces with the following external functional enrichment tools: g:Profiler [30], Enrichr [31], and iQuery (iquery.ndexbio.org). These tools can be applied to all or a subset of communities.
  3. Interaction sub-networks: We also provide a feature to enable interrogation of the communities in the hierarchical model by retrieving the subgraph of the interaction network corresponding to the genes in a given community.

Functional enrichment and sub-network interrogation can be invoked by menu options associated with any node (i.e. a community) in the hierarchy network. The CDAPS framework considers a hierarchy network and its source interaction network as two separate entities. We link these networks by keeping a simple reference to the source interaction network as an attribute of the hierarchy network. For a given interaction network, users can generate many alternative hierarchies with different algorithms and parameter settings, and they can save and manage them independently. For reproducibility, the CD App stores the name of the algorithms and the accompanying parameters as an attribute of the hierarchy network.

CD service

CD service is a REST web service that acts as a bridge between the Cytoscape desktop app and the hierarchical community detection algorithms. The service provides a platform-independent endpoint that is accessible to CD App and other tools such as a website or Jupyter notebook [32]. To facilitate easy installation and reproducibility, community detection algorithms are packaged as Docker images that are called by the CD Service on remote servers (Fig 1). An additional advantage of using remote servers is to avoid problems on platforms that do not support direct invocation of Docker images.

The infrastructure of the CD service facilitates updates and extends the capabilities of the CD app by enabling new Docker images to be incorporated into the CD service to support additional algorithms. Updates to the CD service are transparent to users because the CD App automatically updates its interface by querying the service to find the latest algorithms and their parameters. In addition to the community detection algorithms, the CD Service interfaces to external functional enrichment tools to find annotations that can help label a community and provide insight into its function (see the “CD App” section above).

Results

As proof of concept, we explored a workflow for creating a hierarchical model from a large protein interaction network in Cytoscape. Without loss of generality, we chose to use OSLOM [25] as the community detection algorithm and BioPlex 2.0 [4] as the interaction network. BioPlex is a physical protein-protein interaction network containing 10,961 proteins and 56,553 interactions determined by the affinity-purification mass-spectrometry (AP-MS) technique. The goal of the analysis was to reveal meaningful structures of this complex network, as well as to discover de novo protein modules or novel extensions of previously identified protein modules. We then used a functional enrichment tool, g:Profiler [30], to generate labels for communities based on significant overlap with gene sets in databases. We describe the steps of this workflow as follows.

  1. Download and install Cytoscape from http://www.cytoscape.org/.
  2. Start Cytoscape and instantiate a new session.
  3. Install the app. Apps > App Manager > Select “CyCommunityDetection” > Install.
  4. Import the example network. Click NDEx icon > Import Network from NDEx > Search “BioPlex” > Select "BioPlex 2.0 (56,000 interactions)" > Close. The DOI of this network is http://doi.org/10.18119/N91597.
  5. Execute OSLOM for BioPlex (Fig 2). Click Apps > Community Detection > Run Community Detection > Select “OSLOM” from the algorithm drop-down > Set “coverage parameter” to 0.2 > Set “random number seed” to 1 > Run. This step creates a hierarchy network. Note that community detection algorithms are in general stochastic, and thus they may generate different results if the random seed parameter is not fixed. The parameters of community detection, including (if applicable) the random seed, are stored as a property of this hierarchical network to ensure the reproducibility of this workflow (column “description” of network table).
  6. Run functional enrichment on the hierarchy network. Click Apps > Community Detection > Run Functional Enrichment > Select g:Profiler from the algorithm drop-down > Set “minimum overlap” to 0.05 > Run. This step adds annotations to the hierarchy network (Fig 3A and 3B).
  7. Without loss of generality, with the hierarchy network in the viewport, type “mediator” in the search box at the upper-right corner of Cytoscape to highlight the two nodes annotated as “mediator complex”. This is because the “mediator complex” is the best-matched gene set in reference databases of g:Profiler for both communities (Fig 3C). Between these two communities, the smaller one with 51 genes better matches the reference version of the “mediator complex” (CORUM:230; Jaccard index 0.64; relevant information can be found in columns “CD_AnnotatedMembers_SourceTerm” and “CD_AnnotatedMembers_Overlap”).
  8. For this node, copy the content in the attribute “CD_NonAnnotatedMembers” in the “Node Table” of the hierarchy network, which represents a subset of proteins in the community that is not recorded in the database entry of “mediator complex” queried by g:Profiler (i.e. CORUM:230 in this example).
  9. Right-click the node > Apps > Community Detection > View Interactions for Selected Node. It creates a sub-network of the BioPlex 2.0, which contains only the proteins in this community (51 nodes, 269 edges) (Fig 3D).
  10. With the interaction sub-network in the viewport, paste the string copied from Step 8 in the search box above the upper right corner of the viewport. It highlights some nodes in the interaction sub-network.
  11. From the results, it can be noticed that several proteins that have not been known as members of the mediator complex (e.g. BIRC5, LZIC, NR1I3, TCL1B) have many interactions with known mediator complex members [33] (Fig 3D). These proteins are putative novel components of the mediator complex based on the BioPlex 2.0 network.
thumbnail
Fig 2. Run community detection on a protein-protein interaction network.

A Cytoscape example screenshot showing the BioPlex 2.0 network [4] imported from NDEx (http://doi.org/10.18119/N91597), along with settings for running OSLOM [25]. Related to steps 4–5 in the example workflow.

https://doi.org/10.1371/journal.pcbi.1008239.g002

thumbnail
Fig 3. Results of hierarchical community detection and downstream analyses.

(A) A hierarchy derived from the BioPlex 2.0 [4] interaction network with OSLOM [25] and annotated by g:Profiler. Red rectangle: a subregion in the hierarchy related to the mediator complex. (B) The menu to set up functional annotation with g:Profiler. (C) A zoom-in view of the sub-hierarchy highlighted in panel A. Red rectangle: a community to be further explored. (D) The interaction subnetwork of the community highlighted in panel C. Proteins, not known as members of the mediator complex, are highlighted (yellow). Related to steps 6–11 in the example workflow. Node color: The overlap (Jaccard Index) between a community and the gene set corresponding to its annotation (panels A and C). Networks can be found on NDEx: http://www.ndexbio.org/#/network/380d5904-bd9f-11ea-aaef-0ac135e8bacf (panel A). http://www.ndexbio.org/#/network/28fdd535-bbe5-11ea-aaef-0ac135e8bacf (panel D).

https://doi.org/10.1371/journal.pcbi.1008239.g003

In support of their association with Mediator, BIRC5 and NR1I3 have reported roles as transcriptional activators [34,35], in agreement with the function of the Mediator complex which transduces signals from transcriptional activators bound to enhancers to the basal transcription machinery (including RNA polymerase II) [33], suggesting that these physical interactions are functionally relevant.

To test the performance of the CDAPS framework, we ran three community detection algorithms, Louvain, Infomap, and OSLOM [22,23,25], available through CDAPS, on popular biological networks and recorded the time taken by the algorithms inside the CD service along with the runtime corresponding to overhead (time taken transmitting the network and visualizing/constructing the resultant hierarchy). We observed that the fraction of time spent on overhead decreases sharply as the total runtime increases, suggesting that our implementation of CDAPS efficiently integrates the algorithms into the Cytoscape interface. For instance, for the Bioplex 2.0 network [4], the total runtime with OSLOM is about 43.85 seconds, including the CDAPS overhead time of 0.99 seconds, 2.3% of the total runtime (Table 1). In general, for any network for which the total runtime exceeds 50 seconds, the time overhead of running a community detection algorithm through CDAPS has a median of less than 1%. The CD service is currently hosted on an Intel(R) Xeon(R) E5-2687W v3 processor with 32 GB of memory. All the Docker containers are run with the default configuration and, thus, each container has all the resources of the host processor.

Availability and future directions

Flexibility and extensibility are the two main strengths of the CDAPS framework, allowing us and others to continue to grow and evolve the repertoire of community detection algorithms available to users. The use of Docker images to encapsulate algorithms will reduce the need for customization and simplify their deployment to the service. As new algorithms are deployed to CDAPS, the CD App will fetch the list of currently available algorithms from the CD service and update the CD app interface in Cytoscape without requiring any action on the part of users.

To enable a web-based, interactive investigation of hierarchical models of network communities, a compelling future direction is to create a pipeline that connects the CDAPS to our HiView platform [36]. HiView provides an intuitive visualization of hierarchical/nested structures with a powerful “circle packing” layout [37], as well as the ability to use any community-defined gene list to probe the support of the same community in orthogonal network datasets hosted on the NDEx database [38].

We will also apply workflows that use the results of community detection to select particular communities of high interest, such as those that significantly aggregate the disease-related statistical signals of individual genes/proteins extracted from large-scale genomic studies including GWAS (Genome-Wide Association Studies) [11,39] and cancer whole-exome sequencing.

The source code of CD App, along with the user documentation, is available at https://github.com/cytoscape/cy-community-detection. CD App can be directly installed through the Cytoscape Application Manager. The codebase of CD service and its documentation is available at https://github.com/cytoscape/communitydetection-rest-server.

Supporting information

S1 File. Bioplex CDAPS cytoscape session.

This file contains the Bioplex 2.0 interaction network, the derived hierarchy network, and the interaction sub-network used in the worked example.

https://doi.org/10.1371/journal.pcbi.1008239.s001

(CYS)

S2 File. CD App binary.

The java archive file can be directly installed in Cytoscape.

https://doi.org/10.1371/journal.pcbi.1008239.s002

(JAR)

S3 File. CD App user document.

This file contains the steps required to compile CD App source code, install the binary in Cytoscape, and use the application.

https://doi.org/10.1371/journal.pcbi.1008239.s003

(PDF)

S4 File. Test data.

This file contains a list of popular networks, publicly available through NDEx, that were used to test the CDAPS framework. Each test in the file provides the details of parameters used for that particular test and the NDEx URLs for both the input and output networks.

https://doi.org/10.1371/journal.pcbi.1008239.s004

(PDF)

References

  1. 1. Li X, Wu M, Kwoh C-K, Ng S-K. Computational approaches for detecting protein complexes from protein interaction networks: a survey. BMC Genomics. 2010;11 Suppl 1: S3.
  2. 2. Palla G, Derényi I, Farkas I, Vicsek T. Uncovering the overlapping community structure of complex networks in nature and society. Nature. 2005;435: 814–818. pmid:15944704
  3. 3. Nepusz T, Yu H, Paccanaro A. Detecting overlapping protein complexes in protein-protein interaction networks. Nat Methods. 2012;9: 471–472. pmid:22426491
  4. 4. Huttlin EL, Bruckner RJ, Paulo JA, Cannon JR, Ting L, Baltier K, et al. Architecture of the human interactome defines protein communities and disease networks. Nature. 2017;545: 505–509. pmid:28514442
  5. 5. Levine JH, Simonds EF, Bendall SC, Davis KL, Amir E-AD, Tadmor MD, et al. Data-Driven Phenotypic Dissection of AML Reveals Progenitor-like Cells that Correlate with Prognosis. Cell. 2015;162: 184–197. pmid:26095251
  6. 6. Wolf FA, Angerer P, Theis FJ. SCANPY: large-scale single-cell gene expression data analysis. Genome Biol. 2018;19: 15. pmid:29409532
  7. 7. Butler A, Hoffman P, Smibert P, Papalexi E, Satija R. Integrating single-cell transcriptomic data across different conditions, technologies, and species. Nat Biotechnol. 2018;36: 411–420. pmid:29608179
  8. 8. Kiselev VY, Andrews TS, Hemberg M. Challenges in unsupervised clustering of single-cell RNA-seq data. Nat Rev Genet. 2019;20: 273–282. pmid:30617341
  9. 9. Cantini L, Medico E, Fortunato S, Caselle M. Detection of gene communities in multi-networks reveals cancer drivers. Sci Rep. 2015;5: 17386. pmid:26639632
  10. 10. Boyle EA, Pritchard JK, Greenleaf WJ. High-resolution mapping of cancer cell networks using co-functional interactions. Mol Syst Biol. 2018;14: e8594. pmid:30573688
  11. 11. Choobdar S, Ahsen ME, Crawford J, Tomasoni M, Fang T, Lamparter D, et al. Assessment of network module identification across complex diseases. Nat Methods. 2019;16: 843–852. pmid:31471613
  12. 12. Morris JH, Apeltsin L, Newman AM, Baumbach J, Wittkop T, Su G, et al. clusterMaker: a multi-algorithm clustering plugin for Cytoscape. BMC Bioinformatics. 2011;12: 436. pmid:22070249
  13. 13. Li M, Li D, Tang Y, Wu F, Wang J. CytoCluster: A Cytoscape Plugin for Cluster Analysis and Visualization of Biological Networks. Int J Mol Sci. 2017;18. pmid:28858211
  14. 14. Wang J, Zhong J, Chen G, Li M, Wu F-X, Pan Y. ClusterViz: A Cytoscape APP for Cluster Analysis of Biological Network. IEEE/ACM Trans Comput Biol Bioinform. 2015;12: 815–822. pmid:26357321
  15. 15. Bader GD, Hogue CWV. An automated method for finding molecular complexes in large protein interaction networks. BMC Bioinformatics. 2003;4: 2. pmid:12525261
  16. 16. 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: 2498–2504. pmid:14597658
  17. 17. Ravasz E, Barabási A-L. Hierarchical organization in complex networks. Phys Rev E Stat Nonlin Soft Matter Phys. 2003;67: 026112. pmid:12636753
  18. 18. Clauset A, Moore C, Newman MEJ. Hierarchical structure and the prediction of missing links in networks. Nature. 2008;453: 98–101. pmid:18451861
  19. 19. Dutkowski J, Kramer M, Surma MA, Balakrishnan R, Cherry JM, Krogan NJ, et al. A gene ontology inferred from molecular networks. Nat Biotechnol. 2013;31: 38–45. pmid:23242164
  20. 20. Merkel D. Docker: lightweight linux containers for consistent development and deployment. Linux J. 2014;2014: 2.
  21. 21. Fowler M, Lewis J. Microservices. Viittattu. 2014;28: 2015.
  22. 22. Blondel VD, Guillaume J-L, Lambiotte R, Lefebvre E. Fast unfolding of communities in large networks. J Stat Mech. 2008;2008: P10008.
  23. 23. Rosvall M, Bergstrom CT. Maps of random walks on complex networks reveal community structure. Proc Natl Acad Sci U S A. 2008;105: 1118–1123. pmid:18216267
  24. 24. Rosvall M, Bergstrom CT. Multilevel compression of random walks on networks reveals hierarchical organization in large integrated systems. PLoS One. 2011;6: e18209. pmid:21494658
  25. 25. Lancichinetti A, Radicchi F, Ramasco JJ, Fortunato S. Finding statistically significant communities in networks. PLoS One. 2011;6: e18961. pmid:21559480
  26. 26. Kramer M, Dutkowski J, Yu M, Bafna V, Ideker T. Inferring gene ontologies from pairwise similarity data. Bioinformatics. 2014;30: i34–42. pmid:24932003
  27. 27. Reichardt J, Bornholdt S. Statistical mechanics of community detection. Phys Rev E Stat Nonlin Soft Matter Phys. 2006;74: 016110. pmid:16907154
  28. 28. Kheirkhahzadeh M, Lancichinetti A, Rosvall M. Efficient community detection of network flows for varying Markov times and bipartite networks. Phys Rev E. 2016;93: 032309. pmid:27078368
  29. 29. Fortunato S, Hric D. Community detection in networks: A user guide. Phys Rep. 2016;659: 1–44.
  30. 30. Raudvere U, Kolberg L, Kuzmin I, Arak T, Adler P, Peterson H, et al. g:Profiler: a web server for functional enrichment analysis and conversions of gene lists (2019 update). Nucleic Acids Res. 2019;47: W191–W198. pmid:31066453
  31. 31. Kuleshov MV, Jones MR, Rouillard AD, Fernandez NF, Duan Q, Wang Z, et al. Enrichr: a comprehensive gene set enrichment analysis web server 2016 update. Nucleic Acids Res. 2016;44: W90–7. pmid:27141961
  32. 32. Kluyver T, Ragan-Kelley B, Pérez F, Granger BE, Bussonnier M, Frederic J, et al. Jupyter Notebooks-a publishing format for reproducible computational workflows. ELPUB. 2016. pp. 87–90.
  33. 33. Soutourina J. Transcription regulation by the Mediator complex. Nat Rev Mol Cell Biol. 2018;19: 262–274. pmid:29209056
  34. 34. Yun S, Kim WK, Kwon Y, Jang M, Bauer S, Kim H. Survivin is a novel transcription regulator of KIT and is downregulated by miRNA-494 in gastrointestinal stromal tumors. Int J Cancer. 2018;142: 2080–2093.
  35. 35. Xie W, Barwick JL, Simon CM, Pierce AM, Safe S, Blumberg B, et al. Reciprocal activation of xenobiotic response genes by nuclear receptors SXR/PXR and CAR. Genes Dev. 2000;14: 3014–3023.
  36. 36. Yu MK, Ma J, Ono K, Zheng F, Fong SH, Gary A, et al. DDOT: A Swiss Army Knife for Investigating Data-Driven Biological Ontologies. Cell Syst. 2019;8: 267–273.e3. pmid:30878356
  37. 37. Wang W, Wang H, Dai G, Wang H. Visualization of Large Hierarchical Data by Circle Packing. Proceedings of the SIGCHI Conference on Human Factors in Computing Systems. New York, NY, USA: ACM; 2006. pp. 517–520.
  38. 38. Pratt D, Chen J, Welker D, Rivas R, Pillich R, Rynkov V, et al. NDEx, the Network Data Exchange. Cell Syst. 2015;1: 302–305. pmid:26594663
  39. 39. Lamparter D, Marbach D, Rueedi R, Kutalik Z, Bergmann S. Fast and Rigorous Computation of Gene and Pathway Scores from SNP-Based Summary Statistics. PLoS Comput Biol. 2016;12: e1004714. pmid:26808494