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
A user came across this issue when trying to programatically create TagAnnotations linked under a parent TagSet.
Currently the linkAnnotation function on the Blitz wrapper classes uses the OMERO_CLASS class variable to construct the link object name. Since Annotation wrapper subclasses do not define this variable the function errors out searching for NoneAnnotationLink.
It looks like setting OMERO_CLASS = "Annotation" would fix this particular scenario (we need an AnnotationAnnotationLink), but it's not clear to me if this would cause problems with other functionality in the wrapper.
The text was updated successfully, but these errors were encountered:
I seem to remember the Parent-Child direction of links in TagSet->Tag was not intuitive, but I may have this wrong.
Is it tagset.linkAnnotation(tag) or would it be tag.linkAnnotation(tagset)?
A user came across this issue when trying to programatically create TagAnnotations linked under a parent TagSet.
Currently the linkAnnotation function on the Blitz wrapper classes uses the
OMERO_CLASS
class variable to construct the link object name. SinceAnnotation
wrapper subclasses do not define this variable the function errors out searching forNoneAnnotationLink
.It looks like setting
OMERO_CLASS = "Annotation"
would fix this particular scenario (we need anAnnotationAnnotationLink
), but it's not clear to me if this would cause problems with other functionality in the wrapper.The text was updated successfully, but these errors were encountered: