Nothing
ui <- fluidPage(
## Enable js
useShinyjs(),
## Enable tooltip
use_bs_tooltip(),
## Set theme
titlePanel("LC/MS Quality Assessment"),
## File upload
sidebarLayout(
sidebarPanel(
bs_embed_popover(
fileInput(
inputId = "upload",
label = "Choose LC/MS files",
multiple = TRUE
),
paste0(
"Input must be valid mass-spectrometry data files ",
"in open format (mzML, mzData, mzXML, and netCDF)"
)
),
br(),
uiOutput("standard"),
uiOutput("featuredetection"),
width = 4
),
mainPanel(
uiOutput("tabs")
)
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.