Gitlab migration complete. If you have any issue please read the FAQ.

Verified Commit 0493eb8e authored by Todor Kondic's avatar Todor Kondic
Browse files

Add missing precursors to GUI

parent 920c20cf
......@@ -1919,6 +1919,11 @@ mk_shinyscreen_server <- function() {
})
observeEvent(input$missingprec,{
rv_state$conf$extract$missing_precursor_info <- input$missingprec
})
## Render Outputs
output$project <- renderText(rv_state$conf$project)
......
......@@ -244,6 +244,22 @@ shinyscreen::rt_input(input_rt = "ms1_rt_win",
def_unit = "min")
```
<details><summary>Fill missing precursors</summary>
* **fill** : Try to guess precursors of MS2 entries. This is done by
picking MS1 which chronologically preceeds a given MS2 entry.
* **omit** : Ignore MS2 with missing precursors.
* **do_nothing** : Default. Use MS1--MS2 metadata recorded in the file
to associate MS1 and MS2 entries. Usually works.
</details>
```{r, echo=F}
radioButtons("missingprec",
label = "Missing precursors",
choices = c("do_nothing","fill","omit"),
selected = "do_nothing")
```
## Prescreening
<details><summary>MS1 intensity threshold</summary>
......
Markdown is supported
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