Skip to content

Instantly share code, notes, and snippets.

@mlist
Created November 5, 2013 10:21
Show Gist options
  • Save mlist/7316896 to your computer and use it in GitHub Desktop.
Save mlist/7316896 to your computer and use it in GitHub Desktop.
Minimal working example to reproduce the RmiR package loading problem in shiny-server-pro 0.4 beta
source("http://bioconductor.org/biocLite.R")
biocLite("RmiR")
require(shiny)
require(RmiR)
shinyServer(function(input, output) {
databases <- dbListTables(RmiR.Hs.miRNA_dbconn())
})
library(shiny)
shinyUI(pageWithSidebar(
headerPanel("Problem description"),
sidebarPanel(
helpText("RmiR uses the DBI package to connect to a local SQLite database. This seems to fail on shiny-server-pro although it works fine otherwise. It also requires RSVGTipsDevice.")
),
mainPanel(
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment