Skip to content
Snippets Groups Projects
Commit 77f0e182 authored by juanf's avatar juanf
Browse files

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

SVN: 33397
parent d44f30ac
No related branches found
No related tags found
No related merge requests found
...@@ -15,9 +15,9 @@ configuration["GENERAL_PROTOCOL"] = { ...@@ -15,9 +15,9 @@ configuration["GENERAL_PROTOCOL"] = {
}; };
configuration["MEDIA"] = { configuration["MEDIA"] = {
"CHEMICALS" : {"QUANTITY" : False, "NAME" : False }, "CHEMICALS" : {"CONCENTRATION" : False, "NAME" : False },
"SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False }, "SOLUTION_BUFFERS" : {"CONCENTRATION" : False, "NAME" : False },
"MEDIA" : {"QUANTITY" : False, "NAME" : False } "MEDIA" : {"CONCENTRATION" : False, "NAME" : False }
}; };
configuration["PCR"] = { configuration["PCR"] = {
...@@ -41,10 +41,20 @@ configuration["RESULT"] = { ...@@ -41,10 +41,20 @@ configuration["RESULT"] = {
}; };
configuration["SOLUTION_BUFFERS"] = { configuration["SOLUTION_BUFFERS"] = {
"CHEMICALS" : {"CONCENTRATION" : False, "NAME" : False },
"SOLUTION_BUFFERS" : {"CONCENTRATION" : False, "NAME" : False }
};
configuration["WESTERN_BLOTTING"] = {
"CHEMICALS" : {"QUANTITY" : False, "NAME" : False }, "CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
"SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False } "SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False },
"ANTIBODY" : {"QUANTITY" : False, "NAME" : False }
};
configuration["YEAST"] = {
"PLASMIDS" : {"ANNOTATION" : False, "RELATIONSHIP" : False }
}; };
#Global Variables #Global Variables
annotableType = "<REPLACE_WITH_ANNOTABLE_TYPE>" annotableType = "<REPLACE_WITH_ANNOTABLE_TYPE>"
server = CommonServiceProvider.getCommonServer() server = CommonServiceProvider.getCommonServer()
......
...@@ -30,15 +30,15 @@ definitions = { ...@@ -30,15 +30,15 @@ definitions = {
"MEDIA" : "MEDIA" :
{ {
"CHEMICALS" : { "CHEMICALS" : {
"concentration" : "QUANTITY", "concentration" : "CONCENTRATION",
"name" : "NAME" "name" : "NAME"
}, },
"SOLUTIONS_BUFFERS" : { "SOLUTIONS_BUFFERS" : {
"concentration" : "QUANTITY", "concentration" : "CONCENTRATION",
"name" : "NAME" "name" : "NAME"
}, },
"MEDIA" : { "MEDIA" : {
"concentration" : "QUANTITY", "concentration" : "CONCENTRATION",
"name" : "NAME" "name" : "NAME"
} }
}, },
...@@ -88,13 +88,35 @@ definitions = { ...@@ -88,13 +88,35 @@ definitions = {
"SOLUTIONS_BUFFERS" : "SOLUTIONS_BUFFERS" :
{ {
"CHEMICALS" : { "CHEMICALS" : {
"concentration" : "QUANTITY", "concentration" : "CONCENTRATION",
"name" : "NAME" "name" : "NAME"
}, },
"SOLUTIONS_BUFFERS" : { "SOLUTIONS_BUFFERS" : {
"concentration" : "QUANTITY", "concentration" : "CONCENTRATION",
"name" : "NAME" "name" : "NAME"
} }
},
"WESTERN_BLOTTING" :
{
"ANTIBODY" : {
"quantity" : "QUANTITY",
"name" : "NAME"
},
"CHEMICALS" : {
"quantity" : "QUANTITY",
"name" : "NAME"
},
"SOLUTIONS_BUFFERS" : {
"quantity" : "QUANTITY",
"name" : "NAME"
}
},
"YEAST" :
{
"PLASMIDS" : {
"annotation" : "ANNOTATION",
"rel" : "RELATIONSHIP"
}
} }
}; };
......
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