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

bugfix: filtering datasets by analysis procedure in WellSearch

SVN: 22497
parent 79cea6b8
No related branches found
No related tags found
No related merge requests found
......@@ -215,12 +215,16 @@ class HCSImageDatasetLoader extends PlateDatasetLoader
// sets, if they exist.
for (ExternalData child : filteredChildrenDataSets)
{
List<ExternalData> parentImageDatasets = childIdToParentDataSetsMap.get(child.getId());
if (parentImageDatasets != null)
Long childId = child.getId();
if (childrenDataSets.containsKey(childId))
{
child.setParents(parentImageDatasets);
List<ExternalData> parentImageDatasets = childIdToParentDataSetsMap.get(childId);
if (parentImageDatasets != null)
{
child.setParents(parentImageDatasets);
}
childrenDataSets.put(childId, child);
}
childrenDataSets.put(child.getId(), child);
}
}
......
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