Nothing
rmByEvi <- function(protKept, complex){
protDel = setdiff(complex, protKept)
if(length(protDel) != 0){
toDel = vector()
for(i in 1:length(protDel)){
del = which(complex == protDel[i])
toDel = c(toDel, del)
}
if (length(toDel) != 0){
complex = complex[-toDel]
}
}
complex
}
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.