# 目标物检测配置(targeted.json)

# 变更记录

日期 变更人 版本号 摘要
2023-07-04 李响 1.0.0 初版创建
2024-03-12 李响 3.4.0 针对STD 3.4.x.x版本的文档升级

# 文件参数结构

{
    "_meta": {
        "_device": "",
        "_name": "",
        "_version": ""
    },
    "parameters": {
        "acquisition": {},
        "evaluation": {}
    },
    "parameters_neg": {}
}
1
2
3
4
5
6
7
8
9
10
11
12
  • _meta:辅助型标签,位于文档头部,描述设置文件的版本信息。
  • parameters:设置正模式下的默认参数
    • acquisition:设置 acquisition 模块的默认参数
    • evaluation:设置 evaluation 模块的默认参数
  • parameters_neg:设置负模式下的默认参数,结构与正模式的相同

TIP

如果未设置该节点下的某一参数,系统将自动使用 parameters 中相应的参数值。

# 参数说明

# acquisition

获取谱图数据相关的配置信息,该模块下的完整配置参数结构如下:

{
    "algorithms": {},
    "dre": {},
    "exit_when_dre_failed": 0,
    "method": {},
    "ms1_iso_enabled": 0,
    "ms2_inherited_from_dre": 1,
    "ms3_enabled": 1
}
1
2
3
4
5
6
7
8
9

关于acquisition的具体设置可以参考参数介绍内的第2章采集参数(acquisition_params)

TIP

如果未设置该节点下的某一参数,系统将自动使用 common.json 中base_analysis_params/acquisition 的参数值,如 algorithms。

# evaluation

评分算法对物质定性相关的配置参数。完整的evaluation配置参数结构如下所示

{
    "qual_model": {
        "cost": {},
        "distance": {},
        "fragment_dominance": {},
        "isotope_probability": {},
        "spec_availability": {},
        "verbose": 1
    },
    "qual_rule": {
        "desc": "if score < neg_threshold, result is neg; if score >= pos_threshold, result is pos; otherwise result is weak pos",
        "neg_threshold": 50,
        "pos_threshold": 70
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

关于evaluation的具体设置可以参考参数介绍内的第3章评分参数(evaluation_params)