-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding a relationship between two terms #84
Comments
Hi @neobernad currently there's no recommended way of doing it, mostly because I haven't taken the time to write a custom mapping class for the Note that I'm currently refactoring some parts of the parser interface, but I'll try to see what I can do before the next release. |
However, if for the time being you really really need that feature, you can achieve that by fondling with pronto's internals (this is not guaranteed to work in the next versions but should at least work now). Subclassesont: Ontology = pronto.Ontology()
ont.create_term("ONT:001")
ont.create_term("ONT:002")
ont._inheritance["ONT:001"].sub.add("ONT:002") # register ONT:002 as a subclass of ONT:001
ont._inheritance["ONT:002"].sup.add("ONT:001") # register ONT:001 as a superclass of ONT:002 Note that you must do both, otherwise Relationshipsont: Ontology = pronto.Ontology()
ont.create_term("ONT:001")
ont.create_term("ONT:002")
better_than = ont.create_relationship("better_than")
ont["ONT:002"].relationships = {better_than: {"ONT:001"}} Same, if you want to be semantically coherent, you'd need to take into account whether the relation is symmetric etc. |
Hi @althonos! Thanks for the solution and your quick response, it worked for me, I really needed to establish the relationships. |
Hi @neobernad ,
For relationships, the snippet I wrote in the previous answer is the recommended way for now. |
Hello @althonos, Thank you so much, this is really helpful. I will do it this way now! |
Hi,
According to the docs I can see how I could create a relationship, however I do not manage to link two terms with a relationship. I would like to achieve something like:
Is this possible somehow?
Thanks,
José Antonio
The text was updated successfully, but these errors were encountered: