← Revision 10 as of 2006-02-28 02:11:41
Size: 895
Comment:
|
← Revision 11 as of 2006-02-28 02:14:55 →
Size: 1117
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 23: | Line 23: |
Notes: 1 I decided to name the interfaces in this API using the "group" word instead of the "MetaNode" word. A "MetaNode" is a way of grouping nodes/edges in a graph. The more general concept here is grouping. 2 |
Please review the Java-Docs at http://db.systemsbiology.net/cytoscape/grouping/doc/ and comment.
To give you a better idea of how the interfaces work together, here is an example:
Example 1. Algorithm calculated groups:
{{{CyNetwork [] groups = someAlgorithm.calculateGroups(someArgs); groupManager.addGroupsToNetwork(myNetwork); GroupingStrategy collapsingStrategy =
GroupingStrategyFactory.createGroupingStrategy(GroupingStrategyFactory.COLLAPSING_STRATEGY);
GroupingStrategy stackingStrategy =
GroupingStrategyFactory.createGroupingStrategy(GroupingStrategyFactory.STACKING_STRATEGY);
for(int i = 0; i < groups.length; i++){
if(groups[i].nodeCount() > SOME_LIMIT){
- collapsingStrategy.group(myNetwork,groups[i]); // this collapses the groups
- stackingStrategy.group(myNetwork,groups[i]); // this aligns the nodes in a stack
}
}}}
Notes: