Nothing
##construct an SBML model including reactions involving (a) given gene(s)
buildSBMLFromGenes <- function(query, database, logical.fun="any"){
fun <- match.fun(logical.fun)
all.gas <- extractGeneAssociations(database)
relevant.reaction.ids <- unique(names(all.gas[which(apply(sapply(query, grepl, all.gas), 1, fun))]))
if (length(relevant.reaction.ids)==0){
cat("No reactions found for query ", query, "\n")
return(NULL)
}
.buildSubModel(database@model, relevant.reaction.ids)
}
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.