-
Notifications
You must be signed in to change notification settings - Fork 11
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
transitivity of reference and position with begin/end #27
Comments
Currently these are not transitive. A new transitive begin property could be mined, but I am not sure about the real use case? The cases where we thought this would happen is when you don't know the start and end precisely. |
transitivity of begin is provable (given my formal definition of begin) - do you have a counter-example where it isn't? What we can do is make a bridge to RO which has a more complete axiomatization. I think we can declare faldo:begin to be an equivalentProperty of This part of RO hasn't been as well fleshed out as the temporal counterpart: |
@cmungall I was worrying that changing the begin to be transitive, would give an issue with inexact positions. But that won't happen as they use the after/before predicates instead of begin/end. |
@nlwashington there is now a branch#27 that contains the change. Would you mind testing it to make sure it works as intended. |
In the example below, I have two features that are defined by regions that span 500-600 and 1000-2000 on the same reference. Then, I want to add a new feature's region (mybigregion) that is defined in terms of those other regions. But at the time that I process mybigregion, I don't know the coordinates of the 5prime and 3prime regions, I only know the ids of those regions. I want it to represent the region that could be computed to span 500-2000. Right now, I can say the following:
What is the status of the transitivity of position and reference for begin/end properties? would the faldo:end of _:my3primeRegion transitively be the faldo:end of _:mybigregion, and similarly for the faldo:begin of the _:my5primeRegion ?
tagging @mbrush, @cmungall
The text was updated successfully, but these errors were encountered: