Skip to content
Snippets Groups Projects
Commit 0f6b7f04 authored by jakubs's avatar jakubs
Browse files

BIS-204 add a container feature vector type as the analysis dataset type in screening constants

SVN: 26786
parent 730489b9
No related branches found
No related tags found
No related merge requests found
...@@ -80,9 +80,15 @@ public class ScreeningConstants ...@@ -80,9 +80,15 @@ public class ScreeningConstants
/** Prefix for types of the dataset which stores image analysis data. */ /** Prefix for types of the dataset which stores image analysis data. */
public static final String HCS_ANALYSIS_DATASET_TYPE_PREFIX = "HCS_ANALYSIS_WELL"; public static final String HCS_ANALYSIS_DATASET_TYPE_PREFIX = "HCS_ANALYSIS_WELL";
/** Prefix for types of the dataset which stores image analysis data. */
public static final String HCS_ANALYSIS_CONTAINER_DATASET_TYPE_PREFIX =
"HCS_ANALYSIS_CONTAINER_WELL";
/** Type of the dataset which stores image analysis data, there should be at most one. */ /** Type of the dataset which stores image analysis data, there should be at most one. */
public static final String HCS_IMAGE_ANALYSIS_DATASET_TYPE_PATTERN = "HCS_IMAGE_ANALYSIS_DATA|" // legacy public static final String HCS_IMAGE_ANALYSIS_DATASET_TYPE_PATTERN = "HCS_IMAGE_ANALYSIS_DATA|" // legacy
+ (HCS_ANALYSIS_DATASET_TYPE_PREFIX + ".*"); + (HCS_ANALYSIS_DATASET_TYPE_PREFIX + ".*")
+ "|"
+ HCS_ANALYSIS_CONTAINER_DATASET_TYPE_PREFIX + ".*";
// --- HCS sample types // --- HCS sample types
......
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