Moves the tranducer to a new source position, or moves the destination plate, or both
Usage
moveTransducer(transducer, source, destination)
# S4 method for Transducer,Well,missing
moveTransducer(transducer, source, destination)
# S4 method for Transducer,missing,Well
moveTransducer(transducer, source, destination)
# S4 method for Transducer,Well,Well
moveTransducer(transducer, source, destination)
# S4 method for Echo,Well,missing
moveTransducer(transducer, source, destination)
# S4 method for Echo,missing,Well
moveTransducer(transducer, source, destination)
# S4 method for Echo,Well,Well
moveTransducer(transducer, source, destination)Arguments
- transducer
A
Transducerobject.- source
A
Wellobject.- destination
A
Wellobject.
See also
Other Dispenser functions:
Echo-class,
Transducer-class,
changeWell(),
planTransfers(),
showLogs(),
transfer()
Examples
moveTransducer(exampleTransducer, Well("A02"))
#> Transducer at the following coordinates:
#> Source: A02
#> Destination: A01
moveTransducer(exampleTransducer, destination = Well("A02", plateFormat = "96"))
#> Transducer at the following coordinates:
#> Source: A01
#> Destination: A02
moveTransducer( exampleTransducer
, source = Well("A02")
, destination = Well("A02", plateFormat = "96"))
#> Transducer at the following coordinates:
#> Source: A02
#> Destination: A02
moveTransducer(exampleEcho, source = Well("A02"))
#> 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 96 wells (dead volume: 10000; max volume: 1e+05).
#> Transducer at the following coordinates:
#> Source: A02
#> Destination: A01
#> 3 elements in the log.
moveTransducer(exampleEcho, destination = Well("A02", plateFormat = "96"))
#> 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 96 wells (dead volume: 10000; max volume: 1e+05).
#> Transducer at the following coordinates:
#> Source: A03
#> Destination: A02
#> 3 elements in the log.
moveTransducer( exampleEcho
, source = Well("A02")
, destination = Well("A02", plateFormat = "96"))
#> 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 96 wells (dead volume: 10000; max volume: 1e+05).
#> Transducer at the following coordinates:
#> Source: A02
#> Destination: A02
#> 3 elements in the log.