tibonto / aeon

The Academic Event Ontology (AEON) can be used to represent information regarding academic events.
https://tibonto.github.io/aeon/
Creative Commons Attribution 4.0 International
14 stars 4 forks source link

porposal: replace prefix obo with the ontology prefix #85

Closed andrecastro0o closed 3 years ago

andrecastro0o commented 3 years ago

since OBO is a lookup service a term such as https://github.com/tibonto/aeon/blob/89c95cf1f2246ac9c1b4ac33e1381accd1d9bf96/aeon.ttl#L36-L37

it is not resolvable by a machine, as OBO is look up service, and does not point a script that tries to find out more about the term definition, to the term IRI

So my proposal would be to replace all the obo prefixes with the corresponding ontology perfix, as in

# http://purl.obolibrary.org/obo/bfo/2020/bfo.owl#BFO_0000179 
bfo:BFO_0000179 rdf:type owl:AnnotationProperty .

Or, without the version IRI

# http://purl.obolibrary.org/obo/bfo.owl#BFO_0000179 
bfo:BFO_0000179 rdf:type owl:AnnotationProperty .

I wonder what is the best way to go about this. If parsing by editing the ttl via search and replace, such as:

Or wether protoge can do this task

@StroemPhi what do you think?

andrecastro0o commented 3 years ago

Changes in branch https://github.com/tibonto/aeon/tree/issue85_obo_prefix_replace

andrecastro0o commented 3 years ago

PR https://github.com/tibonto/aeon/pull/86