Nothing
convertAACount<-function(sequence,with.charge=FALSE,with.time=TRUE){
aminoAcids=c("A","R","N","D","C","E","Q","G","H","I","L",
"K","M","F","P","S","T","W","Y","V")
aa.count=sapply(aminoAcids, FUN=function(x)
{
if(sum(gregexpr(x,sequence)[[1]]) > 0){
length(gregexpr(x,sequence)[[1]])
} else {0}
} )
data.frame(sequence,t(aa.count))
}
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.