use of edu.ucsf.rbvi.clusterMaker2.internal.ui.NewNetworkView in project clusterMaker2 by RBVI.
the class AbstractNetworkFilter method run.
public void run(TaskMonitor monitor) {
monitor.setTitle("Filtering using " + getName());
this.monitor = monitor;
if (network == null)
network = clusterManager.getNetwork();
clusterAttributeName = getClusterAttributeName();
// get the cluster list
List<NodeCluster> clusterList = AbstractNetworkClusterer.getNodeClusters(network, getClusterAttribute());
List<NodeCluster> newClusterList = new ArrayList<NodeCluster>();
Map<NodeCluster, List<CyNode>> addedNodeMap = new HashMap<NodeCluster, List<CyNode>>();
// Iterate over clusters and build a new clusterList
for (NodeCluster nodeList : clusterList) {
NodeCluster newCluster = doFilter(nodeList, addedNodeMap);
if (newCluster != null && newCluster.size() > 0)
newClusterList.add(newCluster);
}
// Fixup our clusters
if (addedNodeMap.size() > 0) {
// until this stabelized...
for (NodeCluster addedCluster : addedNodeMap.keySet()) {
for (NodeCluster cluster : newClusterList) {
if (cluster.equals(addedCluster))
continue;
removeNodes(cluster, addedNodeMap.get(addedCluster));
}
}
}
monitor.showMessage(TaskMonitor.Level.INFO, "Removing groups");
// Remove any leftover groups from previous runs
removeGroups(network, groupAttribute);
monitor.showMessage(TaskMonitor.Level.INFO, "Creating groups");
List<List<CyNode>> nodeClusters = createGroups(network, newClusterList, groupAttribute);
results = new AbstractClusterResults(network, clusterList);
ClusterResults results2 = new AbstractClusterResults(network, newClusterList);
monitor.showMessage(TaskMonitor.Level.INFO, "Done. Results:\n\nBefore Filter:\n" + results + "\n\nAfter Filter:\n" + results2);
if (showUI()) {
monitor.showMessage(TaskMonitor.Level.INFO, "Creating network");
insertTasksAfterCurrentTask(new NewNetworkView(network, clusterManager, true, restoreEdges(), false));
}
}
Aggregations