├── .gitignore ├── LICENSE ├── MIDA ├── Convergence_MIDA_graph.json └── Convergence_MIDA_synthesis.py ├── NHS-Diazirine ├── diazirine-graph.json └── diazirine-synthesis.py ├── README.md ├── SPPS ├── Diazirine-NH-VGSA-OH │ ├── Biotage │ │ ├── Biotage_Initiator_NH2-VGSA_O-Resin_Synthesis_Method.xml │ │ └── Biotage_Initiator_NH2-VGSA_OH_Synthesis_Report_towards_Diazirine-NH-VGSA-OH_SR02-17.pdf │ ├── SPPS_Chemputer_Code_Diazirine-NH-VGSA-OH.py │ └── SPPS_Chemputer_Graph.json ├── Levulinic_acid-NH-VGSA-OH │ ├── SPPS_Chemputer_Graph.json │ ├── SPPS_module.py │ └── ___SPPS_Parameter_File___.txt └── TFA-NH2_VGSA-OH │ ├── Biotage │ ├── Biotage_Initiator_NH2-VGSA_O-Resin_Synthesis_Method.xml │ └── Biotage_Initiator_NH2-VGSA_OH_Synthesis_Report_towards_TFA-NH2-VGSA-OH_SR01-19.pdf │ ├── SPPS_Chemputer_Code_TFA-NH2-VGSA-OH.py │ └── SPPS_Chemputer_Graph.json └── libraries ├── Chempiler ├── chempiler │ ├── __init__.py │ ├── chempiler.py │ └── tools │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── errors.py │ │ ├── graph.py │ │ ├── logging.py │ │ ├── module_execution │ │ ├── __init__.py │ │ ├── camera_execution.py │ │ ├── chiller_execution.py │ │ ├── pump_execution.py │ │ ├── stirrer_execution.py │ │ └── vacuum_execution.py │ │ └── vlogging.py ├── readme.md ├── requirements.txt ├── setup.py └── tests │ ├── all_tests.py │ ├── graph_files │ ├── AF-4-Tr-RBF.graphml │ ├── AlkylFluor_full.graphml │ ├── AlkylFluor_graph.graphml │ ├── DMP_graph.json │ ├── DMP_graph_test.json │ ├── bigrig.json │ ├── carousel.json │ ├── chemputer_rig_5_Lidocaine.graphml │ ├── disconnect_experiment.json │ ├── discovery_graph.json │ ├── duplicate_node_names.json │ ├── lidocaine_graph.json │ ├── orgsyn_v83p0193_graph.json │ ├── pump_then_valves.json │ ├── pump_then_valves_bad_ports.json │ ├── rotavap.json │ ├── rotavap_with_vacuum.json │ ├── simple_experiment.graphml │ ├── three_valve_connect.json │ └── three_valve_connect_bad_ports.json │ ├── test.py │ ├── test_chempiler_devices.py │ ├── test_chempiler_movement.py │ ├── test_connect.py │ ├── test_graph.py │ ├── test_misc.py │ ├── test_pathfinding.py │ ├── test_pipelineing.py │ └── test_separate_phases.py ├── chemputerapi ├── ChemputerAPI │ ├── __init__.py │ ├── config_utility.py │ ├── configs.py │ ├── device.py │ ├── examples │ │ ├── pump_config.py │ │ ├── usage_example.py │ │ └── valve_config.py │ ├── external.py │ ├── flasks.py │ ├── pneumatic_controller.py │ ├── pump_valve_api.py │ └── tricont.py ├── readme.md ├── setup.py └── tests │ ├── pump_random_test.py │ └── valve_random_test.py └── seriallabware ├── SerialLabware ├── __init__.py ├── devices │ ├── Cronin │ │ ├── __init__.py │ │ ├── conductivity_sensor.py │ │ ├── heating_pad.py │ │ └── shaker_stirrer.py │ ├── Heidolph │ │ ├── Hei_Torque_100_Control_stirrer.py │ │ ├── MR_Hei_Connect_stirrer.py │ │ ├── RZR_2052_Control_docs │ │ │ └── BAL_RZR_2051_2052_control_2102_control_2102_control_Z_01-005-002-95-2_de_en_es_fr_it.pdf │ │ ├── RZR_2052_Control_stirrer.py │ │ └── __init__.py │ ├── Huber │ │ ├── Petite_Fleur_chiller.py │ │ ├── Petite_Fleur_docs │ │ │ ├── Handbuch_Datenkommunikation_PB_de.pdf │ │ │ └── Handbuch_Datenkommunikation_PB_en.pdf │ │ └── __init__.py │ ├── IKA │ │ ├── Microstar_75_docs │ │ │ └── 20000008217a_DE_MICROSTAR 7.5_15_30 control_082017_web.pdf │ │ ├── Microstar_75_stirrer.py │ │ ├── RCT_digital_stirrer.py │ │ ├── RET_Control_Visc_stirrer.py │ │ ├── RV10_rotavap.py │ │ └── __init__.py │ ├── JULABO │ │ ├── CF41_chiller.py │ │ ├── CF41_docs │ │ │ └── Julabo CF41 manual.pdf │ │ └── __init__.py │ ├── Tricontinent │ │ ├── C3000_commands.py │ │ ├── C3000_docs │ │ │ └── tricontinent_c_series_manual.pdf │ │ ├── C3000_pump.py │ │ └── __init__.py │ ├── Vacuubrand │ │ ├── CVC_3000_vacuum.py │ │ └── __init__.py │ ├── __init__.py │ └── sim_devices.py ├── example │ ├── hotplate_operations.py │ └── multiple_devices.py └── serial_labware.py ├── readme.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/LICENSE -------------------------------------------------------------------------------- /MIDA/Convergence_MIDA_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/MIDA/Convergence_MIDA_graph.json -------------------------------------------------------------------------------- /MIDA/Convergence_MIDA_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/MIDA/Convergence_MIDA_synthesis.py -------------------------------------------------------------------------------- /NHS-Diazirine/diazirine-graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/NHS-Diazirine/diazirine-graph.json -------------------------------------------------------------------------------- /NHS-Diazirine/diazirine-synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/NHS-Diazirine/diazirine-synthesis.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/README.md -------------------------------------------------------------------------------- /SPPS/Diazirine-NH-VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_O-Resin_Synthesis_Method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Diazirine-NH-VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_O-Resin_Synthesis_Method.xml -------------------------------------------------------------------------------- /SPPS/Diazirine-NH-VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_OH_Synthesis_Report_towards_Diazirine-NH-VGSA-OH_SR02-17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Diazirine-NH-VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_OH_Synthesis_Report_towards_Diazirine-NH-VGSA-OH_SR02-17.pdf -------------------------------------------------------------------------------- /SPPS/Diazirine-NH-VGSA-OH/SPPS_Chemputer_Code_Diazirine-NH-VGSA-OH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Diazirine-NH-VGSA-OH/SPPS_Chemputer_Code_Diazirine-NH-VGSA-OH.py -------------------------------------------------------------------------------- /SPPS/Diazirine-NH-VGSA-OH/SPPS_Chemputer_Graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Diazirine-NH-VGSA-OH/SPPS_Chemputer_Graph.json -------------------------------------------------------------------------------- /SPPS/Levulinic_acid-NH-VGSA-OH/SPPS_Chemputer_Graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Levulinic_acid-NH-VGSA-OH/SPPS_Chemputer_Graph.json -------------------------------------------------------------------------------- /SPPS/Levulinic_acid-NH-VGSA-OH/SPPS_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Levulinic_acid-NH-VGSA-OH/SPPS_module.py -------------------------------------------------------------------------------- /SPPS/Levulinic_acid-NH-VGSA-OH/___SPPS_Parameter_File___.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/Levulinic_acid-NH-VGSA-OH/___SPPS_Parameter_File___.txt -------------------------------------------------------------------------------- /SPPS/TFA-NH2_VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_O-Resin_Synthesis_Method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/TFA-NH2_VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_O-Resin_Synthesis_Method.xml -------------------------------------------------------------------------------- /SPPS/TFA-NH2_VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_OH_Synthesis_Report_towards_TFA-NH2-VGSA-OH_SR01-19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/TFA-NH2_VGSA-OH/Biotage/Biotage_Initiator_NH2-VGSA_OH_Synthesis_Report_towards_TFA-NH2-VGSA-OH_SR01-19.pdf -------------------------------------------------------------------------------- /SPPS/TFA-NH2_VGSA-OH/SPPS_Chemputer_Code_TFA-NH2-VGSA-OH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/TFA-NH2_VGSA-OH/SPPS_Chemputer_Code_TFA-NH2-VGSA-OH.py -------------------------------------------------------------------------------- /SPPS/TFA-NH2_VGSA-OH/SPPS_Chemputer_Graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/SPPS/TFA-NH2_VGSA-OH/SPPS_Chemputer_Graph.json -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/__init__.py: -------------------------------------------------------------------------------- 1 | from .chempiler import * 2 | -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/chempiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/chempiler.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/constants.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/errors.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/graph.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/logging.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/module_execution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/module_execution/__init__.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/module_execution/camera_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/module_execution/camera_execution.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/module_execution/chiller_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/module_execution/chiller_execution.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/module_execution/pump_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/module_execution/pump_execution.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/module_execution/stirrer_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/module_execution/stirrer_execution.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/module_execution/vacuum_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/module_execution/vacuum_execution.py -------------------------------------------------------------------------------- /libraries/Chempiler/chempiler/tools/vlogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/chempiler/tools/vlogging.py -------------------------------------------------------------------------------- /libraries/Chempiler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/readme.md -------------------------------------------------------------------------------- /libraries/Chempiler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/requirements.txt -------------------------------------------------------------------------------- /libraries/Chempiler/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/setup.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/all_tests.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/AF-4-Tr-RBF.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/AF-4-Tr-RBF.graphml -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/AlkylFluor_full.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/AlkylFluor_full.graphml -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/AlkylFluor_graph.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/AlkylFluor_graph.graphml -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/DMP_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/DMP_graph.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/DMP_graph_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/DMP_graph_test.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/bigrig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/bigrig.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/carousel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/carousel.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/chemputer_rig_5_Lidocaine.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/chemputer_rig_5_Lidocaine.graphml -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/disconnect_experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/disconnect_experiment.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/discovery_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/discovery_graph.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/duplicate_node_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/duplicate_node_names.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/lidocaine_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/lidocaine_graph.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/orgsyn_v83p0193_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/orgsyn_v83p0193_graph.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/pump_then_valves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/pump_then_valves.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/pump_then_valves_bad_ports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/pump_then_valves_bad_ports.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/rotavap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/rotavap.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/rotavap_with_vacuum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/rotavap_with_vacuum.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/simple_experiment.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/simple_experiment.graphml -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/three_valve_connect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/three_valve_connect.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/graph_files/three_valve_connect_bad_ports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/graph_files/three_valve_connect_bad_ports.json -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_chempiler_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_chempiler_devices.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_chempiler_movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_chempiler_movement.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_connect.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_graph.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_misc.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_pathfinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_pathfinding.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_pipelineing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_pipelineing.py -------------------------------------------------------------------------------- /libraries/Chempiler/tests/test_separate_phases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/Chempiler/tests/test_separate_phases.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/__init__.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/config_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/config_utility.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/configs.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/device.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/examples/pump_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/examples/pump_config.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/examples/usage_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/examples/usage_example.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/examples/valve_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/examples/valve_config.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/external.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/flasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/flasks.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/pneumatic_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/pneumatic_controller.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/pump_valve_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/pump_valve_api.py -------------------------------------------------------------------------------- /libraries/chemputerapi/ChemputerAPI/tricont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/ChemputerAPI/tricont.py -------------------------------------------------------------------------------- /libraries/chemputerapi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/readme.md -------------------------------------------------------------------------------- /libraries/chemputerapi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/setup.py -------------------------------------------------------------------------------- /libraries/chemputerapi/tests/pump_random_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/tests/pump_random_test.py -------------------------------------------------------------------------------- /libraries/chemputerapi/tests/valve_random_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/chemputerapi/tests/valve_random_test.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/__init__.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Cronin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Cronin/conductivity_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Cronin/conductivity_sensor.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Cronin/heating_pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Cronin/heating_pad.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Cronin/shaker_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Cronin/shaker_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Heidolph/Hei_Torque_100_Control_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Heidolph/Hei_Torque_100_Control_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Heidolph/MR_Hei_Connect_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Heidolph/MR_Hei_Connect_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Heidolph/RZR_2052_Control_docs/BAL_RZR_2051_2052_control_2102_control_2102_control_Z_01-005-002-95-2_de_en_es_fr_it.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Heidolph/RZR_2052_Control_docs/BAL_RZR_2051_2052_control_2102_control_2102_control_Z_01-005-002-95-2_de_en_es_fr_it.pdf -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Heidolph/RZR_2052_Control_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Heidolph/RZR_2052_Control_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Heidolph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Huber/Petite_Fleur_chiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Huber/Petite_Fleur_chiller.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Huber/Petite_Fleur_docs/Handbuch_Datenkommunikation_PB_de.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Huber/Petite_Fleur_docs/Handbuch_Datenkommunikation_PB_de.pdf -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Huber/Petite_Fleur_docs/Handbuch_Datenkommunikation_PB_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Huber/Petite_Fleur_docs/Handbuch_Datenkommunikation_PB_en.pdf -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Huber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/IKA/Microstar_75_docs/20000008217a_DE_MICROSTAR 7.5_15_30 control_082017_web.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/IKA/Microstar_75_docs/20000008217a_DE_MICROSTAR 7.5_15_30 control_082017_web.pdf -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/IKA/Microstar_75_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/IKA/Microstar_75_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/IKA/RCT_digital_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/IKA/RCT_digital_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/IKA/RET_Control_Visc_stirrer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/IKA/RET_Control_Visc_stirrer.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/IKA/RV10_rotavap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/IKA/RV10_rotavap.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/IKA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/JULABO/CF41_chiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/JULABO/CF41_chiller.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/JULABO/CF41_docs/Julabo CF41 manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/JULABO/CF41_docs/Julabo CF41 manual.pdf -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/JULABO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Tricontinent/C3000_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Tricontinent/C3000_commands.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Tricontinent/C3000_docs/tricontinent_c_series_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Tricontinent/C3000_docs/tricontinent_c_series_manual.pdf -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Tricontinent/C3000_pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Tricontinent/C3000_pump.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Tricontinent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Vacuubrand/CVC_3000_vacuum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/Vacuubrand/CVC_3000_vacuum.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/Vacuubrand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/devices/sim_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/devices/sim_devices.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/example/hotplate_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/example/hotplate_operations.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/example/multiple_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/example/multiple_devices.py -------------------------------------------------------------------------------- /libraries/seriallabware/SerialLabware/serial_labware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/SerialLabware/serial_labware.py -------------------------------------------------------------------------------- /libraries/seriallabware/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/readme.md -------------------------------------------------------------------------------- /libraries/seriallabware/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croningp/ChemputerConvergence/HEAD/libraries/seriallabware/setup.py --------------------------------------------------------------------------------