Nothing
twilight.getmatrix <- function(xin){
## Extracts the data matrix from an expression set.
if (class(xin)[1]=="ExpressionSet"){
xout <- exprs(xin)
rownames(xout) <- featureNames(xin)
colnames(xout) <- sampleNames(xin)
result <- xout
}
else {
result <- xin
}
return(result)
}
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.