Nothing
getDispersion <- function(y)
# Get most complex dispersion values from DGEList object
# Gordon Smyth
# Created 12 Dec 2011. Last modified 3 Oct 2012.
{
if( !is.null(y$tagwise.dispersion) ) {
dispersion <- y$tagwise.dispersion
attr(dispersion,"type") <- "tagwise"
} else {
if( !is.null(y$trended.dispersion) ) {
dispersion <- y$trended.dispersion
attr(dispersion,"type") <- "trended"
} else {
if( !is.null(y$common.dispersion) ) {
dispersion <- y$common.dispersion
attr(dispersion,"type") <- "common"
} else
dispersion <- NULL
}
}
dispersion
}
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.