wellClassificationMethod {twoddpcr} | R Documentation |
Retrieve the names of the classification methods for
a ddpcrWell
object.
wellClassificationMethod(theObject) ## S4 method for signature 'ddpcrWell' wellClassificationMethod(theObject) wellClassificationMethod(theObject, cMethod) <- value ## S4 replacement method for signature 'ddpcrWell' wellClassificationMethod(theObject, cMethod) <- value
theObject |
A |
cMethod |
If modifying the classification methods, this should be a vector of existing classification names or numbers. |
value |
A character vector (of the same length as |
The classification method names.
Anthony Chiu, anthony.chiu@cruk.manchester.ac.uk
wellClassification
for the classification of the
droplets.
## Create a ddpcrWell object with some data and classification. aWell <- ddpcrWell(well=KRASdata[["E03"]]) ## Retrieve the classification method names. head(wellClassificationMethod(aWell)) ## Set a classification method name to something new. wellClassificationMethod(aWell, cMethod="Cluster") <- "QuantaSoft" ## We check the classification now, showing the amplitudes as well. wellClassificationMethod(aWell)