pylabrobot.resources.TipRack.set_tip_state

pylabrobot.resources.TipRack.set_tip_state#

TipRack.set_tip_state(tips: List[bool] | Dict[str, bool]) None#

Set the initial tip tracking state of all tips in this tip rack.

Parameters:

tips (List[bool] | Dict[str, bool]) – either a list of booleans (using integer indexing) or a dictionary of booleans (using string indexing) for whether each tip should be filled or empty.

Return type:

None

Examples

Filling the right half of a 96-well tip rack:

>>> tip_rack.set_tip_state([[True] * 6 + [False] * 6] * 8)