Skip to content

Commit

Permalink
Merge pull request #380 from nanglo123/add_rdf_subclass_refinement
Browse files Browse the repository at this point in the history
Add "rdfs:subclassof" as a refinement relation
  • Loading branch information
bgyori authored Oct 3, 2024
2 parents 7a9b2e4 + 099b924 commit 86e72e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mira/dkg/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ class MiraState:
]

#: A list of all relation types that are considered refinement relations
DKG_REFINER_RELS = ["subclassof", "part_of"]
# Must enclose relation types with ":" with backtick (`)
DKG_REFINER_RELS = ["`rdfs:subclassof`", "subclassof", "part_of"]

#: The root path of the MIRA app when running in a container
DOCKER_FILES_ROOT = Path("/sw")

0 comments on commit 86e72e7

Please sign in to comment.