}
if (firstOntologyGraph[0] == null) {
return;
}
this.main.log("Merging ontologies...");
IOntologyComparator ontologyComparator = new OntologyComparator(firstOntologyGraph[0], secondOntologyGraph, this.main);
IOntologyGraph ontologyGraph = ontologyComparator.mapOntologies().getFirst();
int similarity = (int) (ontologyComparator.getSimilarity() * 100);
final IGraphModelBuilder myGraphModelBuilder =
new GraphModelBuilder(firstOntologyGraph[0], secondOntologyGraph, ontologyGraph, similarity, this.main);
this.main.log("Visualising ontologies...");
GraphModel graphModel = myGraphModelBuilder.buildGraphModel(main.getGraphPane(), main.areUnmappedConceptsVisible(), main.areUnmappedConceptsWithSynsetsVisible());
OWLOntologyManager manager = OWLManager.createOWLOntologyManager();