Skip to content

Commit f880092

Browse files
authored
Merge pull request #305 from melissalinkert/mcd-channel-name
MCD: swap Channel.Name and Channel.Fluor
2 parents 5382161 + f9a68d1 commit f880092

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/glencoesoftware/bioformats2raw/MCDReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ protected void initFile(String id) throws FormatException, IOException {
300300
// exposes both the name and label (which are often slightly different)
301301
// and this is the easiest way to do that in OME/OMERO model
302302
int channelIndex = getPlaneIndex(c);
303-
store.setChannelName(channel.name, imageIndex, channelIndex);
304-
store.setChannelFluor(channel.label, imageIndex, channelIndex);
303+
store.setChannelName(channel.label, imageIndex, channelIndex);
304+
store.setChannelFluor(channel.name, imageIndex, channelIndex);
305305
}
306306
}
307307
setSeries(0);

0 commit comments

Comments
 (0)