Hi, this might be a silly question, but I’m noticing vector (8-channel) aspiration and dispense look different. dispenses (incl. of diff volumes) happen all at once, while aspirations (even of the same volumes) happen one at a time.
I’m aspirating from reservoir wells / dispensing into PCR plates, if this makes a difference.
I’ve noticed and seen on the VENUS software that aspirating in parallel is possible. How can I replicate that in PLR?
My code:
# Dispense
await lh.dispense(
pcr_plate[col_well_range],
vols=target_volumes,
use_channels=list(range(len(target_volumes))),
offsets=[Coordinate(0, 0, 10)] * len(target_volumes),
jet=[True]*len(target_volumes))
# Aspirate
await lh.aspirate(
[aspiration_wells[i] for i in list(range(8))],
vols=[tip_capacity]*8,
use_channels=list(range(8)),
offsets=[Coordinate(0,0,1)]*8,
flow_rates=[None] * 8,
liquid_height=[None] *8,
)
Thank you!!