Skip to content
Snippets Groups Projects
Unverified Commit f0dbe5a6 authored by Todor Kondic's avatar Todor Kondic
Browse files

resources, mix: Fix loading initial state

* resources.R(MS1_ERR_COARSE,MS1_ERR_FINE): Updated.

(EIC_ERR,RT_EXTR_ERR,RT_SHIFT_ERR): Updated.

(MS2_INT_THOLD): Updated.

* mix.R(presc_conf): Updated.
parent b3f47e29
No related branches found
No related tags found
No related merge requests found
...@@ -585,10 +585,10 @@ extr_conf <- function(m) { ...@@ -585,10 +585,10 @@ extr_conf <- function(m) {
} }
presc_conf <- function(m) { presc_conf <- function(m) {
m$conf$prescreen <- list("ms1_int_thresh"=1e5, m$conf$prescreen <- list("ms1_int_thresh"=MS1_INT_THOLD,
"ms2_int_thresh"=2.5e3, "ms2_int_thresh"=MS2_INT_THOLD,
"s2n"=3, "s2n"=MS1_SN_FAC,
"ret_time_shift_tol"=0.5) "ret_time_shift_tol"=RT_SHIFT_ERR)
m m
} }
......
...@@ -103,14 +103,14 @@ SUMM_CHK_AUTO<-'AUTO' ...@@ -103,14 +103,14 @@ SUMM_CHK_AUTO<-'AUTO'
SUMM_CHK_MANL<-'MANUAL' SUMM_CHK_MANL<-'MANUAL'
MS1_ERR_COARSE<-0.5 # Da MS1_ERR_COARSE<-"0.5 Da" # Da
MS1_ERR_FINE<- 5 # ppm MS1_ERR_FINE<- "5 ppm" # ppm
EIC_ERR <- 0.001 # Da EIC_ERR <- "0.001 Da" # Da
RT_EXTR_ERR<-0.5 # min RT_EXTR_ERR<-"0.5 min" # min
RT_SHIFT_ERR <- 0.5 # min RT_SHIFT_ERR <- "0.5 min" # min
MS1_INT_THOLD <- 1e5 MS1_INT_THOLD <- 1e5
MS2_INT_THOLD <- 5000. MS2_INT_THOLD <- 2500.
MS1_SN_FAC <- 3.0 MS1_SN_FAC <- 3.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment