isEmpty,ddpcrWell-method {twoddpcr} | R Documentation |
ddpcrWell
object empty?Returns a logical value as to whether the given object has no droplets/wells.
## S4 method for signature 'ddpcrWell' isEmpty(x) ## S4 method for signature 'ddpcrPlate' isEmpty(x)
x |
An object to test for emptiness. |
A logical value.
Anthony Chiu, anthony.chiu@cruk.manchester.ac.uk
## Check that an empty ddpcrPlate object is in fact empty. krasPlate <- ddpcrPlate(wells=list()) isEmpty(krasPlate) ## Now add some amplitude data and check that is not empty. krasPlate <- ddpcrPlate(wells=KRASdata) isEmpty(krasPlate)