Nothing
`getControlType` <-
function(controlData)
{
if (is(controlData, 'LumiBatch')) {
controlData <- controlData(controlData)
}
if (is(controlData, 'data.frame')) {
if (nrow(controlData) == 0) stop('controlData is empty!')
return(unique(as.character(controlData$controlType)))
} else if (is(controlData, 'MethyLumiQC')) {
return(controlTypes(controlData))
} else {
return(NA)
}
}
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.