Nothing
geneTxRange = function (sym, annoResource = Homo.sapiens)
{
stopifnot(is.atomic(sym) && (length(sym) == 1))
if (!exists(dsa <- deparse(substitute(annoResource))))
require(dsa, character.only = TRUE)
num = select(annoResource, keys = sym, keytype = "SYMBOL",
columns = c("TXCHROM", "TXSTART", "TXEND", "TXSTRAND"))
si = seqinfo(annoResource)
ans = GRanges(as.character(num$TXCHROM[1]), IRanges(min(num$TXSTART), max(num$TXEND)), strand=num$TXSTRAND[1])
mcols(ans)[["SYMBOL"]] = sym
seqinfo(ans) = si[as.character(num$TXCHROM[1]),]
ans
}
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.