# 定量检测配置(targeted_quant.json)
# 变更记录
| 日期 | 变更人 | 版本号 | 摘要 |
|---|---|---|---|
| 2023-07-04 | 李响 | 1.0.0 | 初版创建 |
| 2024-03-12 | 李响 | 3.4.0 | 针对STD 3.4.x.x版本的文档升级 |
# 参数结构
{
"_meta": {
"_device": "",
"_name": "",
"_version": ""
},
"parameters": {
"acquisition": {},
"algorithms": {},
"dre_ms1_acquisition": {},
"evaluation": {}
},
"parameters_neg": {}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
- _meta:辅助型标签,位于文档头部,描述设置文件的版本信息。
- parameters:设置正模式下的默认参数
- acquisition:设置 acquisition 模块的默认参数
- evaluation:设置 evaluation 模块的默认参数
- parameters_neg:设置负模式下的默认参数,结构与正模式的相同
TIP
如果未设置该节点下的某一参数,系统将自动使用 parameters 中相应的参数值。
# 参数说明
# algorithms
{
"peak_picking": {}
}
1
2
3
2
3
- peak_picking:寻峰参数
# acquisition
用于获取谱图数据
{
"algorithms": {},
"replicate": 1,
"cycle": 1,
"interval": 0,
"dre": {},
"exit_when_dre_failed": 1,
"method": {},
"ms2_inherited_from_dre": 0,
"spectrum_validation": {
"desc": "check TIC and IS, tic_range is the same as dre",
"enabled": 0,
"error_code": 90002,
"tic_validation_range": [],
"valid_spectrum_max": 15,
"valid_spectrum_min": 0
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
关于acquisition的具体设置可以参考参数介绍内的第2章采集参数(acquisition_params)
TIP
如果未设置该节点下的某一参数,系统将自动使用 common.json 中base_analysis_params/acquisition 的参数值,如 algorithms。
# evaluation
设置定量模型及定量规则,对目标物质进行定量
关于evaluation的具体设置可以参考参数介绍内的第3章评分参数(evaluation_params)
# dre_ms1_acquisition
通过 dre 模块获取一张 MS1 谱图。