Nothing
gtf_to_exons_gr = function(gtf_path, format = format, save_path){
txdb = makeTxDbFromGFF(gtf_path, format)
txdb = keepStandardChromosomes(txdb)
# dropSeqlevels(txdb, "chrM")
exons_list_by_gene = exonsBy(txdb, by="gene")
exons_list_by_gene = reduce(exons_list_by_gene)
saveRDS(exons_list_by_gene, file = save_path)
return(0)
}
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.