opentrons-integration
Official Opentrons Protocol API for OT-2 and Flex robots. Use when writing protocols specifically for Opentrons hardware with full access to Protocol API v2 features. Best for production Opentrons protocols, official API compatibility. For multi-vendor automation or broader equipment control use pylabrobot.
Author
Category
Development ToolsInstall
Hot:7
Download and extract to your skills directory
Copy command and send to OpenClaw for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=k-dense-ai-scientific-skills-opentrons-integration&locale=en&source=copy
Opentrons Integration - Laboratory Automation Liquid-Handling Robots
Skill Overview
The Opentrons integration provides official Protocol API v2 support to help you write automated liquid-handling protocols in Python, controlling Flex and OT-2 robots to perform pipetting, PCR setup, serial dilutions, and other laboratory operations.
Applicable Scenarios
Key Features
Frequently Asked Questions
What is the difference between the Opentrons integration and pylabrobot?
The Opentrons integration is the official Protocol API, designed specifically for Opentrons hardware (Flex, OT-2) and provides full Protocol API v2 feature support, making it best suited for Opentrons protocol development in production environments. pylabrobot, on the other hand, is a multi-vendor automation framework suitable for scenarios that require controlling devices from different manufacturers.
How do I start writing my first Opentrons protocol?
First install the opentrons package, then create a Python file containing metadata and a run() function. In the run() function, use protocol_context to load instruments, labware, and modules, and write liquid-handling commands. It is recommended to first test the protocol in simulation mode (
opentrons_simulate) and, after confirming it is correct, run it on the actual robot.What types of liquid-handling operations does Opentrons support?
It supports basic operations (aspirate, dispense, pick_up_tip, drop_tip), bulk operations (transfer, distribute, consolidate), advanced techniques (mix, air_gap, blow_out, touch_tip), and flow-rate control. Using multi-channel pipettes enables row-wise operations and significantly improves the efficiency of processing 96-well plates.