Created
November 5, 2013 10:21
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source("http://bioconductor.org/biocLite.R") | |
biocLite("RmiR") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require(shiny) | |
require(RmiR) | |
shinyServer(function(input, output) { | |
databases <- dbListTables(RmiR.Hs.miRNA_dbconn()) | |
}) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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