Nothing
# This function validates if alleles are in the correct format.
valAlleles <- function(al) {
# allowed characters
dict = c("A","T","G","C")
al_el = unique(unlist( strsplit(al, "") ))
o1 = length( setdiff( al_el, dict ) )
o2 = list(setdiff( al_el, dict ))
return( list(o1,o2) )
}
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.