fluidRow(
column(width = 12,
bs4Card(
width = 12,
title = "Instruction",
status = "secondary",
solidHeader = FALSE,
collapsible = TRUE,
collapsed = FALSE,
closable = FALSE,
p("In this section you can quantify your samples based on the calibration curve."),
p("Data with", span("unknown", style = "color:#f15c42"), "concentration is quantified here."),
p("Although optimum weighting scheme has been suggested, here different weighting schemes including the user defined one if available,
are used to quantify each compound in the sample. This allows the user to compare the results and make their final desicion."),
p("1. You can click", strong("Quantify"), "button to perform calibration."),
p("2. Subsequently, you can save the result by clicking the", strong("Save Result"), "button."),
p("3. Note: ", span("when sample responses fall out of the linear range, the predicted concentrations are under- or over-estimated", style = "color:#f15c42"),
".Therefore, we have included a column named", span("Attention", style = "color:#f15c42"), "in the result file. If the sample response is within the linear range,",
span("Attention = no;", style = "color:#f15c42"), "otherwise,", span("Attention = response out of calibration range.",style = "color:#f15c42"),
"Users should carefully examine the quantification results in this case."),
p("4. Note: ", span("when the user defined weighting factor is not available", style = "color:#f15c42"), ", quantification will not be perfromed and analyte concentration
will remain unknown under this weighting factor in the result.")
)
),
column(width = 3,
bs4Card(
width = 12,
inputId = "caliResult_card",
title = "Perform Quantification",
status = "primary",
solidHeader = FALSE,
collapsible = FALSE,
collapsed = FALSE,
closable = FALSE,
p("Perform calibration with different weights"),
actionButton("caliDo", "Quantify", icon("paper-plane"),
style="color: #fff; background-color: #CD0000; border-color: #9E0000")
),
bs4Card(
width = 12,
inputId = "caliResult_card",
title = "Save Quantification Result",
status = "primary",
solidHeader = FALSE,
collapsible = FALSE,
collapsed = FALSE,
closable = FALSE,
p("Quantification results can be downloaded in csv format"),
shinyjs::hidden(downloadButton("caliSave", "Save Result", icon("download"),
style="color: #fff; background-color: #0091ff; border-color: #0091ff"))
)
),
column(width = 9,
bs4Card(
width = 12,
inputId = "caliResult_card",
title = "Quantification Result",
status = "secondary",
solidHeader = FALSE,
collapsible = TRUE,
collapsed = FALSE,
closable = FALSE,
DT::dataTableOutput("caliResult")
)
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.