Nothing
`output.gct` <-
function(normal, filename="probe"){
NAME<-Description<-rownames(exprs(normal))
file<-cbind(NAME, Description, exprs(normal))
filename1 <- paste(filename, ".gct", sep="")
cat("#1.2", "\n", sep="\t", file=filename1)
cat(nrow(normal), ncol(normal), "\n", sep="\t", file=filename1, append=T)
suppressWarnings(write.table(file, file=filename1, row.names=FALSE,
quote = FALSE, sep="\t", append=T))
}
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.