From cb5bc90c4c583971807ffd70d01057aa3e3c5db6 Mon Sep 17 00:00:00 2001
From: barillac <barillac>
Date: Wed, 16 Jul 2014 07:52:20 +0000
Subject: [PATCH] Ciaudo profile created

SVN: 32070
---
 .../html/js/config/CiaudoLabProfile.js        | 141 ++++++++++++++++++
 1 file changed, 141 insertions(+)
 create mode 100644 plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/CiaudoLabProfile.js

diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/CiaudoLabProfile.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/CiaudoLabProfile.js
new file mode 100644
index 00000000000..c7ebee87d63
--- /dev/null
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/config/CiaudoLabProfile.js
@@ -0,0 +1,141 @@
+
+function StoffelLabProfile(serverFacade) {
+	this.init(serverFacade);
+}
+
+$.extend(StoffelLabProfile.prototype, DefaultProfile.prototype, {
+	init: function(serverFacade){
+		DefaultProfile.prototype.init.call(this, serverFacade);
+		
+	
+		//Use this with all known types to create groups, if a type is not specified by default will be added to the OTHERS group.
+		this.inventorySpaces = ["INVENTORY"];
+		this.isShowUnavailablePreviewOnSampleTable = true;
+		this.typeGroups = {
+			"MATERIALS" : {
+				"TYPE" : "MATERIALS",
+				"DISPLAY_NAME" : "Materials",
+				"LIST" : ["INHIBITOR", "ANTIBODY",]
+			},
+			"SAMPLES" : {
+				"TYPE" : "SAMPLES",
+				"DISPLAY_NAME" : "Samples",
+				"LIST" : ["CELL_LINE", "PLASMID"]
+			},
+			"METHODS" : {
+				"TYPE" : "METHODS",
+				"DISPLAY_NAME" : "Methods",
+				"LIST" : ["PROTOCOL"]
+			},
+			"OTHERS" : {
+				"TYPE" : "OTHERS",
+				"DISPLAY_NAME" : "Others",
+				"LIST" : [] 
+			}
+		};
+
+			
+
+		this.getSpaceForSampleType = function(type) {
+			if(type === "ANTIBODY") {
+				return "INVENTORY";
+			} else if(type === "PLASMID") {
+				return "INVENTORY";
+			} else if(type === "INHIBITOR") {
+				return "INVENTORY";
+			} else if(type === "CELL_LINE") {
+				return "INVENTORY";
+			} else {
+				return null;
+			}
+		}	
+	
+
+		this.getExperimentIdentifierForSample = function(type, code, properties) {
+			if(type === "ANTIBODY") {
+				return "/INVENTORY/SAMPLES/ANTIBODIES";
+			} else if(type === "PLASMID") {
+				return "/INVENTORY/SAMPLES/PLASMIDS";
+			} else if(type === "INHIBITOR") {
+				return "/INVENTORY/SAMPLES/INHIBITORS";
+			} else if(type === "CELL_LINE") {
+				return "/INVENTORY/SAMPLES/CELL_LINES";
+			} else {
+				return null;
+			}
+		}
+
+		this.storagesConfiguration = {
+				"isEnabled" : true,
+				/*
+				 * Should be the same across all storages, if not correct behaviour is not guaranteed.
+				*/
+				"STORAGE_PROPERTIES": [{
+					"STORAGE_PROPERTY_GROUP" : "Storage", //Where the storage will be painted.
+					"STORAGE_GROUP_DISPLAY_NAME" : "Storage Group 1", //Storage Group Name
+					"NAME_PROPERTY" : "FREEZER_NAME", //Should be a Vocabulary.
+					"ROW_PROPERTY" : "ROW", //Should be an integer.
+					"COLUMN_PROPERTY" : "COLUMN",  //Should be an integer.
+					"BOX_PROPERTY" : "BOX_NUMBER", //Should be text.
+					"USER_PROPERTY" : "USER_PROPERTY" //Should be text.
+				}],
+				/*
+				 * Storages map, can hold configurations for several storages.
+				*/
+				"STORAGE_CONFIGS": {
+					"MINUS80_1" : { //Freezer name given by the NAME_PROPERTY
+									"ROW_NUM" : 5, //Number of rows
+									"COLUMN_NUM" : 4, //Number of columns
+									"BOX_NUM" : 9999 //Boxes on each rack, used for validation, to avoid validation increase the number to 9999 for example
+								},
+					"BENCH" : { //Freezer name given by the NAME_PROPERTY
+									"ROW_NUM" : 1, //Number of rows
+									"COLUMN_NUM" : 1, //Number of columns
+									"BOX_NUM" : 99999 //Boxes on each rack, used for validation, to avoid validation increase the number to 9999 for example
+								}
+				}
+			};
+	
+		/* New Sample definition tests*/
+		this.sampleTypeDefinitionsExtension = {
+				"PLASMID_EXPRESSION" : {
+					"SAMPLE_PARENTS_HINT" : [
+					                             	{
+														"LABEL" : "Protocol",
+														"TYPE": "PROTOCOL",
+														"MIN_COUNT" : 1,
+														"ANNOTATION_PROPERTIES" : []
+													}
+													,
+													{
+														"LABEL" : "Plasmid",
+														"TYPE": "PLASMID",
+														"MIN_COUNT" : 1,
+														"ANNOTATION_PROPERTIES" : []
+													}
+													,
+													{
+														"LABEL" : "Inhibitor",
+														"TYPE": "INHIBITOR",
+														"MIN_COUNT" : 1,
+														"ANNOTATION_PROPERTIES" : []
+													}
+													,
+													{
+														"LABEL" : "Cell Line",
+														"TYPE": "CELL_LINE",
+														"MIN_COUNT" : 1,
+														"ANNOTATION_PROPERTIES" : []
+													}
+												],
+				}
+		}
+
+		
+		//The properties you want to appear on the tables, if you donÇt specify the list, all of them will appear by default.
+		this.typePropertiesForTable = {};
+		
+		//The colors for the notes, if you donÇt specify the color, light yellow will be used by default.
+		this.colorForInspectors = {};
+}
+});
\ No newline at end of file
-- 
GitLab