fitNull
fits the null distribution to a set of negative controls using Markov Chain Monte
Carlo (MCMC).
fitMcmcNull(logRr, seLogRr, iter = 1e+05)
An object of type mcmcNull
containing the mean and standard deviation (both on the log
scale) of the null distribution, as well as the MCMC trace.
This is an experimental function for computing the 95 percent credible interval of a calibrated p-value using Markov-Chain Monte Carlo (MCMC).
if (FALSE) { # \dontrun{
data(sccs)
negatives <- sccs[sccs$groundTruth == 0, ]
null <- fitMcmcNull(negatives$logRr, negatives$seLogRr)
null
plotMcmcTrace(null)
positive <- sccs[sccs$groundTruth == 1, ]
calibrateP(null, positive$logRr, positive$seLogRr)
} # }