Skip to content
Snippets Groups Projects
Commit 4a1ade47 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Merge branch 'Vizapp' into 'develop'

Split app.R into server and UI

See merge request !48
parents 07fb01f8 66170b99
Branches
Tags
3 merge requests!59Develop,!58Develop,!48Split app.R into server and UI
Pipeline #4815 passed with stages
in 2 minutes and 25 seconds
library(shiny)
library(shinyFiles)
setwd("../")
ui <- fluidPage(
includeHTML("workflow/output/multiqc/test/multiqc_report.html")
)
server <- function(input, output, session) {}
shinyApp(ui, server)
library(shiny)
library(shinyFiles)
function(input, output, session) {}
library(shiny)
library(shinyFiles)
setwd("../")
fluidPage(
includeHTML(Sys.glob("workflow/output/multiqc/*/multiqc_report.html"))
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment