Skip to content
Snippets Groups Projects
Commit 30a3cdfb authored by pkupczyk's avatar pkupczyk
Browse files

LMS-2777 - Matlab API broken for S122.2 - reverting the x,y switch because we...

LMS-2777  - Matlab API broken for S122.2 - reverting the x,y switch because we are not 100% sure it is safe in all cases

SVN: 24477
parent 51d55409
No related branches found
No related tags found
No related merge requests found
...@@ -506,7 +506,7 @@ public class ImagingDatasetLoader extends HCSDatasetLoader implements IImagingDa ...@@ -506,7 +506,7 @@ public class ImagingDatasetLoader extends HCSDatasetLoader implements IImagingDa
{ {
AbsoluteImageReference image = AbsoluteImageReference image =
tryGetRepresentativeImage(channelCode, tryGetRepresentativeImage(channelCode,
new Location(well.getColumn(), well.getRow()), originalOrThumbnail); new Location(well.getRow(), well.getColumn()), originalOrThumbnail);
if (image != null) if (image != null)
{ {
return image; return image;
...@@ -563,8 +563,8 @@ public class ImagingDatasetLoader extends HCSDatasetLoader implements IImagingDa ...@@ -563,8 +563,8 @@ public class ImagingDatasetLoader extends HCSDatasetLoader implements IImagingDa
for (String channelCode : channelCodes) for (String channelCode : channelCodes)
{ {
AbsoluteImageReference image = AbsoluteImageReference image =
tryGetRepresentativeThumbnail(channelCode, new Location(well.getColumn(), tryGetRepresentativeThumbnail(channelCode,
well.getRow()), null); new Location(well.getRow(), well.getColumn()), null);
if (image != null) if (image != null)
{ {
return image; return image;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment