PyLabRobot 0.1.5__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pylabrobot-0.2.0/PKG-INFO +266 -0
- pylabrobot-0.2.0/PyLabRobot.egg-info/PKG-INFO +266 -0
- pylabrobot-0.2.0/PyLabRobot.egg-info/SOURCES.txt +480 -0
- pylabrobot-0.2.0/PyLabRobot.egg-info/entry_points.txt +2 -0
- pylabrobot-0.2.0/PyLabRobot.egg-info/requires.txt +51 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/PyLabRobot.egg-info/top_level.txt +1 -0
- pylabrobot-0.2.0/README.md +216 -0
- pylabrobot-0.2.0/kx2/AsyncRW.py +171 -0
- pylabrobot-0.2.0/kx2/dec14-930.py +4909 -0
- pylabrobot-0.2.0/kx2/oldwhatever.py +5117 -0
- pylabrobot-0.2.0/kx2/orig_binary_interpreter.py +340 -0
- pylabrobot-0.2.0/kx2/stufffromclscan.py +894 -0
- pylabrobot-0.2.0/pylabrobot/__init__.py +116 -0
- pylabrobot-0.2.0/pylabrobot/__version__.py +11 -0
- pylabrobot-0.2.0/pylabrobot/arms/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/arms/backend.py +139 -0
- pylabrobot-0.2.0/pylabrobot/arms/kx2/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/arms/kx2/idk.py +516 -0
- pylabrobot-0.2.0/pylabrobot/arms/kx2/old.asdf.py +521 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/coords.py +15 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/error_codes.py +1809 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/joints.py +10 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/pf_3400.py +8 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/pf_400.py +8 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/precise_flex_backend.py +2361 -0
- pylabrobot-0.2.0/pylabrobot/arms/precise_flex/precise_flex_backend_tests.py +1574 -0
- pylabrobot-0.2.0/pylabrobot/arms/scara.py +124 -0
- pylabrobot-0.2.0/pylabrobot/arms/scara_tests.py +93 -0
- pylabrobot-0.2.0/pylabrobot/arms/standard.py +9 -0
- pylabrobot-0.2.0/pylabrobot/audio/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/audio/audio.py +49 -0
- pylabrobot-0.2.0/pylabrobot/barcode_scanners/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/barcode_scanners/backend.py +17 -0
- pylabrobot-0.2.0/pylabrobot/barcode_scanners/barcode_scanner.py +15 -0
- pylabrobot-0.2.0/pylabrobot/barcode_scanners/keyence/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/barcode_scanners/keyence/keyence_backend.py +81 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/__init__.py +10 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/access2.py +26 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/backend.py +57 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/centrifuge.py +242 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/centrifuge_tests.py +142 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/chatterbox.py +53 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/standard.py +18 -0
- pylabrobot-0.2.0/pylabrobot/centrifuge/vspin_backend.py +649 -0
- pylabrobot-0.2.0/pylabrobot/config/__init__.py +91 -0
- pylabrobot-0.2.0/pylabrobot/config/config.py +46 -0
- pylabrobot-0.2.0/pylabrobot/config/config_tests.py +56 -0
- pylabrobot-0.2.0/pylabrobot/config/formats/__init__.py +42 -0
- pylabrobot-0.2.0/pylabrobot/config/formats/ini_config.py +37 -0
- pylabrobot-0.2.0/pylabrobot/config/formats/json_config.py +26 -0
- pylabrobot-0.2.0/pylabrobot/config/io/__init__.py +32 -0
- pylabrobot-0.2.0/pylabrobot/config/io/file.py +27 -0
- pylabrobot-0.2.0/pylabrobot/conftest.py +13 -0
- pylabrobot-0.2.0/pylabrobot/hamilton/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/hamilton/star.py +79 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/__init__.py +16 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/backend.py +8 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/bioshake_backend.py +268 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/chatterbox.py +9 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/hamilton_backend.py +221 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/heater_shaker.py +40 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/heater_shaker_tests.py +20 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/inheco/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/inheco/thermoshake.py +62 -0
- pylabrobot-0.2.0/pylabrobot/heating_shaking/inheco/thermoshake_backend.py +89 -0
- pylabrobot-0.2.0/pylabrobot/io/__init__.py +4 -0
- pylabrobot-0.2.0/pylabrobot/io/binary.py +223 -0
- pylabrobot-0.2.0/pylabrobot/io/capture.py +135 -0
- pylabrobot-0.2.0/pylabrobot/io/errors.py +2 -0
- pylabrobot-0.2.0/pylabrobot/io/ftdi.py +490 -0
- pylabrobot-0.2.0/pylabrobot/io/hid.py +248 -0
- pylabrobot-0.2.0/pylabrobot/io/io.py +16 -0
- pylabrobot-0.2.0/pylabrobot/io/serial.py +486 -0
- pylabrobot-0.2.0/pylabrobot/io/sila/__init__.py +26 -0
- pylabrobot-0.2.0/pylabrobot/io/sila/discovery.py +401 -0
- pylabrobot-0.2.0/pylabrobot/io/sila/discovery_tests.py +167 -0
- pylabrobot-0.2.0/pylabrobot/io/sila/grpc.py +215 -0
- pylabrobot-0.2.0/pylabrobot/io/sila/grpc_tests.py +361 -0
- pylabrobot-0.2.0/pylabrobot/io/socket.py +435 -0
- pylabrobot-0.2.0/pylabrobot/io/usb.py +508 -0
- pylabrobot-0.2.0/pylabrobot/io/validation.py +56 -0
- pylabrobot-0.2.0/pylabrobot/io/validation_utils.py +61 -0
- pylabrobot-0.2.0/pylabrobot/legacy/__init__.py +0 -0
- pylabrobot-0.2.0/pylabrobot/legacy/liquid_handling/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/legacy/liquid_handling/liquid_handler.py +303 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/__init__.py +14 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/__init__.py +9 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/backend.py +165 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/chatterbox.py +242 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/chatterbox_backend.py +5 -0
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/chatterbox_backend_tests.py → pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/chatterbox_tests.py +23 -16
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/STAR_backend.py +12018 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/STAR_chatterbox.py +318 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/STAR_tests.py +1999 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/__init__.py +6 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/backends/hamilton/base.py +209 -122
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/common.py +17 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/nimbus_backend.py +2312 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/nimbus_backend_tests.py +1189 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/planning.py +71 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/planning_tests.py +129 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/backends/hamilton/pump.py +18 -8
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/commands.py +179 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/introspection.py +829 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/messages.py +863 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/packets.py +419 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/protocol.py +178 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp/tcp_tests.py +987 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/tcp_backend.py +590 -0
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/vantage.py → pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/vantage_backend.py +1264 -724
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/hamilton/vantage_tests.py +677 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/opentrons_backend.py +709 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/opentrons_backend_tests.py +313 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/opentrons_simulator.py +153 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/serializing_backend.py +242 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/serializing_backend_tests.py +239 -0
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/tecan/EVO.py → pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/tecan/EVO_backend.py +465 -302
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/tecan/EVO_tests.py +501 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/backends/tecan/__init__.py +1 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/backends/tecan/errors.py +5 -5
- pylabrobot-0.2.0/pylabrobot/liquid_handling/errors.py +26 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/liquid_classes/__init__.py +0 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/liquid_classes/hamilton/base.py +31 -37
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/liquid_classes/hamilton/star.py +5412 -2049
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/liquid_classes/hamilton/vantage.py +5094 -1934
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/liquid_classes/tecan.py +5 -7
- pylabrobot-0.2.0/pylabrobot/liquid_handling/liquid_handler.py +2849 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/liquid_handler_tests.py +1209 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/standard.py +169 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/strictness.py +24 -0
- pylabrobot-0.2.0/pylabrobot/liquid_handling/utils.py +75 -0
- pylabrobot-0.2.0/pylabrobot/machines/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/machines/backend.py +41 -0
- pylabrobot-0.2.0/pylabrobot/machines/machine.py +77 -0
- pylabrobot-0.2.0/pylabrobot/machines/machine_tests.py +38 -0
- pylabrobot-0.2.0/pylabrobot/only_fans/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/only_fans/backend.py +23 -0
- pylabrobot-0.2.0/pylabrobot/only_fans/chatterbox.py +17 -0
- pylabrobot-0.2.0/pylabrobot/only_fans/fan.py +37 -0
- pylabrobot-0.2.0/pylabrobot/only_fans/hamilton_hepa_fan_backend.py +162 -0
- pylabrobot-0.2.0/pylabrobot/peeling/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/peeling/backend.py +15 -0
- pylabrobot-0.2.0/pylabrobot/peeling/peeler.py +17 -0
- pylabrobot-0.2.0/pylabrobot/peeling/xpeel.py +8 -0
- pylabrobot-0.2.0/pylabrobot/peeling/xpeel_backend.py +356 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/__init__.py +50 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/agilent/__init__.py +8 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/agilent/biotek_backend.py +596 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/agilent/biotek_cytation_backend.py +953 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/agilent/biotek_synergy_ht_backend.py +37 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/agilent/biotek_synergyh1_backend.py +82 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/agilent/biotek_tests.py +407 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/backend.py +102 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/biotek_backend.py +8 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/biotek_cytation_backend.py +13 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/biotek_synergyh1_backend.py +8 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/bmg_labtech/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/bmg_labtech/clario_star_backend.py +434 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/__init__.py +20 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/byonoy_a96a.py +188 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/byonoy_backend.py +401 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/byonoy_l96.py +176 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/byonoy_l96a.py +50 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/byonoy_tests.py +50 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/byonoy/parser.py +238 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/chatterbox.py +123 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/clario_star_backend.py +8 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/image_reader.py +33 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/imager.py +367 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/molecular_devices/__init__.py +43 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/molecular_devices/backend.py +998 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/molecular_devices/backend_tests.py +1001 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/molecular_devices/spectramax_384_plus_backend.py +122 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/molecular_devices/spectramax_m5_backend.py +8 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/molecular_devices_backend.py +11 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/plate_reader.py +204 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/plate_reader_tests.py +37 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/spectramax_384_plus_backend.py +10 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/spectramax_m5_backend.py +10 -0
- pylabrobot-0.2.0/pylabrobot/plate_reading/standard.py +137 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/__init__.py +4 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/__init__.py +5 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/__init__.py +12 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/actions.py +162 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/actions_tests.py +183 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/backend.py +199 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/batch_tests.py +160 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/communication.py +558 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/communication_tests.py +19 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/enums.py +91 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/error_codes.py +247 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/errors.py +47 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/helpers.py +104 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/helpers_tests.py +210 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/mock_tests.py +239 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/protocol.py +107 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/queries.py +185 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/queries_tests.py +494 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/setup_tests.py +67 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps/__init__.py +33 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps/_base.py +32 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps/_manifold.py +1414 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps/_peristaltic.py +464 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps/_shake.py +151 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps/_syringe.py +344 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps_aspirate_tests.py +193 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps_dispense_tests.py +247 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps_peristaltic_tests.py +562 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps_prime_tests.py +733 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps_shake_tests.py +250 -0
- pylabrobot-0.2.0/pylabrobot/plate_washing/biotek/el406/steps_wash_tests.py +926 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/powder_dispensing/backend.py +5 -13
- pylabrobot-0.2.0/pylabrobot/powder_dispensing/chatterbox.py +23 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/powder_dispensing/powder_dispenser.py +17 -25
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/powder_dispensing/powder_dispenser_tests.py +27 -15
- pylabrobot-0.2.0/pylabrobot/pumps/__init__.py +6 -0
- pylabrobot-0.2.0/pylabrobot/pumps/agrowpumps/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/pumps/agrowpumps/agrowdosepump_backend.py +212 -0
- pylabrobot-0.2.0/pylabrobot/pumps/agrowpumps/agrowdosepump_tests.py +87 -0
- pylabrobot-0.2.0/pylabrobot/pumps/backend.py +66 -0
- pylabrobot-0.2.0/pylabrobot/pumps/calibration.py +219 -0
- pylabrobot-0.2.0/pylabrobot/pumps/calibration_tests.py +106 -0
- pylabrobot-0.2.0/pylabrobot/pumps/chatterbox.py +48 -0
- pylabrobot-0.2.0/pylabrobot/pumps/cole_parmer/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/pumps/cole_parmer/masterflex_backend.py +80 -0
- pylabrobot-0.2.0/pylabrobot/pumps/errors.py +2 -0
- pylabrobot-0.2.0/pylabrobot/pumps/pump.py +101 -0
- pylabrobot-0.2.0/pylabrobot/pumps/pump_tests.py +130 -0
- pylabrobot-0.2.0/pylabrobot/pumps/pumparray.py +198 -0
- pylabrobot-0.2.0/pylabrobot/resources/__init__.py +69 -0
- pylabrobot-0.2.0/pylabrobot/resources/agenbio/plates.py +228 -0
- pylabrobot-0.2.0/pylabrobot/resources/agilent/plates.py +142 -0
- pylabrobot-0.2.0/pylabrobot/resources/alpaqua/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/alpaqua/magnetic_racks.py +41 -0
- pylabrobot-0.2.0/pylabrobot/resources/azenta/plates.py +82 -0
- pylabrobot-0.2.0/pylabrobot/resources/barcode.py +48 -0
- pylabrobot-0.2.0/pylabrobot/resources/bioer/plates.py +96 -0
- pylabrobot-0.2.0/pylabrobot/resources/biorad/plates.py +34 -0
- pylabrobot-0.2.0/pylabrobot/resources/boekel/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/boekel/tube_carriers.py +121 -0
- pylabrobot-0.2.0/pylabrobot/resources/carrier.py +452 -0
- pylabrobot-0.2.0/pylabrobot/resources/carrier_tests.py +446 -0
- pylabrobot-0.2.0/pylabrobot/resources/celltreat/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/resources/celltreat/plates.py +272 -0
- pylabrobot-0.2.0/pylabrobot/resources/celltreat/tubes.py +19 -0
- pylabrobot-0.2.0/pylabrobot/resources/cellvis/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/cellvis/plates.py +95 -0
- pylabrobot-0.2.0/pylabrobot/resources/container.py +123 -0
- pylabrobot-0.2.0/pylabrobot/resources/container_tests.py +53 -0
- pylabrobot-0.2.0/pylabrobot/resources/coordinate.py +72 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/coordinate_tests.py +12 -5
- pylabrobot-0.2.0/pylabrobot/resources/corning/__init__.py +4 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/axygen/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/axygen/plates.py +100 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/costar/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/costar/plates.py +242 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/falcon/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/falcon/plates.py +180 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/falcon/tubes.py +100 -0
- pylabrobot-0.2.0/pylabrobot/resources/corning/plates.py +187 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/deck.py +50 -39
- pylabrobot-0.2.0/pylabrobot/resources/deck_tests.py +135 -0
- pylabrobot-0.2.0/pylabrobot/resources/distribute_fixed_volume_w_dispense_offsets.py +150 -0
- pylabrobot-0.2.0/pylabrobot/resources/diy/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/resources/diy/davidnedrud/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/diy/davidnedrud/modules.py +19 -0
- pylabrobot-0.2.0/pylabrobot/resources/diy/grindbio/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/diy/grindbio/modules.py +22 -0
- pylabrobot-0.2.0/pylabrobot/resources/eppendorf/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/resources/eppendorf/plates.py +176 -0
- pylabrobot-0.2.0/pylabrobot/resources/eppendorf/tubes.py +202 -0
- pylabrobot-0.2.0/pylabrobot/resources/errors.py +63 -0
- pylabrobot-0.2.0/pylabrobot/resources/falcon/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/resources/falcon/plates.py +3 -0
- pylabrobot-0.2.0/pylabrobot/resources/falcon/tubes.py +3 -0
- pylabrobot-0.2.0/pylabrobot/resources/functional.py +138 -0
- pylabrobot-0.2.0/pylabrobot/resources/greiner/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/greiner/plates.py +83 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/__init__.py +18 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/hamilton_deck_tests.py +87 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/hamilton_decks.py +620 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/mfx_carriers.py +140 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/mfx_modules.py +109 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/nimbus_decks.py +633 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/plate_adapters.py +23 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/plate_carriers.py +689 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/tip_carriers.py +354 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/tip_creators.py +462 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/tip_racks.py +518 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/tip_racks_tests.py +54 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/trough_carriers.py +69 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/troughs.py +271 -0
- pylabrobot-0.2.0/pylabrobot/resources/hamilton/tube_carriers.py +98 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/hamilton/vantage_decks.py +12 -12
- pylabrobot-0.2.0/pylabrobot/resources/height_functions.py +78 -0
- pylabrobot-0.2.0/pylabrobot/resources/height_volume_functions.py +583 -0
- pylabrobot-0.2.0/pylabrobot/resources/imcs/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/imcs/tip_racks.py +122 -0
- pylabrobot-0.2.0/pylabrobot/resources/itemized_resource.py +534 -0
- pylabrobot-0.2.0/pylabrobot/resources/itemized_resource_tests.py +561 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/liquid.py +9 -9
- pylabrobot-0.2.0/pylabrobot/resources/nest/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/nest/plates.py +206 -0
- pylabrobot-0.2.0/pylabrobot/resources/opentrons/__init__.py +4 -0
- pylabrobot-0.2.0/pylabrobot/resources/opentrons/adapters.py +9 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/opentrons/deck.py +34 -26
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/opentrons/deck_tests.py +17 -7
- pylabrobot-0.2.0/pylabrobot/resources/opentrons/load.py +177 -0
- pylabrobot-0.2.0/pylabrobot/resources/opentrons/module.py +2 -0
- pylabrobot-0.2.0/pylabrobot/resources/opentrons/tip_racks.py +80 -0
- pylabrobot-0.2.0/pylabrobot/resources/opentrons/tube_racks.py +150 -0
- pylabrobot-0.2.0/pylabrobot/resources/perkin_elmer/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/perkin_elmer/plates.py +43 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/petri_dish.py +22 -13
- pylabrobot-0.2.0/pylabrobot/resources/petri_dish_tests.py +85 -0
- pylabrobot-0.2.0/pylabrobot/resources/plate.py +314 -0
- pylabrobot-0.2.0/pylabrobot/resources/plate_adapter.py +208 -0
- pylabrobot-0.2.0/pylabrobot/resources/plate_adapter_tests.py +52 -0
- pylabrobot-0.2.0/pylabrobot/resources/plate_tests.py +215 -0
- pylabrobot-0.2.0/pylabrobot/resources/porvair/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/porvair/plates.py +155 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/powder.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/resource.py +961 -0
- pylabrobot-0.2.0/pylabrobot/resources/resource_holder.py +96 -0
- pylabrobot-0.2.0/pylabrobot/resources/resource_holder_tests.py +35 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/resource_stack.py +51 -18
- pylabrobot-0.2.0/pylabrobot/resources/resource_stack_tests.py +115 -0
- pylabrobot-0.2.0/pylabrobot/resources/resource_tests.py +745 -0
- pylabrobot-0.2.0/pylabrobot/resources/revvity/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/revvity/plates.py +80 -0
- pylabrobot-0.2.0/pylabrobot/resources/rotation.py +83 -0
- pylabrobot-0.2.0/pylabrobot/resources/sergi/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/sergi/plate_adapters.py +29 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/plate_carriers.py +163 -111
- pylabrobot-0.2.0/pylabrobot/resources/tecan/plates.py +903 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/tecan_decks.py +105 -81
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/tecan_resource.py +10 -4
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/tip_carriers.py +451 -253
- pylabrobot-0.2.0/pylabrobot/resources/tecan/tip_creators.py +746 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/tip_racks.py +281 -284
- pylabrobot-0.2.0/pylabrobot/resources/tecan/trash.py +48 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/wash.py +31 -19
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/thermo_fisher/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/resources/thermo_fisher/plates.py +471 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/thermo_fisher/troughs.py +2 -2
- pylabrobot-0.2.0/pylabrobot/resources/tip.py +73 -0
- pylabrobot-0.2.0/pylabrobot/resources/tip_rack.py +306 -0
- pylabrobot-0.2.0/pylabrobot/resources/tip_rack_tests.py +50 -0
- pylabrobot-0.2.0/pylabrobot/resources/tip_tests.py +64 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tip_tracker.py +40 -27
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tip_tracker_tests.py +13 -3
- pylabrobot-0.2.0/pylabrobot/resources/trash.py +31 -0
- pylabrobot-0.2.0/pylabrobot/resources/trough.py +50 -0
- pylabrobot-0.2.0/pylabrobot/resources/tube.py +97 -0
- pylabrobot-0.2.0/pylabrobot/resources/tube_rack.py +71 -0
- pylabrobot-0.2.0/pylabrobot/resources/utils.py +370 -0
- pylabrobot-0.2.0/pylabrobot/resources/utils_tests.py +85 -0
- pylabrobot-0.2.0/pylabrobot/resources/volume_functions.py +67 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/volume_functions_tests.py +62 -32
- pylabrobot-0.2.0/pylabrobot/resources/volume_tracker.py +170 -0
- pylabrobot-0.2.0/pylabrobot/resources/volume_tracker_tests.py +46 -0
- pylabrobot-0.2.0/pylabrobot/resources/vwr/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/resources/vwr/plates.py +76 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/vwr/troughs.py +2 -1
- pylabrobot-0.2.0/pylabrobot/resources/well.py +147 -0
- pylabrobot-0.2.0/pylabrobot/resources/well_tests.py +67 -0
- pylabrobot-0.2.0/pylabrobot/scales/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/scales/chatterbox.py +24 -0
- pylabrobot-0.2.0/pylabrobot/scales/mettler_toledo_backend.py +541 -0
- pylabrobot-0.2.0/pylabrobot/scales/scale.py +45 -0
- pylabrobot-0.2.0/pylabrobot/scales/scale_backend.py +32 -0
- pylabrobot-0.2.0/pylabrobot/sealing/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/sealing/a4s.py +10 -0
- pylabrobot-0.2.0/pylabrobot/sealing/a4s_backend.py +219 -0
- pylabrobot-0.2.0/pylabrobot/sealing/backend.py +24 -0
- pylabrobot-0.2.0/pylabrobot/sealing/sealer.py +28 -0
- pylabrobot-0.2.0/pylabrobot/serializer.py +112 -0
- pylabrobot-0.2.0/pylabrobot/shaking/__init__.py +3 -0
- pylabrobot-0.2.0/pylabrobot/shaking/backend.py +32 -0
- pylabrobot-0.2.0/pylabrobot/shaking/chatterbox.py +29 -0
- pylabrobot-0.2.0/pylabrobot/shaking/shaker.py +69 -0
- pylabrobot-0.2.0/pylabrobot/shaking/shaker_tests.py +20 -0
- pylabrobot-0.2.0/pylabrobot/storage/__init__.py +6 -0
- pylabrobot-0.2.0/pylabrobot/storage/backend.py +52 -0
- pylabrobot-0.2.0/pylabrobot/storage/chatterbox.py +39 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/constants.py +151 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/cytomat.py +440 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/errors.py +178 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/heraeus_cytomat_backend.py +199 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/racks.py +102 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/schemas.py +62 -0
- pylabrobot-0.2.0/pylabrobot/storage/cytomat/utils.py +19 -0
- pylabrobot-0.2.0/pylabrobot/storage/incubator.py +211 -0
- pylabrobot-0.2.0/pylabrobot/storage/incubator_tests.py +21 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/__init__.py +5 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/incubator_shaker.py +204 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/incubator_shaker_backend.py +1801 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/scila/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/scila/inheco_sila_interface.py +345 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/scila/scila_backend.py +137 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/scila/scila_backend_tests.py +236 -0
- pylabrobot-0.2.0/pylabrobot/storage/inheco/scila/soap.py +266 -0
- pylabrobot-0.2.0/pylabrobot/storage/liconic/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/storage/liconic/constants.py +178 -0
- pylabrobot-0.2.0/pylabrobot/storage/liconic/errors.py +475 -0
- pylabrobot-0.2.0/pylabrobot/storage/liconic/liconic_backend.py +579 -0
- pylabrobot-0.2.0/pylabrobot/storage/liconic/liconic_backend_tests.py +411 -0
- pylabrobot-0.2.0/pylabrobot/storage/liconic/racks.py +360 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/__init__.py +6 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/backend.py +24 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/chatterbox.py +31 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/inheco/__init__.py +4 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/inheco/control_box.py +140 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/inheco/cpac.py +24 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/inheco/cpac_backend.py +7 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/inheco/temperature_controller.py +83 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/opentrons.py +71 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/opentrons_backend.py +60 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/opentrons_backend_usb.py +89 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/temperature_controller.py +105 -0
- pylabrobot-0.2.0/pylabrobot/temperature_controlling/temperature_controller_tests.py +98 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/__init__.py +7 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/backend.py +98 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/chatterbox.py +192 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/chatterbox_tests.py +82 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/inheco/__init__.py +1 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/inheco/odtc_backend.py +392 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/opentrons.py +100 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/opentrons_backend.py +201 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/opentrons_backend_tests.py +107 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/opentrons_backend_usb.py +336 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/standard.py +69 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermo_fisher/__init__.py +2 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermo_fisher/atc.py +19 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermo_fisher/proflex.py +11 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermo_fisher/proflex_tests.py +261 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermo_fisher/thermo_fisher_thermocycler.py +1054 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermocycler.py +282 -0
- pylabrobot-0.2.0/pylabrobot/thermocycling/thermocycler_tests.py +139 -0
- pylabrobot-0.2.0/pylabrobot/tilting/__init__.py +4 -0
- pylabrobot-0.2.0/pylabrobot/tilting/chatterbox.py +12 -0
- pylabrobot-0.2.0/pylabrobot/tilting/hamilton.py +46 -0
- pylabrobot-0.2.0/pylabrobot/tilting/hamilton_backend.py +313 -0
- pylabrobot-0.2.0/pylabrobot/tilting/tilter.py +193 -0
- pylabrobot-0.2.0/pylabrobot/tilting/tilter_backend.py +22 -0
- pylabrobot-0.2.0/pylabrobot/utils/__init__.py +3 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/utils/file_parsing.py +5 -3
- pylabrobot-0.2.0/pylabrobot/utils/interpolation.py +84 -0
- pylabrobot-0.2.0/pylabrobot/utils/linalg.py +8 -0
- pylabrobot-0.2.0/pylabrobot/utils/linalg_tests.py +19 -0
- pylabrobot-0.2.0/pylabrobot/utils/list.py +70 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/utils/list_tests.py +3 -17
- pylabrobot-0.2.0/pylabrobot/utils/object_parsing.py +23 -0
- pylabrobot-0.2.0/pylabrobot/utils/positions.py +25 -0
- pylabrobot-0.2.0/pylabrobot/utils/positions_tests.py +25 -0
- pylabrobot-0.2.0/pylabrobot/version.txt +1 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/gif.js +3 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/gif.worker.js +3 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/index.html +367 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/lib.js +4778 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/main.css +1023 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/vis.js +211 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/visualizer.py +694 -0
- pylabrobot-0.2.0/pylabrobot/visualizer/visualizer_tests.py +250 -0
- pylabrobot-0.2.0/pyproject.toml +64 -0
- PyLabRobot-0.1.5/PKG-INFO +0 -180
- PyLabRobot-0.1.5/PyLabRobot.egg-info/PKG-INFO +0 -180
- PyLabRobot-0.1.5/PyLabRobot.egg-info/SOURCES.txt +0 -154
- PyLabRobot-0.1.5/PyLabRobot.egg-info/entry_points.txt +0 -3
- PyLabRobot-0.1.5/PyLabRobot.egg-info/requires.txt +0 -64
- PyLabRobot-0.1.5/README.md +0 -116
- PyLabRobot-0.1.5/pylabrobot/__init__.py +0 -15
- PyLabRobot-0.1.5/pylabrobot/__version__.py +0 -7
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/__init__.py +0 -16
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/USBBackend.py +0 -239
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/__init__.py +0 -15
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/backend.py +0 -142
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/chatterbox_backend.py +0 -71
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/STAR.py +0 -6712
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/STAR_tests.py +0 -745
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/VENUS.py +0 -245
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/__init__.py +0 -7
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/tilt_module.py +0 -301
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/hamilton/vantage_tests.py +0 -347
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/http.py +0 -88
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/http_tests.py +0 -235
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/opentrons_backend.py +0 -492
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/opentrons_backend_tests.py +0 -176
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/saver_backend.py +0 -75
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/serializing_backend.py +0 -189
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/serializing_backend_tests.py +0 -192
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/tecan/__init__.py +0 -1
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/websocket.py +0 -288
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/backends/websocket_tests.py +0 -62
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/errors.py +0 -10
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/liquid_handler.py +0 -1680
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/liquid_handler_tests.py +0 -656
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/standard.py +0 -139
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/strictness.py +0 -23
- PyLabRobot-0.1.5/pylabrobot/machine.py +0 -76
- PyLabRobot-0.1.5/pylabrobot/plate_reading/__init__.py +0 -2
- PyLabRobot-0.1.5/pylabrobot/plate_reading/backend.py +0 -82
- PyLabRobot-0.1.5/pylabrobot/plate_reading/clario_star.py +0 -342
- PyLabRobot-0.1.5/pylabrobot/plate_reading/plate_reader.py +0 -92
- PyLabRobot-0.1.5/pylabrobot/plate_reading/plate_reader_tests.py +0 -64
- PyLabRobot-0.1.5/pylabrobot/pumps/__init__.py +0 -2
- PyLabRobot-0.1.5/pylabrobot/pumps/backend.py +0 -26
- PyLabRobot-0.1.5/pylabrobot/pumps/cole_parmer/__init__.py +0 -1
- PyLabRobot-0.1.5/pylabrobot/pumps/cole_parmer/masterflex.py +0 -61
- PyLabRobot-0.1.5/pylabrobot/pumps/pump.py +0 -56
- PyLabRobot-0.1.5/pylabrobot/resources/__init__.py +0 -41
- PyLabRobot-0.1.5/pylabrobot/resources/azenta/plates.py +0 -58
- PyLabRobot-0.1.5/pylabrobot/resources/carrier.py +0 -257
- PyLabRobot-0.1.5/pylabrobot/resources/carrier_tests.py +0 -271
- PyLabRobot-0.1.5/pylabrobot/resources/container.py +0 -36
- PyLabRobot-0.1.5/pylabrobot/resources/coordinate.py +0 -45
- PyLabRobot-0.1.5/pylabrobot/resources/corning_axygen/plates.py +0 -58
- PyLabRobot-0.1.5/pylabrobot/resources/corning_costar/plates.py +0 -790
- PyLabRobot-0.1.5/pylabrobot/resources/deck_tests.py +0 -76
- PyLabRobot-0.1.5/pylabrobot/resources/errors.py +0 -18
- PyLabRobot-0.1.5/pylabrobot/resources/hamilton/__init__.py +0 -2
- PyLabRobot-0.1.5/pylabrobot/resources/hamilton/hamilton_deck_tests.py +0 -118
- PyLabRobot-0.1.5/pylabrobot/resources/hamilton/hamilton_decks.py +0 -370
- PyLabRobot-0.1.5/pylabrobot/resources/hamilton_parse.py +0 -400
- PyLabRobot-0.1.5/pylabrobot/resources/itemized_resource.py +0 -430
- PyLabRobot-0.1.5/pylabrobot/resources/itemized_resource_tests.py +0 -229
- PyLabRobot-0.1.5/pylabrobot/resources/ml_star/__init__.py +0 -4
- PyLabRobot-0.1.5/pylabrobot/resources/ml_star/plate_carriers.py +0 -372
- PyLabRobot-0.1.5/pylabrobot/resources/ml_star/tip_carriers.py +0 -1408
- PyLabRobot-0.1.5/pylabrobot/resources/ml_star/tip_creators.py +0 -224
- PyLabRobot-0.1.5/pylabrobot/resources/ml_star/tip_racks.py +0 -308
- PyLabRobot-0.1.5/pylabrobot/resources/opentrons/__init__.py +0 -4
- PyLabRobot-0.1.5/pylabrobot/resources/opentrons/load.py +0 -185
- PyLabRobot-0.1.5/pylabrobot/resources/opentrons/load_tests.py +0 -1
- PyLabRobot-0.1.5/pylabrobot/resources/opentrons/plates.py +0 -124
- PyLabRobot-0.1.5/pylabrobot/resources/opentrons/tip_racks.py +0 -110
- PyLabRobot-0.1.5/pylabrobot/resources/petri_dish_tests.py +0 -99
- PyLabRobot-0.1.5/pylabrobot/resources/plate.py +0 -178
- PyLabRobot-0.1.5/pylabrobot/resources/plate_tests.py +0 -37
- PyLabRobot-0.1.5/pylabrobot/resources/porvair/plates.py +0 -58
- PyLabRobot-0.1.5/pylabrobot/resources/resource.py +0 -604
- PyLabRobot-0.1.5/pylabrobot/resources/resource_stack_tests.py +0 -99
- PyLabRobot-0.1.5/pylabrobot/resources/resource_tests.py +0 -309
- PyLabRobot-0.1.5/pylabrobot/resources/revvity/plates.py +0 -51
- PyLabRobot-0.1.5/pylabrobot/resources/tecan/plates.py +0 -868
- PyLabRobot-0.1.5/pylabrobot/resources/tecan/tip_creators.py +0 -681
- PyLabRobot-0.1.5/pylabrobot/resources/tip.py +0 -38
- PyLabRobot-0.1.5/pylabrobot/resources/tip_rack.py +0 -174
- PyLabRobot-0.1.5/pylabrobot/resources/tip_tests.py +0 -38
- PyLabRobot-0.1.5/pylabrobot/resources/todo_generic_carrier.py +0 -179
- PyLabRobot-0.1.5/pylabrobot/resources/trash.py +0 -5
- PyLabRobot-0.1.5/pylabrobot/resources/trough.py +0 -27
- PyLabRobot-0.1.5/pylabrobot/resources/volume_functions.py +0 -190
- PyLabRobot-0.1.5/pylabrobot/resources/volume_tracker.py +0 -167
- PyLabRobot-0.1.5/pylabrobot/resources/volume_tracker_tests.py +0 -63
- PyLabRobot-0.1.5/pylabrobot/resources/vwr/__init__.py +0 -1
- PyLabRobot-0.1.5/pylabrobot/resources/well.py +0 -114
- PyLabRobot-0.1.5/pylabrobot/resources/well_tests.py +0 -29
- PyLabRobot-0.1.5/pylabrobot/scales/__init__.py +0 -2
- PyLabRobot-0.1.5/pylabrobot/scales/mettler_toledo.py +0 -351
- PyLabRobot-0.1.5/pylabrobot/scales/scale.py +0 -32
- PyLabRobot-0.1.5/pylabrobot/scales/scale_backend.py +0 -18
- PyLabRobot-0.1.5/pylabrobot/serializer.py +0 -67
- PyLabRobot-0.1.5/pylabrobot/utils/__init__.py +0 -2
- PyLabRobot-0.1.5/pylabrobot/utils/list.py +0 -57
- PyLabRobot-0.1.5/pylabrobot/utils/positions.py +0 -118
- PyLabRobot-0.1.5/pylabrobot/utils/positions_tests.py +0 -51
- PyLabRobot-0.1.5/pylabrobot/visualizer/visualizer.py +0 -466
- PyLabRobot-0.1.5/pylabrobot/visualizer/visualizer_tests.py +0 -139
- PyLabRobot-0.1.5/setup.py +0 -84
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/LICENSE +0 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/PyLabRobot.egg-info/dependency_links.txt +0 -0
- {PyLabRobot-0.1.5/pylabrobot/heaters → pylabrobot-0.2.0/kx2}/__init__.py +0 -0
- PyLabRobot-0.1.5/pylabrobot/liquid_handling/liquid_classes/__init__.py → pylabrobot-0.2.0/pylabrobot/io/http.py +0 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/liquid_handling/liquid_classes/hamilton/__init__.py +1 -1
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/powder_dispensing/__init__.py +0 -0
- {PyLabRobot-0.1.5/pylabrobot/resources/azenta → pylabrobot-0.2.0/pylabrobot/resources/agenbio}/__init__.py +0 -0
- {PyLabRobot-0.1.5/pylabrobot/resources/corning_axygen → pylabrobot-0.2.0/pylabrobot/resources/agilent}/__init__.py +0 -0
- {PyLabRobot-0.1.5/pylabrobot/resources/corning_costar → pylabrobot-0.2.0/pylabrobot/resources/azenta}/__init__.py +0 -0
- {PyLabRobot-0.1.5/pylabrobot/resources/porvair → pylabrobot-0.2.0/pylabrobot/resources/bioer}/__init__.py +0 -0
- {PyLabRobot-0.1.5/pylabrobot/resources/revvity → pylabrobot-0.2.0/pylabrobot/resources/biorad}/__init__.py +0 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/resources/tecan/__init__.py +4 -4
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/pylabrobot/visualizer/__init__.py +0 -0
- {PyLabRobot-0.1.5 → pylabrobot-0.2.0}/setup.cfg +0 -0
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyLabRobot
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: A hardware agnostic platform for lab automation
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/pylabrobot/pylabrobot
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: typing_extensions==4.15.0
|
|
11
|
+
Provides-Extra: serial
|
|
12
|
+
Requires-Dist: pyserial==3.5; extra == "serial"
|
|
13
|
+
Provides-Extra: usb
|
|
14
|
+
Requires-Dist: pyusb==1.3.1; extra == "usb"
|
|
15
|
+
Requires-Dist: libusb-package==1.0.26.1; extra == "usb"
|
|
16
|
+
Provides-Extra: ftdi
|
|
17
|
+
Requires-Dist: pylibftdi==0.23.0; extra == "ftdi"
|
|
18
|
+
Requires-Dist: pyusb==1.3.1; extra == "ftdi"
|
|
19
|
+
Provides-Extra: hid
|
|
20
|
+
Requires-Dist: hid==1.0.8; extra == "hid"
|
|
21
|
+
Provides-Extra: modbus
|
|
22
|
+
Requires-Dist: pymodbus==3.6.8; extra == "modbus"
|
|
23
|
+
Provides-Extra: websockets
|
|
24
|
+
Requires-Dist: websockets==15.0.1; extra == "websockets"
|
|
25
|
+
Provides-Extra: visualizer
|
|
26
|
+
Requires-Dist: websockets==15.0.1; extra == "visualizer"
|
|
27
|
+
Provides-Extra: opentrons
|
|
28
|
+
Requires-Dist: opentrons-http-api-client; extra == "opentrons"
|
|
29
|
+
Provides-Extra: sila
|
|
30
|
+
Requires-Dist: zeroconf>=0.131.0; extra == "sila"
|
|
31
|
+
Provides-Extra: gui
|
|
32
|
+
Requires-Dist: flask[async]==3.1.2; extra == "gui"
|
|
33
|
+
Provides-Extra: dev
|
|
34
|
+
Requires-Dist: PyLabRobot[ftdi,gui,hid,modbus,opentrons,serial,sila,usb,visualizer,websockets]; extra == "dev"
|
|
35
|
+
Requires-Dist: grpcio; extra == "dev"
|
|
36
|
+
Requires-Dist: numpy; extra == "dev"
|
|
37
|
+
Requires-Dist: pytest==8.4.2; extra == "dev"
|
|
38
|
+
Requires-Dist: pytest-timeout==2.4.0; extra == "dev"
|
|
39
|
+
Requires-Dist: mypy==1.18.2; extra == "dev"
|
|
40
|
+
Requires-Dist: sphinx-reredirects==0.1.6; extra == "dev"
|
|
41
|
+
Requires-Dist: ruff==0.15.4; extra == "dev"
|
|
42
|
+
Requires-Dist: nbconvert==7.16.6; extra == "dev"
|
|
43
|
+
Requires-Dist: sphinx-sitemap==2.8.0; extra == "dev"
|
|
44
|
+
Requires-Dist: pydata-sphinx-theme==0.16.1; extra == "dev"
|
|
45
|
+
Requires-Dist: myst_nb==1.3.0; extra == "dev"
|
|
46
|
+
Requires-Dist: sphinx_copybutton==0.5.2; extra == "dev"
|
|
47
|
+
Provides-Extra: all
|
|
48
|
+
Requires-Dist: PyLabRobot[dev]; extra == "all"
|
|
49
|
+
Dynamic: license-file
|
|
50
|
+
|
|
51
|
+
<div style="text-align: center" align="center">
|
|
52
|
+
<img width="400" src=".github/img/logo.png" />
|
|
53
|
+
</div>
|
|
54
|
+
|
|
55
|
+
<div style="text-align: center" align="center">
|
|
56
|
+
<a href="https://docs.pylabrobot.org"><strong>Docs</strong></a> |
|
|
57
|
+
<a href="https://discuss.pylabrobot.org"><strong>Forum</strong></a> |
|
|
58
|
+
<a href="https://docs.pylabrobot.org/user_guide/_getting-started/installation.html"><strong>Installation</strong></a> |
|
|
59
|
+
<a href="https://docs.pylabrobot.org/basic.html"><strong>Getting started</strong></a>
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
## What is PyLabRobot?
|
|
63
|
+
|
|
64
|
+
PyLabRobot is a hardware agnostic, pure Python library for liquid handling robots, plate readers, pumps, scales, heater shakers, and other lab automation equipment. Read [the paper](<https://www.cell.com/device/fulltext/S2666-9986(23)00170-9>) in Device.
|
|
65
|
+
|
|
66
|
+
Advantages over proprietary software:
|
|
67
|
+
|
|
68
|
+
- **Cross-platform**: PyLabRobot works on Windows, macOS, and Linux. Many other interfaces are Windows-only.
|
|
69
|
+
- **Universal**: PyLabRobot works with any supported liquid handling robot, plate reader, pump, scale, heater shaker, etc. through a single interface.
|
|
70
|
+
- **Fast iteration**: PyLabRobot enables rapid development of protocols using atomic commands run interactively in Jupyter notebooks or the Python REPL. This decreases iteration time from minutes to seconds.
|
|
71
|
+
- **Open-source**: PyLabRobot is open-source and free to use.
|
|
72
|
+
- **Control**: With Python, you have ultimate flexibility to control your lab automation equipment. You can write Turing-complete protocols that include feedback loops.
|
|
73
|
+
- **Modern**: PyLabRobot is built on modern Python 3.9+ features and async/await syntax.
|
|
74
|
+
- **Fast support**: PyLabRobot has [an active community forum](https://discuss.pylabrobot.org) for support and discussion, and most pull requests are merged within a day.
|
|
75
|
+
|
|
76
|
+
### Liquid handling robots ([docs](https://docs.pylabrobot.org/user_guide/00_liquid-handling/_liquid-handling.html))
|
|
77
|
+
|
|
78
|
+
PyLabRobot enables the use of any liquid handling robot through a single universal interface, that works on any modern operating system (Windows, macOS, Linux). We currently support Hamilton STAR, Hamilton Vantage, Tecan Freedom EVO, and Opentrons OT-2 robots, but we will soon support many more.
|
|
79
|
+
|
|
80
|
+
Here's a quick example showing how to move 100uL of liquid from well A1 to A2 using firmware on **Hamilton STAR** (this will work on any operating system!):
|
|
81
|
+
|
|
82
|
+
```python
|
|
83
|
+
from pylabrobot.liquid_handling import LiquidHandler
|
|
84
|
+
from pylabrobot.liquid_handling.backends import STARBackend
|
|
85
|
+
from pylabrobot.resources import Deck
|
|
86
|
+
|
|
87
|
+
deck = Deck.load_from_json_file("hamilton-layout.json")
|
|
88
|
+
lh = LiquidHandler(backend=STARBackend(), deck=deck)
|
|
89
|
+
await lh.setup()
|
|
90
|
+
|
|
91
|
+
await lh.pick_up_tips(lh.deck.get_resource("tip_rack")["A1"])
|
|
92
|
+
await lh.aspirate(lh.deck.get_resource("plate")["A1"], vols=100)
|
|
93
|
+
await lh.dispense(lh.deck.get_resource("plate")["A2"], vols=100)
|
|
94
|
+
await lh.return_tips()
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
To run the same protocol on an **Opentrons**, use the following:
|
|
98
|
+
|
|
99
|
+
```python
|
|
100
|
+
from pylabrobot.liquid_handling.backends import OpentronsOT2Backend
|
|
101
|
+
deck = Deck.load_from_json_file("opentrons-layout.json")
|
|
102
|
+
lh = LiquidHandler(backend=OpentronsOT2Backend(host="x.x.x.x"), deck=deck)
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Or **Tecan** (also works on any operating system!):
|
|
106
|
+
|
|
107
|
+
```python
|
|
108
|
+
from pylabrobot.liquid_handling.backends import EVOBackend
|
|
109
|
+
deck = Deck.load_from_json_file("tecan-layout.json")
|
|
110
|
+
lh = LiquidHandler(backend=EVOBackend(), deck=deck)
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
We also provide a browser-based Visualizer which can visualize the state of the deck during a run, and can be used to develop and test protocols without a physical robot.
|
|
114
|
+
|
|
115
|
+

|
|
116
|
+
|
|
117
|
+
### Plate readers ([docs](https://docs.pylabrobot.org/user_guide/02_analytical/plate-reading/plate-reading.html))
|
|
118
|
+
|
|
119
|
+
Moving a plate to a ClarioStar using a liquid handler, and reading luminescence:
|
|
120
|
+
|
|
121
|
+
```python
|
|
122
|
+
from pylabrobot.plate_reading import PlateReader, CLARIOstarBackend
|
|
123
|
+
|
|
124
|
+
pr = PlateReader(name="plate reader", backend=CLARIOstarBackend(), size_x=1, size_y=1, size_z=1)
|
|
125
|
+
await pr.setup()
|
|
126
|
+
|
|
127
|
+
# Use in combination with a liquid handler
|
|
128
|
+
lh.assign_child_resource(pr, location=Coordinate(x, y, z))
|
|
129
|
+
lh.move_plate(lh.deck.get_resource("plate"), pr)
|
|
130
|
+
|
|
131
|
+
data = await pr.read_luminescence()
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
For Cytation5, use the `Cytation5` backend.
|
|
135
|
+
|
|
136
|
+
### Centrifuges ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/centrifuge/_centrifuge.html))
|
|
137
|
+
|
|
138
|
+
Centrifugation at 800g for 60 seconds:
|
|
139
|
+
|
|
140
|
+
```python
|
|
141
|
+
from pylabrobot.centrifuge import Centrifuge, VSpin
|
|
142
|
+
cf = Centrifuge(backend=VSpin(bucket_1_position=0), name="centrifuge", size_x=1, size_y=1, size_z=1)
|
|
143
|
+
await cf.setup()
|
|
144
|
+
|
|
145
|
+
await cf.start_spin_cycle(g = 800, duration = 60)
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### Pumps ([docs](https://docs.pylabrobot.org/user_guide/00_liquid-handling/pumps/_pumps.html))
|
|
149
|
+
|
|
150
|
+
Pumping at 100 rpm for 30 seconds using a Masterflex pump:
|
|
151
|
+
|
|
152
|
+
```python
|
|
153
|
+
from pylabrobot.pumps import Pump
|
|
154
|
+
from pylabrobot.pumps.cole_parmer.masterflex import Masterflex
|
|
155
|
+
|
|
156
|
+
p = Pump(backend=Masterflex())
|
|
157
|
+
await p.setup()
|
|
158
|
+
await p.run_for_duration(speed=100, duration=30)
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### Scales ([docs](https://docs.pylabrobot.org/user_guide/02_analytical/scales.html))
|
|
162
|
+
|
|
163
|
+
Taking a measurement from a Mettler Toledo scale:
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
from pylabrobot.scales import Scale
|
|
167
|
+
from pylabrobot.scales.mettler_toledo import MettlerToledoWXS205SDU
|
|
168
|
+
|
|
169
|
+
backend = MettlerToledoWXS205SDU(port="/dev/cu.usbserial-110")
|
|
170
|
+
scale = Scale(backend=backend, size_x=0, size_y=0, size_z=0)
|
|
171
|
+
await scale.setup()
|
|
172
|
+
|
|
173
|
+
weight = await scale.get_weight()
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Heater shakers ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/heating-shaking.html))
|
|
177
|
+
|
|
178
|
+
Setting the temperature of a heater shaker to 37°C:
|
|
179
|
+
|
|
180
|
+
```python
|
|
181
|
+
from pylabrobot.heating_shaking import HeaterShaker, InhecoThermoShakeBackend
|
|
182
|
+
|
|
183
|
+
backend = InhecoThermoShakeBackend()
|
|
184
|
+
hs = HeaterShaker(backend=backend, name="HeaterShaker", size_x=0, size_y=0, size_z=0)
|
|
185
|
+
await hs.setup()
|
|
186
|
+
await hs.set_temperature(37)
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
### Fans ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/fans/fans.html))
|
|
190
|
+
|
|
191
|
+
Running a fan at 100% intensity for one minute:
|
|
192
|
+
|
|
193
|
+
```python
|
|
194
|
+
from pylabrobot.only_fans import Fan
|
|
195
|
+
from pylabrobot.only_fans import HamiltonHepaFanBackend
|
|
196
|
+
|
|
197
|
+
fan = Fan(backend=HamiltonHepaFanBackend(), name="my fan")
|
|
198
|
+
await fan.setup()
|
|
199
|
+
await fan.turn_on(intensity=100, duration=60)
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
### Thermocyclers ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/thermocycling/thermocycling.html))
|
|
203
|
+
|
|
204
|
+
Running a thermocycler with a simple protocol:
|
|
205
|
+
|
|
206
|
+
```python
|
|
207
|
+
await tc.run_pcr_profile(
|
|
208
|
+
denaturation_temp=98.0,
|
|
209
|
+
denaturation_time=10.0,
|
|
210
|
+
annealing_temp=55.0,
|
|
211
|
+
annealing_time=30.0,
|
|
212
|
+
extension_temp=72.0,
|
|
213
|
+
extension_time=60.0,
|
|
214
|
+
num_cycles=2,
|
|
215
|
+
block_max_volume=25.0,
|
|
216
|
+
lid_temperature=105.0,
|
|
217
|
+
pre_denaturation_temp=95.0,
|
|
218
|
+
pre_denaturation_time=180.0,
|
|
219
|
+
final_extension_temp=72.0,
|
|
220
|
+
final_extension_time=300.0,
|
|
221
|
+
storage_temp=4.0,
|
|
222
|
+
storage_time=600.0,
|
|
223
|
+
)
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
## Resources
|
|
227
|
+
|
|
228
|
+
### Documentation
|
|
229
|
+
|
|
230
|
+
[docs.pylabrobot.org](https://docs.pylabrobot.org)
|
|
231
|
+
|
|
232
|
+
- [Installation](https://docs.pylabrobot.org/user_guide/_getting-started/installation.html)
|
|
233
|
+
- [Getting Started](https://docs.pylabrobot.org/user_guide/index.html)
|
|
234
|
+
- [Contributing](https://docs.pylabrobot.org/contributor_guide/index.html)
|
|
235
|
+
- [API Reference](https://docs.pylabrobot.org/api/pylabrobot.html)
|
|
236
|
+
|
|
237
|
+
### Support
|
|
238
|
+
|
|
239
|
+
- [discuss.pylabrobot.org](https://discuss.pylabrobot.org) for questions and discussions.
|
|
240
|
+
- [GitHub Issues](https://github.com/pylabrobot/pylabrobot/issues) for bug reports and feature requests.
|
|
241
|
+
|
|
242
|
+
## Citing
|
|
243
|
+
|
|
244
|
+
If you use PyLabRobot in your research, please cite the following:
|
|
245
|
+
|
|
246
|
+
```bibtex
|
|
247
|
+
@article{WIERENGA2023100111,
|
|
248
|
+
title = {PyLabRobot: An open-source, hardware-agnostic interface for liquid-handling robots and accessories},
|
|
249
|
+
journal = {Device},
|
|
250
|
+
volume = {1},
|
|
251
|
+
number = {4},
|
|
252
|
+
pages = {100111},
|
|
253
|
+
year = {2023},
|
|
254
|
+
issn = {2666-9986},
|
|
255
|
+
doi = {https://doi.org/10.1016/j.device.2023.100111},
|
|
256
|
+
url = {https://www.sciencedirect.com/science/article/pii/S2666998623001709},
|
|
257
|
+
author = {Rick P. Wierenga and Stefan M. Golas and Wilson Ho and Connor W. Coley and Kevin M. Esvelt},
|
|
258
|
+
keywords = {laboratory automation, open source, standardization, liquid-handling robots},
|
|
259
|
+
}
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
**Disclaimer:** PyLabRobot is not officially endorsed or supported by any robot manufacturer. If you use a firmware driver such as the STAR driver provided here, you do so at your own risk. Usage of a firmware driver such as STAR may invalidate your warranty. Please contact us with any questions.
|
|
265
|
+
|
|
266
|
+
_Developed for the Sculpting Evolution Group at the MIT Media Lab_
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyLabRobot
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: A hardware agnostic platform for lab automation
|
|
5
|
+
License: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/pylabrobot/pylabrobot
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: typing_extensions==4.15.0
|
|
11
|
+
Provides-Extra: serial
|
|
12
|
+
Requires-Dist: pyserial==3.5; extra == "serial"
|
|
13
|
+
Provides-Extra: usb
|
|
14
|
+
Requires-Dist: pyusb==1.3.1; extra == "usb"
|
|
15
|
+
Requires-Dist: libusb-package==1.0.26.1; extra == "usb"
|
|
16
|
+
Provides-Extra: ftdi
|
|
17
|
+
Requires-Dist: pylibftdi==0.23.0; extra == "ftdi"
|
|
18
|
+
Requires-Dist: pyusb==1.3.1; extra == "ftdi"
|
|
19
|
+
Provides-Extra: hid
|
|
20
|
+
Requires-Dist: hid==1.0.8; extra == "hid"
|
|
21
|
+
Provides-Extra: modbus
|
|
22
|
+
Requires-Dist: pymodbus==3.6.8; extra == "modbus"
|
|
23
|
+
Provides-Extra: websockets
|
|
24
|
+
Requires-Dist: websockets==15.0.1; extra == "websockets"
|
|
25
|
+
Provides-Extra: visualizer
|
|
26
|
+
Requires-Dist: websockets==15.0.1; extra == "visualizer"
|
|
27
|
+
Provides-Extra: opentrons
|
|
28
|
+
Requires-Dist: opentrons-http-api-client; extra == "opentrons"
|
|
29
|
+
Provides-Extra: sila
|
|
30
|
+
Requires-Dist: zeroconf>=0.131.0; extra == "sila"
|
|
31
|
+
Provides-Extra: gui
|
|
32
|
+
Requires-Dist: flask[async]==3.1.2; extra == "gui"
|
|
33
|
+
Provides-Extra: dev
|
|
34
|
+
Requires-Dist: PyLabRobot[ftdi,gui,hid,modbus,opentrons,serial,sila,usb,visualizer,websockets]; extra == "dev"
|
|
35
|
+
Requires-Dist: grpcio; extra == "dev"
|
|
36
|
+
Requires-Dist: numpy; extra == "dev"
|
|
37
|
+
Requires-Dist: pytest==8.4.2; extra == "dev"
|
|
38
|
+
Requires-Dist: pytest-timeout==2.4.0; extra == "dev"
|
|
39
|
+
Requires-Dist: mypy==1.18.2; extra == "dev"
|
|
40
|
+
Requires-Dist: sphinx-reredirects==0.1.6; extra == "dev"
|
|
41
|
+
Requires-Dist: ruff==0.15.4; extra == "dev"
|
|
42
|
+
Requires-Dist: nbconvert==7.16.6; extra == "dev"
|
|
43
|
+
Requires-Dist: sphinx-sitemap==2.8.0; extra == "dev"
|
|
44
|
+
Requires-Dist: pydata-sphinx-theme==0.16.1; extra == "dev"
|
|
45
|
+
Requires-Dist: myst_nb==1.3.0; extra == "dev"
|
|
46
|
+
Requires-Dist: sphinx_copybutton==0.5.2; extra == "dev"
|
|
47
|
+
Provides-Extra: all
|
|
48
|
+
Requires-Dist: PyLabRobot[dev]; extra == "all"
|
|
49
|
+
Dynamic: license-file
|
|
50
|
+
|
|
51
|
+
<div style="text-align: center" align="center">
|
|
52
|
+
<img width="400" src=".github/img/logo.png" />
|
|
53
|
+
</div>
|
|
54
|
+
|
|
55
|
+
<div style="text-align: center" align="center">
|
|
56
|
+
<a href="https://docs.pylabrobot.org"><strong>Docs</strong></a> |
|
|
57
|
+
<a href="https://discuss.pylabrobot.org"><strong>Forum</strong></a> |
|
|
58
|
+
<a href="https://docs.pylabrobot.org/user_guide/_getting-started/installation.html"><strong>Installation</strong></a> |
|
|
59
|
+
<a href="https://docs.pylabrobot.org/basic.html"><strong>Getting started</strong></a>
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
## What is PyLabRobot?
|
|
63
|
+
|
|
64
|
+
PyLabRobot is a hardware agnostic, pure Python library for liquid handling robots, plate readers, pumps, scales, heater shakers, and other lab automation equipment. Read [the paper](<https://www.cell.com/device/fulltext/S2666-9986(23)00170-9>) in Device.
|
|
65
|
+
|
|
66
|
+
Advantages over proprietary software:
|
|
67
|
+
|
|
68
|
+
- **Cross-platform**: PyLabRobot works on Windows, macOS, and Linux. Many other interfaces are Windows-only.
|
|
69
|
+
- **Universal**: PyLabRobot works with any supported liquid handling robot, plate reader, pump, scale, heater shaker, etc. through a single interface.
|
|
70
|
+
- **Fast iteration**: PyLabRobot enables rapid development of protocols using atomic commands run interactively in Jupyter notebooks or the Python REPL. This decreases iteration time from minutes to seconds.
|
|
71
|
+
- **Open-source**: PyLabRobot is open-source and free to use.
|
|
72
|
+
- **Control**: With Python, you have ultimate flexibility to control your lab automation equipment. You can write Turing-complete protocols that include feedback loops.
|
|
73
|
+
- **Modern**: PyLabRobot is built on modern Python 3.9+ features and async/await syntax.
|
|
74
|
+
- **Fast support**: PyLabRobot has [an active community forum](https://discuss.pylabrobot.org) for support and discussion, and most pull requests are merged within a day.
|
|
75
|
+
|
|
76
|
+
### Liquid handling robots ([docs](https://docs.pylabrobot.org/user_guide/00_liquid-handling/_liquid-handling.html))
|
|
77
|
+
|
|
78
|
+
PyLabRobot enables the use of any liquid handling robot through a single universal interface, that works on any modern operating system (Windows, macOS, Linux). We currently support Hamilton STAR, Hamilton Vantage, Tecan Freedom EVO, and Opentrons OT-2 robots, but we will soon support many more.
|
|
79
|
+
|
|
80
|
+
Here's a quick example showing how to move 100uL of liquid from well A1 to A2 using firmware on **Hamilton STAR** (this will work on any operating system!):
|
|
81
|
+
|
|
82
|
+
```python
|
|
83
|
+
from pylabrobot.liquid_handling import LiquidHandler
|
|
84
|
+
from pylabrobot.liquid_handling.backends import STARBackend
|
|
85
|
+
from pylabrobot.resources import Deck
|
|
86
|
+
|
|
87
|
+
deck = Deck.load_from_json_file("hamilton-layout.json")
|
|
88
|
+
lh = LiquidHandler(backend=STARBackend(), deck=deck)
|
|
89
|
+
await lh.setup()
|
|
90
|
+
|
|
91
|
+
await lh.pick_up_tips(lh.deck.get_resource("tip_rack")["A1"])
|
|
92
|
+
await lh.aspirate(lh.deck.get_resource("plate")["A1"], vols=100)
|
|
93
|
+
await lh.dispense(lh.deck.get_resource("plate")["A2"], vols=100)
|
|
94
|
+
await lh.return_tips()
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
To run the same protocol on an **Opentrons**, use the following:
|
|
98
|
+
|
|
99
|
+
```python
|
|
100
|
+
from pylabrobot.liquid_handling.backends import OpentronsOT2Backend
|
|
101
|
+
deck = Deck.load_from_json_file("opentrons-layout.json")
|
|
102
|
+
lh = LiquidHandler(backend=OpentronsOT2Backend(host="x.x.x.x"), deck=deck)
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Or **Tecan** (also works on any operating system!):
|
|
106
|
+
|
|
107
|
+
```python
|
|
108
|
+
from pylabrobot.liquid_handling.backends import EVOBackend
|
|
109
|
+
deck = Deck.load_from_json_file("tecan-layout.json")
|
|
110
|
+
lh = LiquidHandler(backend=EVOBackend(), deck=deck)
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
We also provide a browser-based Visualizer which can visualize the state of the deck during a run, and can be used to develop and test protocols without a physical robot.
|
|
114
|
+
|
|
115
|
+

|
|
116
|
+
|
|
117
|
+
### Plate readers ([docs](https://docs.pylabrobot.org/user_guide/02_analytical/plate-reading/plate-reading.html))
|
|
118
|
+
|
|
119
|
+
Moving a plate to a ClarioStar using a liquid handler, and reading luminescence:
|
|
120
|
+
|
|
121
|
+
```python
|
|
122
|
+
from pylabrobot.plate_reading import PlateReader, CLARIOstarBackend
|
|
123
|
+
|
|
124
|
+
pr = PlateReader(name="plate reader", backend=CLARIOstarBackend(), size_x=1, size_y=1, size_z=1)
|
|
125
|
+
await pr.setup()
|
|
126
|
+
|
|
127
|
+
# Use in combination with a liquid handler
|
|
128
|
+
lh.assign_child_resource(pr, location=Coordinate(x, y, z))
|
|
129
|
+
lh.move_plate(lh.deck.get_resource("plate"), pr)
|
|
130
|
+
|
|
131
|
+
data = await pr.read_luminescence()
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
For Cytation5, use the `Cytation5` backend.
|
|
135
|
+
|
|
136
|
+
### Centrifuges ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/centrifuge/_centrifuge.html))
|
|
137
|
+
|
|
138
|
+
Centrifugation at 800g for 60 seconds:
|
|
139
|
+
|
|
140
|
+
```python
|
|
141
|
+
from pylabrobot.centrifuge import Centrifuge, VSpin
|
|
142
|
+
cf = Centrifuge(backend=VSpin(bucket_1_position=0), name="centrifuge", size_x=1, size_y=1, size_z=1)
|
|
143
|
+
await cf.setup()
|
|
144
|
+
|
|
145
|
+
await cf.start_spin_cycle(g = 800, duration = 60)
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### Pumps ([docs](https://docs.pylabrobot.org/user_guide/00_liquid-handling/pumps/_pumps.html))
|
|
149
|
+
|
|
150
|
+
Pumping at 100 rpm for 30 seconds using a Masterflex pump:
|
|
151
|
+
|
|
152
|
+
```python
|
|
153
|
+
from pylabrobot.pumps import Pump
|
|
154
|
+
from pylabrobot.pumps.cole_parmer.masterflex import Masterflex
|
|
155
|
+
|
|
156
|
+
p = Pump(backend=Masterflex())
|
|
157
|
+
await p.setup()
|
|
158
|
+
await p.run_for_duration(speed=100, duration=30)
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### Scales ([docs](https://docs.pylabrobot.org/user_guide/02_analytical/scales.html))
|
|
162
|
+
|
|
163
|
+
Taking a measurement from a Mettler Toledo scale:
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
from pylabrobot.scales import Scale
|
|
167
|
+
from pylabrobot.scales.mettler_toledo import MettlerToledoWXS205SDU
|
|
168
|
+
|
|
169
|
+
backend = MettlerToledoWXS205SDU(port="/dev/cu.usbserial-110")
|
|
170
|
+
scale = Scale(backend=backend, size_x=0, size_y=0, size_z=0)
|
|
171
|
+
await scale.setup()
|
|
172
|
+
|
|
173
|
+
weight = await scale.get_weight()
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Heater shakers ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/heating-shaking.html))
|
|
177
|
+
|
|
178
|
+
Setting the temperature of a heater shaker to 37°C:
|
|
179
|
+
|
|
180
|
+
```python
|
|
181
|
+
from pylabrobot.heating_shaking import HeaterShaker, InhecoThermoShakeBackend
|
|
182
|
+
|
|
183
|
+
backend = InhecoThermoShakeBackend()
|
|
184
|
+
hs = HeaterShaker(backend=backend, name="HeaterShaker", size_x=0, size_y=0, size_z=0)
|
|
185
|
+
await hs.setup()
|
|
186
|
+
await hs.set_temperature(37)
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
### Fans ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/fans/fans.html))
|
|
190
|
+
|
|
191
|
+
Running a fan at 100% intensity for one minute:
|
|
192
|
+
|
|
193
|
+
```python
|
|
194
|
+
from pylabrobot.only_fans import Fan
|
|
195
|
+
from pylabrobot.only_fans import HamiltonHepaFanBackend
|
|
196
|
+
|
|
197
|
+
fan = Fan(backend=HamiltonHepaFanBackend(), name="my fan")
|
|
198
|
+
await fan.setup()
|
|
199
|
+
await fan.turn_on(intensity=100, duration=60)
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
### Thermocyclers ([docs](https://docs.pylabrobot.org/user_guide/01_material-handling/thermocycling/thermocycling.html))
|
|
203
|
+
|
|
204
|
+
Running a thermocycler with a simple protocol:
|
|
205
|
+
|
|
206
|
+
```python
|
|
207
|
+
await tc.run_pcr_profile(
|
|
208
|
+
denaturation_temp=98.0,
|
|
209
|
+
denaturation_time=10.0,
|
|
210
|
+
annealing_temp=55.0,
|
|
211
|
+
annealing_time=30.0,
|
|
212
|
+
extension_temp=72.0,
|
|
213
|
+
extension_time=60.0,
|
|
214
|
+
num_cycles=2,
|
|
215
|
+
block_max_volume=25.0,
|
|
216
|
+
lid_temperature=105.0,
|
|
217
|
+
pre_denaturation_temp=95.0,
|
|
218
|
+
pre_denaturation_time=180.0,
|
|
219
|
+
final_extension_temp=72.0,
|
|
220
|
+
final_extension_time=300.0,
|
|
221
|
+
storage_temp=4.0,
|
|
222
|
+
storage_time=600.0,
|
|
223
|
+
)
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
## Resources
|
|
227
|
+
|
|
228
|
+
### Documentation
|
|
229
|
+
|
|
230
|
+
[docs.pylabrobot.org](https://docs.pylabrobot.org)
|
|
231
|
+
|
|
232
|
+
- [Installation](https://docs.pylabrobot.org/user_guide/_getting-started/installation.html)
|
|
233
|
+
- [Getting Started](https://docs.pylabrobot.org/user_guide/index.html)
|
|
234
|
+
- [Contributing](https://docs.pylabrobot.org/contributor_guide/index.html)
|
|
235
|
+
- [API Reference](https://docs.pylabrobot.org/api/pylabrobot.html)
|
|
236
|
+
|
|
237
|
+
### Support
|
|
238
|
+
|
|
239
|
+
- [discuss.pylabrobot.org](https://discuss.pylabrobot.org) for questions and discussions.
|
|
240
|
+
- [GitHub Issues](https://github.com/pylabrobot/pylabrobot/issues) for bug reports and feature requests.
|
|
241
|
+
|
|
242
|
+
## Citing
|
|
243
|
+
|
|
244
|
+
If you use PyLabRobot in your research, please cite the following:
|
|
245
|
+
|
|
246
|
+
```bibtex
|
|
247
|
+
@article{WIERENGA2023100111,
|
|
248
|
+
title = {PyLabRobot: An open-source, hardware-agnostic interface for liquid-handling robots and accessories},
|
|
249
|
+
journal = {Device},
|
|
250
|
+
volume = {1},
|
|
251
|
+
number = {4},
|
|
252
|
+
pages = {100111},
|
|
253
|
+
year = {2023},
|
|
254
|
+
issn = {2666-9986},
|
|
255
|
+
doi = {https://doi.org/10.1016/j.device.2023.100111},
|
|
256
|
+
url = {https://www.sciencedirect.com/science/article/pii/S2666998623001709},
|
|
257
|
+
author = {Rick P. Wierenga and Stefan M. Golas and Wilson Ho and Connor W. Coley and Kevin M. Esvelt},
|
|
258
|
+
keywords = {laboratory automation, open source, standardization, liquid-handling robots},
|
|
259
|
+
}
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
**Disclaimer:** PyLabRobot is not officially endorsed or supported by any robot manufacturer. If you use a firmware driver such as the STAR driver provided here, you do so at your own risk. Usage of a firmware driver such as STAR may invalidate your warranty. Please contact us with any questions.
|
|
265
|
+
|
|
266
|
+
_Developed for the Sculpting Evolution Group at the MIT Media Lab_
|