sortWells {twoddpcr} | R Documentation |
Well names can be sorted according to the leading letter or the trailing digit.
sortWells(wellNames, sortByLetter)
wellNames |
The well names to sort. |
sortByLetter |
If |
The well names sorted.
Anthony Chiu, anthony.chiu@cruk.manchester.ac.uk
## Use the KRASdata dataset as an example. plate <- ddpcrPlate(wells=KRASdata) wellNames <- names(plate) ## Sample sorting. sortWells(wellNames=wellNames, sortByLetter=FALSE) sortWells(wellNames=wellNames, sortByLetter=TRUE)