Hello Sebastien,
Thanks for your feedback. I think I need to explain a little better what I want to accomplish.
Basically the idea is to keep using Omero Insight. Right now the extra custom meta data which I store through:
- Code: Select all
in.seek(HEADER_SIZE);
addGlobalMeta("a_tilt", in.readFloat());
addGlobalMeta("b_tilt", in.readFloat());
addGlobalMeta("x_stage", in.readFloat());
addGlobalMeta("y_stage", in.readFloat());
addGlobalMeta("z_stage", in.readFloat());
addGlobalMeta("x_shift", in.readFloat());
addGlobalMeta("y_shift", in.readFloat());
addGlobalMeta("defocus", in.readFloat());
addGlobalMeta("exp_time", in.readFloat());
addGlobalMeta("mean_int", in.readFloat());
addGlobalMeta("tilt_axis", in.readFloat());
addGlobalMeta("pixel_size", in.readFloat());
addGlobalMeta("magnification", in.readFloat());
addGlobalMeta("ht", in.readFloat());
addGlobalMeta("binning", in.readFloat());
addGlobalMeta("appliedFocus", in.readFloat());
I can already see when I check Insight for the meta data.
However, what I really want now, is that when you perform a search in InSight, I can either search for the keyword "x_stage" or for its value, and then it will recover this record. I know I can manage this by manually converting all meta data into actual key/value pairs in Insight, or by creating tags or description.
So basically I want to avoid having to do all this manually, but at the same time as making meta data, I would like to make either tags or key/value pairs for this MRC record.
So in short, I can already retrieve the meta data, that is not the issue. I need to convert this meta data in searchable tags or key/value pairs such that the search option in Insight will actually find the MRC records based on my keywords which reflect one or more of the custom meta data I entered. And it would be great if I could insert these tags or key/value pairs at the same time I am adding the meta data, so in the Bio-Formats library.
Thank you and regards,
KVerbist