Hi,
Your best bet is to add rows to your table that reference individual Images in your plate.
So, use an ImageColumn as the first column, then additional columns for each parameter of that Image. This is the convention used when we store various analysis data for HCS.
Have a look at:
https://github.com/openmicroscopy/openm ... ate_roi.pyE.g. you can get the images from your Plate:
https://github.com/openmicroscopy/openm ... oi.py#L446However, I guess you could also reference ROIs (RoiColumn) or Wells if that makes more sense. See
http://hudson.openmicroscopy.org.uk/job ... /grid.htmlIt should be noted that we don't really support the display of OMERO.tables data in our clients, so it's more of a storage facility for API access. However, we intend to improve support for OMERO.tables in our clients in due course.
If the populate_roi.py code above is too much, have another look at the OmeroPy example I sent you earlier,
http://trac.openmicroscopy.org.uk/ome/w ... MEROtables for how to attach the table to a Plate. (just put Plate instead of Dataset in these lines:
- Code: Select all
link = omero.model.DatasetAnnotationLinkI()
link.setParent(omero.model.DatasetI(datasetId, False))