library(shiny)
ui <- fluidPage(headerPanel('Intron Visualization'),
mainPanel(plotOutput('plot')))
server <- function(input, output) {
chr <- intron_tracker("chr17")
p <- organismDB_mod("BRCA1", "NBR1", chr)
output$plot <- p
}
shinyApp(ui = ui, server = server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.