# dre参数配置(dre.json)

# 变更记录

日期 变更人 版本号 摘要
2024-03-12 李响 1.0.0.0 针对STD 3.4.x.x版本的首次撰写

# 参数结构

{
    "algorithms": {},
    "dre_mode": "TIC",
    "dual_point_mode": 0,
    "enabled": 0,
    "max_times": 10,
    "method": {},
    "min_step_size": 0.01,
    "notch_enabled": 0,
    "notch_mz_list": [],
    "notch_mz_tol": 0.5,
    "inj_size_max_retry": 0,
    "target_tic": 9000,
    "target_tic_max": 12000,
    "target_tic_min": 3000,
    "update_inj_size": 0,
    "window_lifespan_max": 5,
    "window_size_extension": 0.5,
    "window_size_min": 0.1
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

其中:

序号 参数 释义
1 algorithms 设置寻峰及匹配参数
2 dre_mode dre 模式,可选参数为 TIC 或 MAX
3 dual_point_mode 计算下次进样量的计算模型,0:HALF (折半),1:LINER (线性)
4 enabled 是否启用本模块
5 max_times 未找到合适进样量时的最大扫描次数
6 method 设置扫描方法,支持 ms1、ms1_iso、ms2 及 ms2_iso
7 min_step_size 两次进样量的最小间隔
8 notch_enabled 是否启用 notch 功能
9 notch_mz_list 待 notch 的 mz 列表
10 notch_mz_tol notch 算法中的 mz容忍度
11 inj_size_max_retry 连续以最大进样量进行扫描,但仍未达到 target_tic_min 的最大扫描次数
12 target_tic 期望的 tic 值
13 target_tic_max 合适进样量的 tic 值上限
14 target_tic_min 合适进样量的 tic 值下限
15 update_inj_size 是否更新本地进样量配置,校准时,设置为1
16 window_lifespan_max 进样量窗口左右边界的最大生命周期
17 window_size_extension 进样量窗口左右边界的扩展量
18 window_size_min 最小进样量窗口

# 参数说明

# algorithms

用于设置MS1谱图寻峰和母离子匹配算法的默认参数,algorithms的参数结构如下所示:

{
    "peak_matching_ms2": {
    },
    "peak_picking_ms2": {
    }
}
1
2
3
4
5
6

其中

  • peak_matching_ms2:设置 ms2 谱图匹配参数
  • peak_picking_ms2:设置 ms2 谱图寻峰参数