this.dataManager.clearExperimentData(graph);
this.dataManager.associateExperimentData(graph);
if (graph.getLastAppliedColoring() != null)
{
graph.setLastAppliedColoring(null);
new ColorWithExperimentAction(main, graph, dataManager.getType()).run();
}
}
BioPAXGraph currentGraph = main.getPathwayGraph();
if (currentGraph != null && currentGraph.getLastAppliedColoring() == null)
{
new ColorWithExperimentAction(main, currentGraph, dataManager.getType()).run();
}
shell.dispose();
}
}