You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I think it would be great if the CAS API in cassis would also offer predicates such as "contains" or "overlaps" to check the positional relation between two annotations to each other.
Describe the solution you'd like
A solution similar to apache/uima-uimaj#62 which provides these predicates on two places:
on annotation types, e.g. to do something like sentence.contains(token)
as separate utility methods, e.g. to do something like contains(sentence, token)
with different signature, e.g. contains(begin1, end1, begin2, end2), contains(annotation1, begin2, end2), contains(annotation1, annotation2)
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I think it would be great if the CAS API in cassis would also offer predicates such as "contains" or "overlaps" to check the positional relation between two annotations to each other.
Describe the solution you'd like
A solution similar to apache/uima-uimaj#62 which provides these predicates on two places:
sentence.contains(token)
contains(sentence, token)
contains(begin1, end1, begin2, end2), contains(annotation1, begin2, end2), contains(annotation1, annotation2)
The text was updated successfully, but these errors were encountered: