← Revision 2 as of 2009-09-28 20:05:12
Size: 555
Comment:
|
← Revision 3 as of 2009-09-28 20:23:34 →
Size: 1275
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 4: | Line 4: |
In many cases, biologists are interested in relationship between functional modules first. Then, they look into the details inside the modules, i.e., actual interactions. Cytoscape can partially handle this problem using Group API and some related plugins, | In many cases, biologists are interested in relationship between functional modules first. Then, they look into the details inside the modules, i.e., actual interactions. Cytoscape can partially handle this problem using Group API and some related plugins, but it's not a standard feature. Also, there is no simple file format to represent hierarchy/substructures. |
Line 15: | Line 15: |
==== |
This is a standard file format in graphviz. It has XML-like structure in the text file, and can represent substructure. ==== Pajek ==== This program has 3 types of files to represent substructure: * Partitions – they tell for each vertex to which class vertex belong. Default extension: .clu. * Clusters – subset of vertices (e.g. one class from partition). Default extension: .cls. * Hierarchies – hierarchically ordered vertices. Default extension: .hie. Therefore, user needs to load 4 files (network, partition, cluster, hierarchy) to reconstruct the saved substructures. ==== igraph ==== |
Support for Modules in Cytoscape
Introduction
In many cases, biologists are interested in relationship between functional modules first. Then, they look into the details inside the modules, i.e., actual interactions. Cytoscape can partially handle this problem using Group API and some related plugins, but it's not a standard feature. Also, there is no simple file format to represent hierarchy/substructures.
Usecases
Implementation
File Formats
Most of popular XML graph file formats support hierarchical structure.
DOT
This is a standard file format in graphviz. It has XML-like structure in the text file, and can represent substructure.
Pajek
This program has 3 types of files to represent substructure:
- Partitions – they tell for each vertex to which class vertex belong. Default extension: .clu.
- Clusters – subset of vertices (e.g. one class from partition). Default extension: .cls.
- Hierarchies – hierarchically ordered vertices. Default extension: .hie.
Therefore, user needs to load 4 files (network, partition, cluster, hierarchy) to reconstruct the saved substructures.
igraph