From 0f6b7f04a726389a1d7ef53b350c1c8308b9c758 Mon Sep 17 00:00:00 2001
From: jakubs <jakubs>
Date: Tue, 25 Sep 2012 09:20:44 +0000
Subject: [PATCH] BIS-204 add a container feature vector type as the analysis
 dataset type in screening constants

SVN: 26786
---
 .../screening/shared/basic/dto/ScreeningConstants.java    | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ScreeningConstants.java b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ScreeningConstants.java
index 844ad606558..e59af7e34df 100644
--- a/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ScreeningConstants.java
+++ b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ScreeningConstants.java
@@ -80,9 +80,15 @@ public class ScreeningConstants
     /** Prefix for types of the dataset which stores image analysis data. */
     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. */
     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
 
-- 
GitLab