Nothing
ChrNumeric <- function(Chromosome)
{
if (!is.numeric(Chromosome))
{
if (is.factor(Chromosome))
{
Chromosome <- as.character(Chromosome)
}
Chromosome <- gsub("([cC][hH][rR][ ]*)","",Chromosome)
indChrX <- which(Chromosome=="X")
Chromosome[indChrX] <- 23
indChrY <- which(Chromosome=="Y")
Chromosome[indChrY] <- 24
indChrZ <- which(Chromosome=="Z")
Chromosome[indChrZ] <- 25
Chromosome <- as.numeric(Chromosome)
}
return(Chromosome)
}
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.