// Create a manager to work with
OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
// Load the MGED ontology. There is a copy of the MGED ontology located
// at the address pointed to by its ontology IRI (this is good practice
// and is recommended in the OWL 2 spec).
OWLOntology ontology = manager.loadOntology(mgedOntologyIri);
// Print out the ontology IRI and its imported ontology IRIs
printOntologyAndImports(manager, ontology);
// We'll load the MGED ontology again, but this time, we'll get the
// Protege ontology (that it imports) from the TONES repository. To tell
// the ontology manager to do this we need to add an IRI mapper. We need