Objects of this class represent the state of an Echo machine loaded with a source and a destination plate, and with its transducer at a given position.
Usage
# S4 method for Echo
as.character(x)
# S4 method for Echo
show(object)
Details
The model of the echo machine determines the resolution of the liquid transfers: 2.5 nL increments for the “555” and 25 nL increments for the “525”.
Slots
source
A source
Plate
.destination
A destination
Plate
.transducer
A
Transducer
state.model
The model of the Echo machine.
log
A log of the transfers
See also
Other Dispenser functions:
Transducer-class
,
changeWell()
,
moveTransducer()
,
planTransfers()
,
showLogs()
,
transfer()
Examples
plate <- Plate( type = "384"
, deadVolume = 10000
, maxVolume = 100000)
transducer <- Transducer( source = Well("A01")
, destination = Well("A01", plateFormat = "96"))
echo <- Echo( source = plate
, destination = plate
, transducer = transducer
, model = "525")
echo
#> A 525 Echo machine:
#> Source plate: A Plate with data about 384 wells (dead volume: 10000; max volume: 1e+05).
#> Destination plate: A Plate with data about 384 wells (dead volume: 10000; max volume: 1e+05).
#> Transducer at the following coordinates:
#> Source: A01
#> Destination: A01
#> 0 elements in the log.