Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
app_results_explorer_viewer_ctrls.Rmd 1.09 KiB

Structure

plotOutput("plot_struct")

Plot Controls

textOutput("plot_hover_out")

Retention Time Range

```{r, echo=F} numericInput(inputId = "plot_rt_min", label="Start", value=NA_real_, width="30%") ``` ```{r, echo=F} numericInput(inputId = "plot_rt_max", label="End", value=NA_real_, width="30%")
</div> <!-- RT div -->

#### Intensity Range (MS1)

<div class="flex-ctrl-row"> 
<!-- Intensity div -->
```{r, echo=F}
numericInput(inputId = "plot_i_min",
             label="Start",
             value=NA_real_,
             width="30%")
numericInput(inputId = "plot_i_max",
             label="End",
             value=NA_real_,
             width="30%")

textInput("single_plot_fname",
          label="Filename of the single entry plot",
          value="default.pdf")
actionButton("plot_save_single",
             label="Save single entry plot")