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

minor: image extractor: make plate and dataset code comparission case insensitive

SVN: 16641
parent 74105545
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ abstract public class AbstractHCSImageFileExtractor implements IHCSImageFileExtr
}
final String sampleCode = tokens[tokens.length - 4];
if (sampleCode != null
&& sampleCode.equals(dataSetInformation.getSampleCode()) == false)
&& sampleCode.equalsIgnoreCase(dataSetInformation.getSampleCode()) == false)
{
if (operationLog.isDebugEnabled())
{
......
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