diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py index 95fd8c1c0acfab197c94fc2765644e2ef384be17..dddca6bd438887c0dbe693b02a4ab48f9746d456 100644 --- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py +++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py @@ -15,9 +15,9 @@ configuration["GENERAL_PROTOCOL"] = { }; configuration["MEDIA"] = { - "CHEMICALS" : {"QUANTITY" : False, "NAME" : False }, - "SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False }, - "MEDIA" : {"QUANTITY" : False, "NAME" : False } + "CHEMICALS" : {"CONCENTRATION" : False, "NAME" : False }, + "SOLUTION_BUFFERS" : {"CONCENTRATION" : False, "NAME" : False }, + "MEDIA" : {"CONCENTRATION" : False, "NAME" : False } }; configuration["PCR"] = { @@ -41,10 +41,20 @@ configuration["RESULT"] = { }; configuration["SOLUTION_BUFFERS"] = { + "CHEMICALS" : {"CONCENTRATION" : False, "NAME" : False }, + "SOLUTION_BUFFERS" : {"CONCENTRATION" : False, "NAME" : False } + }; + +configuration["WESTERN_BLOTTING"] = { "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 annotableType = "<REPLACE_WITH_ANNOTABLE_TYPE>" server = CommonServiceProvider.getCommonServer() diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py index 3b7103f0753955cc55612f06007c398d002e50ac..6156c7c3595b4e6846f43777b86957a23e8de1e9 100644 --- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py +++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py @@ -30,15 +30,15 @@ definitions = { "MEDIA" : { "CHEMICALS" : { - "concentration" : "QUANTITY", + "concentration" : "CONCENTRATION", "name" : "NAME" }, "SOLUTIONS_BUFFERS" : { - "concentration" : "QUANTITY", + "concentration" : "CONCENTRATION", "name" : "NAME" }, "MEDIA" : { - "concentration" : "QUANTITY", + "concentration" : "CONCENTRATION", "name" : "NAME" } }, @@ -88,13 +88,35 @@ definitions = { "SOLUTIONS_BUFFERS" : { "CHEMICALS" : { - "concentration" : "QUANTITY", + "concentration" : "CONCENTRATION", "name" : "NAME" }, "SOLUTIONS_BUFFERS" : { - "concentration" : "QUANTITY", + "concentration" : "CONCENTRATION", "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" + } } };