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

fix dataset registration when channel code contains space (should fix integration tests)

SVN: 22944
parent 8f5ea900
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ package ch.systemsx.cisd.openbis.dss.etl;
import ch.systemsx.cisd.base.image.IImageTransformerFactory;
import ch.systemsx.cisd.bds.hcs.Location;
import ch.systemsx.cisd.common.utilities.AbstractHashable;
import ch.systemsx.cisd.openbis.generic.shared.basic.CodeNormalizer;
/**
* Describes properties extracted for one logical screening image (note that one file can contain
......@@ -54,7 +55,7 @@ public class AcquiredSingleImage extends AbstractHashable
{
this.wellLocationOrNull = wellLocationOrNull;
this.tileLocation = tileLocation;
this.channelCode = channelCode.toUpperCase();
this.channelCode = CodeNormalizer.normalize(channelCode);
this.timePointOrNull = timePointOrNull;
this.depthOrNull = depthOrNull;
this.seriesNumberOrNull = seriesNumberOrNull;
......
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