Skip to content
Snippets Groups Projects
Commit 2248742c authored by tpylak's avatar tpylak
Browse files

LMS-2608 add sql queries to ask about wells with images

SVN: 23452
parent 7f326072
No related branches found
No related tags found
No related merge requests found
...@@ -87,6 +87,12 @@ public interface IImagingReadonlyQueryDAO extends BaseQuery ...@@ -87,6 +87,12 @@ public interface IImagingReadonlyQueryDAO extends BaseQuery
// " and CHANNEL_STACKS.T_in_SEC IS NULL " // " and CHANNEL_STACKS.T_in_SEC IS NULL "
// + " and CHANNEL_STACKS.Z_in_M IS NULL "; // + " and CHANNEL_STACKS.Z_in_M IS NULL ";
public static final String SQL_HCS_WELLS_WITH_IMAGES =
"select distinct s.* "
+ "from CHANNEL_STACKS ch, SPOTS s, ACQUIRED_IMAGES ai "
+ "where ch.is_representative = 'T' and ch.DS_ID = ?{1} and "
+ " ai.CHANNEL_STACK_ID = ch.ID and ch.SPOT_ID = s.ID";
// ---------------- HCS --------------------------------- // ---------------- HCS ---------------------------------
/** /**
...@@ -138,6 +144,21 @@ public interface IImagingReadonlyQueryDAO extends BaseQuery ...@@ -138,6 +144,21 @@ public interface IImagingReadonlyQueryDAO extends BaseQuery
+ " where d.perm_id = ?{1} and ch.code = upper(?{2}) and s.id is NOT NULL") + " where d.perm_id = ?{1} and ch.code = upper(?{2}) and s.id is NOT NULL")
public List<ImgImageEnrichedDTO> listHCSImages(String datasetPermId, String channelCode); public List<ImgImageEnrichedDTO> listHCSImages(String datasetPermId, String channelCode);
/**
* @return list of wells for which there are any thumbnail or original images (any tile, any
* channel).
*/
@Select(SQL_HCS_WELLS_WITH_IMAGES)
public List<ImgSpotDTO> listWellsWithAnyImages(long datasetId);
/** @return list of wells for which there are any thumbnail images (any tile, any channel). */
@Select(SQL_HCS_WELLS_WITH_IMAGES + " and ai.thumbnail_id is not null")
public List<ImgSpotDTO> listWellsWithAnyThumbnails(long datasetId);
/** @return list of wells for which there are any original images (any tile, any channel). */
@Select(SQL_HCS_WELLS_WITH_IMAGES + " and ai.img_id is not null")
public List<ImgSpotDTO> listWellsWithAnyOriginalImages(long datasetId);
// ---------------- Microscopy --------------------------------- // ---------------- Microscopy ---------------------------------
/** /**
......
...@@ -40,9 +40,8 @@ public class ImgSpotDTO extends AbstractImgIdentifiable ...@@ -40,9 +40,8 @@ public class ImgSpotDTO extends AbstractImgIdentifiable
// All Data-Object classes must have a default constructor. // All Data-Object classes must have a default constructor.
} }
public ImgSpotDTO(/* String permId, */Integer row, Integer column, long containerId) public ImgSpotDTO(Integer row, Integer column, long containerId)
{ {
/* this.permId = permId; */
this.column = column; this.column = column;
this.row = row; this.row = row;
this.containerId = containerId; this.containerId = containerId;
......
...@@ -247,9 +247,32 @@ public class ImagingQueryDAOTest extends AbstractDBTest ...@@ -247,9 +247,32 @@ public class ImagingQueryDAOTest extends AbstractDBTest
addAcquiredImage(imageId2, channelStackId, experimentChannelId2); addAcquiredImage(imageId2, channelStackId, experimentChannelId2);
testGetHCSImage(datasetId, channelStackId, datasetChannelId1, experimentChannelId2, spotId); testGetHCSImage(datasetId, channelStackId, datasetChannelId1, experimentChannelId2, spotId);
testGetAnyHCSImage(datasetId);
testListChannelStacksAndSpots(datasetId, channelStackId, spotId); testListChannelStacksAndSpots(datasetId, channelStackId, spotId);
} }
private void testGetAnyHCSImage(long datasetId)
{
List<ImgSpotDTO> anyImgSpots = dao.listWellsWithAnyImages(datasetId);
assertEquals(1, anyImgSpots.size());
ImgSpotDTO spot = anyImgSpots.get(0);
assertDefaultSpot(spot);
List<ImgSpotDTO> thumbnailImgSpots = dao.listWellsWithAnyThumbnails(datasetId);
assertEquals(1, thumbnailImgSpots.size());
assertEquals(spot, thumbnailImgSpots.get(0));
List<ImgSpotDTO> originalImgSpots = dao.listWellsWithAnyOriginalImages(datasetId);
assertEquals(1, originalImgSpots.size());
assertEquals(spot, originalImgSpots.get(0));
}
private void assertDefaultSpot(ImgSpotDTO spot)
{
assertEquals(X_WELL_COLUMN, 0L + spot.getColumn());
assertEquals(Y_WELL_ROW, 0L + spot.getRow());
}
private void testListChannelStacksAndSpots(long datasetId, long channelStackId, long spotId) private void testListChannelStacksAndSpots(long datasetId, long channelStackId, long spotId)
{ {
ImgChannelStackDTO stackDTO = testListChannelStacks(datasetId, channelStackId); ImgChannelStackDTO stackDTO = testListChannelStacks(datasetId, channelStackId);
......
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