Nothing
createMipsMatrix <- function(mipsL){
MIPs = mipsL$Mips
complexID <- names(MIPs)
uProteins = unique(unlist(MIPs))
mips = matrix(0, nrow=length(uProteins), ncol=length(MIPs))
dimnames(mips) = list(uProteins, names(MIPs))
for(i in 1:length(complexID)){
mips[MIPs[[i]], complexID[i]] = 1
}
uProteins = toupper(uProteins)
rownames(mips) = uProteins
mips
}
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.