Nothing
createGOMatrix <- function(cMembers){
proteins = unique(unlist(cMembers))
goId = names(cMembers)
goMat <- matrix(0, nrow=length(proteins), ncol=length(cMembers))
dimnames(goMat) <- list(proteins, goId)
for(i in 1:length(cMembers)){
goMat[cMembers[[i]], goId[i]] = 1
}
goMat
}
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.