-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Selecting a row in table panel loads more than the specific image for preview in case of image-/roi-based OMERO.table input #38
Comments
Hi Anna,
When those aren't found, it's falling back to I guess I need to be clearer about what's expected - or try not to be case-sensitive. |
Hi Will, thanks for looking into this. Just to be clear about the expectations -- is the code expecting a number for "Image" and "ROI" or is a name also being accepted? Because I only have the names and not the OMERO internal IDs of these objects. I tested two things just now:
When the ROI name cannot be resolved within OMERO (because such an ID doesn't exist, I guess), the preview stays empty: In general, being not case-sensitive is always a good idea :-) Regards, Anna |
Ah, yes, Image, ROI columns are expecting OMERO IDs. I'll look at making the column names case-insensitive, but that's not the real problem here... I'd prefer not to add logic into the app to handle Image Names, so instead I thought it would be easiest for a "simple" python script to look up these Image IDs, based on the Well ID and Image Names... So here is a script (below) that will take a csv like yours and replace the "Image" names with IDs, adding an "Image Name" column: Input csv...
Usage:
creates
lookup_image_id_for_well.py
|
I opened a PR #40 to be case-insensitive for various OMERO ID columns (roi, image, well, shape), but I realise that this will produce the same effect as your ROI column renaming above: That column will be interpreted as OMERO IDs and the app will try to show an ROI. So, if we go ahead with that change, you'll need to rename the column to "roi name" or "roi_" or something. |
Hi Will,
to put it into the right repo, I would like to add something already mentioned at the omero-metadata repo (ome/omero-metadata#64).
During tests with omero-metadata to upload either image-based or roi-based data to plates, the following issue was observed with pradade-crossfiler:
When selecting one row of the table view panel of image- or roi-based data, only one specific image should be shown (basically the one, that is selected and highlighted in the scatter plot). However, instead of a single image all fields from the selected well are shown.
This was tested with Firefox and Chrome on a Windows 10 Desktop.
BR, Anna
The text was updated successfully, but these errors were encountered: