Nothing
`getControlProbe` <-
function(controlData, type=NULL)
{
if (is(controlData, 'LumiBatch')) {
controlData <- controlData(controlData)
}
allControlType <- controlData$controlType
uniControlType <- getControlType(controlData)
allProbeID <- controlData$ProbeID
selProbeID <- allProbeID
if (!is.null(type)) {
type <- toupper(type)
allControlType <- toupper(allControlType)
if (type %in% uniControlType) {
selProbeID <- allProbeID[allControlType == type[1]]
}
}
return(selProbeID)
}
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.