I've made a FIJI batch script to deconvolve multiple images using the FIJI cookbook plugin. In short I import an image with Bio-formats importer, split into channels and perform operations on each and then merge the channels afterward, saving as an ome.tif.
When I re-import the tif image I get green where the blue channel should be. According to https://www.openmicroscopy.org/community/viewtopic.php?f=6&t=536 this should be because the correct metadata is not present.
The trouble I am having is that altering the metadata using setMetadata("Info", List.getList) doesn't seem to change anything. Are there specific parameter I need to set in List? Was this just not meant to happen? I feel like I've tried everything.
prop = getMetadata("Info");
List.setList(prop);
<< Do stuff here >>
setMetadata("Info", List.getList);