Skip to content

Commit

Permalink
Bug fix: mondo#ABBREVIATION
Browse files Browse the repository at this point in the history
- URI stem needed capitalization
  • Loading branch information
joeflack4 committed Sep 18, 2024
1 parent 0f30e3a commit 28c2a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omim2obo/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def omim2obo(use_cache: bool = False):
graph.add((axiom, OWL.annotatedSource, omim_uri))
graph.add((axiom, OWL.annotatedProperty, oboInOwl.hasExactSynonym))
graph.add((axiom, OWL.annotatedTarget, Literal(abbreviation)))
graph.add((axiom, OBOINOWL.hasSynonymType, MONDONS.abbreviation))
graph.add((axiom, OBOINOWL.hasSynonymType, MONDONS.ABBREVIATION))

# Add 'included' entry properties
included_detected_comment = "This term has one or more labels that end with ', INCLUDED'."
Expand Down

0 comments on commit 28c2a65

Please sign in to comment.