Nothing
##function to take whatever follows "@@" off gene names
shorten.gene.names <- function(GeneNames)
{
GeneSymb <- GeneNames
shorten.name <- function(name)
{
gsub("(\\w*)@@(\\w*)", "\\1", name, perl=TRUE)
}
GeneSymb <- sapply(GeneSymb, shorten.name)
names(GeneSymb) <- NULL
GeneSymb
}
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.