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

LMS-2803 - Make order of well location coordinates consistent

SVN: 24487
parent 002adb9f
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.getRow(), well.getColumn()), originalOrThumbnail); new Location(well.getColumn(), well.getRow()), 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, tryGetRepresentativeThumbnail(channelCode, new Location(well.getColumn(),
new Location(well.getRow(), well.getColumn()), null); well.getRow()), 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