pylabrobot.liquid_handling.liquid_handler.LiquidHandler.dispense96#
- async LiquidHandler.dispense96(resource: Plate | Container | List[Well], volume: float, offset: Coordinate = Coordinate(x=0, y=0, z=0), flow_rate: float | None = None, blow_out_air_volume: float | None = None, **backend_kwargs)#
Dispense to all wells in a plate.
Examples
Dispense an entire 96 well plate:
>>> await lh.dispense96(plate, volume=50)
- Parameters:
resource (
Union[Plate, Container, List[Well]]
) – Resource object or list of wells.volume (
float
) – The volume to dispense through each channeloffset (
Coordinate
) – Adjustment to where the 96 head should go to aspirate relative to where the plate or container is defined to be. Defaults to Coordinate.zero().flow_rate (
[Optional[float]]
) – The flow rate to use when dispensing, in ul/s. IfNone
, the backend default will be used.blow_out_air_volume (
[Optional[float]]
) – The volume of air to dispense after the liquid, in ul. IfNone
, the backend default will be used.backend_kwargs – Additional keyword arguments for the backend, optional.