Linking Tables to files
Posted: Fri Oct 29, 2010 8:37 pm
I was able to create an H5 file but now I want to link the table to the image file. How do I do it? I kind of last because FileAnnotation is an abstract class.
The OME community
https://www.openmicroscopy.org/community/
https://www.openmicroscopy.org/community/viewtopic.php?f=6&t=515
image = omero.model.ImageI(imageID, False)
fileAnnotation = omero.model.FileAnnotationI()
annotationLink = omero.model.ImageAnnotationLinkI()
annotationLink.link(image, fileAnnotation)
fileAnnotation.file = omero.model.OriginalFileI(fileID, False)
annotationLink = updateServicePrx.saveAndReturnObject(annotationLink)
icaoberg wrote:Got it working. Thanks.
icaoberg wrote: Is there a way of getting the whole table as a numpy array?