
cellQC(object, qcType = NULL, qc.threshold = NULL, replace.badPlateData = TRUE, plot = TRUE, outpath = getOption("opm.outpath"), ...)
"cellQC"(object, qcType = getOption("opm.QC.type"), qc.threshold = getOption("opm.QC.threshold"), replace.badPlateData = getOption("opm.replace.badPlateData"), plot = TRUE, outpath = getOption("opm.outpath"), ...)
cellData
object with intialized slot qc.data
,
plate.quality
and plate.quality.data
.
qcType include c("plateCorrelation", "wellSd", "zFactor", "cellNumber"), An example of qc.threshold is c(correlation = 0.8, zfactor = 0.5, cellnumber = 50).
data(demoCell)
op <- options("device")
options("device" = "png")
oneCell <- cellQC(oneCell, qcType = c("plateCorrelation", "wellSd", "cellNumber"),
qc.threshold = c(correlation = 0.7), outpath = tempdir())
options(op)
str(oneCell["qc.data"])
str(oneCell["plate.quality"])
Run the code above in your browser using DataLab