Skip to content
Snippets Groups Projects
Commit 3126c9ec authored by juanf's avatar juanf
Browse files

SSDM-1070 : PAPER - OPENBIS - Migrate Manage Properties YeastLab (Configurable)

SVN: 33391
parent f5294f33
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,18 @@ configuration["GENERAL_PROTOCOL"] = { ...@@ -14,6 +14,18 @@ configuration["GENERAL_PROTOCOL"] = {
"GENERAL_PROTOCOL" : {"NAME" : False } "GENERAL_PROTOCOL" : {"NAME" : False }
}; };
configuration["MEDIA"] = {
"CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
"SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False },
"MEDIA" : {"QUANTITY" : False, "NAME" : False }
};
configuration["PCR"] = {
"CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
"SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False },
"ENZYMES" : {"NAME" : False }
};
#Global Variables #Global Variables
annotableType = "<REPLACE_WITH_ANNOTABLE_TYPE>" annotableType = "<REPLACE_WITH_ANNOTABLE_TYPE>"
server = CommonServiceProvider.getCommonServer() server = CommonServiceProvider.getCommonServer()
......
...@@ -26,6 +26,35 @@ definitions = { ...@@ -26,6 +26,35 @@ definitions = {
"GENERAL_PROTOCOL" : { "GENERAL_PROTOCOL" : {
"name" : "NAME" "name" : "NAME"
} }
},
"MEDIA" :
{
"CHEMICALS" : {
"concentration" : "QUANTITY",
"name" : "NAME"
},
"SOLUTIONS_BUFFERS" : {
"concentration" : "QUANTITY",
"name" : "NAME"
},
"MEDIA" : {
"concentration" : "QUANTITY",
"name" : "NAME"
}
},
"PCR" :
{
"CHEMICALS" : {
"quantity" : "QUANTITY",
"name" : "NAME"
},
"SOLUTIONS_BUFFERS" : {
"quantity" : "QUANTITY",
"name" : "NAME"
},
"ENZYMES" : {
"name" : "NAME"
}
} }
}; };
......
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