Nothing
# table-enhancers.R
createLinkGO <- function(val) {
sprintf('<a href="http://amigo.geneontology.org/amigo/term/%s" target="_blank" class="btn btn-primary">%s</a>',val,val)
}
createLinkENS <- function(val, species="Mus_musculus") {
paste0('<a href="http://www.ensembl.org/',species,'/Gene/Summary?g=',val,'" target="_blank" class="btn btn-primary">',val,'</a>')
}
createLinkGeneSymbol <- function(val) {
# possibilities:
# ncbi
# genecards
paste0('<a href="http://www.ncbi.nlm.nih.gov/gene/?term=',val,'[sym]" target="_blank" class="btn btn-primary">',val,'</a>')
}
geneinfo <- function(gene_id) {
# the gene id has to be entrez_id
## TODO: will need to finish implementation
entrezinfo <- rentrez::entrez_summary("gene", gene_id)
return(entrezinfo)
}
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.