Nothing
getBeadData <- function(BLData, what = "Grn", array = 1){
##Subset to get all data for the array
tmp = BLData[[array]]
m = match.arg(what, colnames(tmp))
if(is.na(m))
stop("Could not find bead data of type ", what, "\n The available choices are: ", paste(colnames(tmp)), "\n")
return(tmp[,m])
}
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.