Nothing
p2q <-
function(pvalue,BH=TRUE){
pvalue[is.na(pvalue)] <- 1
if (BH) {
qval.out <- ( length(pvalue) * pvalue ) / rank(pvalue)
qval.out[qval.out>1] <- 1
}
if (!BH) qval.out <- qvalue(pvalue)$qvalue
return(qval.out)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.