retrieving well data via Java API
Posted: Wed Jun 13, 2012 10:19 pm
I have some screens with plates loaded in on the server side. I am trying to write code that will list images for each of the plates in the screens. From the example at https://github.com/openmicroscopy/openm ... dData.java it appears that I must
1. retrieve ScreenData objects
2. given a ScreenData object I must then retrieve PlateData objects
3. retrieve WellData objects for a plate, via a direct SQL query
Is there no way to access well image data via something like
ParametersI pi = new ParametersI();
pi.leaves();
List<IObject> imageResults = proxy.loadContainerHierarchy(PlateData.class.getName(),
Arrays.asList(plate.getId()), param);
Will access to a WellData object let me access images associated with the well? or should I go about this in a different manner?
In general, are there any resources for a person new to the OME data model?
1. retrieve ScreenData objects
2. given a ScreenData object I must then retrieve PlateData objects
3. retrieve WellData objects for a plate, via a direct SQL query
Is there no way to access well image data via something like
ParametersI pi = new ParametersI();
pi.leaves();
List<IObject> imageResults = proxy.loadContainerHierarchy(PlateData.class.getName(),
Arrays.asList(plate.getId()), param);
Will access to a WellData object let me access images associated with the well? or should I go about this in a different manner?
In general, are there any resources for a person new to the OME data model?