Nothing
# Revserse complement a vector of character strings (ATCG)
revComp <- function(seq) {
out <- character(length(seq))
seq <- strsplit(seq, split="")
dic <- c("A"="T", "C"="G", "G"="C", "T"="A")
for(i in 1:length(seq)) out[i] <- paste(dic[ rev(seq[[i]]) ], collapse="")
return(out)
}
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.