I have the following R code from ( BatchQC package )
library(BatchQC) nbatch <- 3 ncond <- 2 npercond <- 10 data.matrix <- rnaseq_sim(ngenes=50, nbatch=nbatch, ncond=ncond, npercond= npercond, basemean=10000, ggstep=50, bbstep=2000, ccstep=800, basedisp=100, bdispstep=-10, swvar=1000, seed=1234) batch <- rep(1:nbatch, each=ncond*npercond) condition <- rep(rep(1:ncond, each=npercond), nbatch) batchQC(data.matrix, batch=batch, condition=condition, report_file="batchqc_report.html", report_dir=".", report_option_binary="111111111", view_report=FALSE, interactive=TRUE, batchqc_output=TRUE)
When launched in the RStudio console, this produces the following:

My question is how can I display this site through the local Shiny Server
/srv/shiny-server/
source share