private void run() throws Exception {
// Create an OWLAPI manager that allows to load an ontology
OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
// Load the ontology file into an OWL ontology object
OWLOntology ontology = manager.loadOntology( IRI.create( file ) );
// Get some figures about the ontology and print them
System.out.println( "The ontology contains "
+ ontology.getLogicalAxiomCount() + " axioms, "
+ ontology.getClassesInSignature().size() + " classes, and "