tunedStepSize {denoiSeq} | R Documentation |
Extracts the tuned step sizes for sampling each parameter from the return value of denoiseq.
tunedStepSize(RDobject)
RDobject |
A readsData object with a filled output slot. |
A list of the tuned step sizes for sampling each of the parameters.
#pre -filtering to remove lowly expressed genes
ERCC <- ERCC[rowSums(ERCC)>0, ]
RD <- new('readsData', counts = ERCC)
steps <- 30
#30 steps are just for illustration here. Atleast 5000 steps are adequate.
BI <- denoiseq(RD, steps)
tunedStepSize(BI)