/* create the logical URI of the new Abox */
URI newAboxURI = createNewURI(abox.getURI().toString(), rr.getRunNumber());
/* create the physical URI of the new Abox */
URI newAboxPhysicalURI = createNewURI(tmpAboxURI, rr.getRunNumber());
/* Set up a mapping, which maps the ontology URI to the physical URI */
SimpleURIMapper mapper = new SimpleURIMapper(newAboxURI, newAboxPhysicalURI);
manager.addURIMapper(mapper);
/* Create a new Abox to store the newly inferred instance relations and the Abox used in the current run */
modifiedAbox = manager.createOntology(newAboxURI);
manager.addAxioms(modifiedAbox, abox.getAxioms());