Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Gitlab migration complete. If you have any issue please read the
FAQ
.
Open sidebar
Environmental Cheminformatics
shinyscreen
Commits
0493eb8e
Verified
Commit
0493eb8e
authored
Mar 30, 2021
by
Todor Kondic
Browse files
Add missing precursors to GUI
parent
920c20cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
R/shiny-ui-base.R
R/shiny-ui-base.R
+5
-0
inst/rmd/app.Rmd
inst/rmd/app.Rmd
+16
-0
No files found.
R/shiny-ui-base.R
View file @
0493eb8e
...
...
@@ -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
)
...
...
inst/rmd/app.Rmd
View file @
0493eb8e
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment