forked from ontoportal/owlapi_wrapper
-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
When determining the version number for OWL format ontologies, the current code uses the owl:versionInfo annotation property:
| OWLAnnotationProperty versionAnnotationProperty = factory.getOWLAnnotationProperty(OWLRDFVocabulary.OWL_VERSION_INFO.getIRI()); |
This was the standard location for storing version numbers in OWL 1 ontologies, but in OWL 2 the standard is Version IRI:
https://www.w3.org/TR/owl2-syntax/#Ontology_IRI_and_Version_IRI
Code should perhaps be modified to favor Version IRI, then versionInfo as a fallback.
See also: ncbo/bioportal-project#168