Skip to content

Commit

Permalink
add fgen to config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
SamvPy committed Oct 22, 2024
1 parent c6ef3d4 commit f72210e
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions ms2rescore/package_data/config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@
"description": "Write a txt report using cProfile for profiling",
"type": "boolean",
"default": false
},
"rescoring_features": {
"description": "Features to include for rescoring",
"type": "array",
"default": ["all"]
}
}
}
Expand Down Expand Up @@ -265,6 +270,68 @@
}
}
},
"peak_fgen": {
"$ref": "#/definitions/feature_generator",
"description": "Peak feature generator",
"type": "object",
"additionalProperties": true,
"properties": {
"ion_types": {
"description": "Type of ions to try and annotate",
"type": "array",
"default": [
"a1",
"a2",
"b1",
"b2",
"c1",
"c2",
"y1",
"y2",
"z1",
"z2",
"x1",
"x2",
"p1",
"p2",
"p3"
]
},
"neutral_losses": {
"description": "Neutral losses to include for annotation",
"type": "array",
"default": [
"",
"-H2O1"
]
},
"max_workers": {
"description": "Parallel processes to use for annotation",
"type": "integer",
"default":-1
},
"ion_types_evidence": {
"description": "Ion types to consider for fragmentation site evidence",
"type": "array",
"default": ["b1", "y1", "b2", "y2"]
},
"neutral_losses_evidence": {
"description": "Neutral losses to consider for fragmentation site evidence",
"type": "array",
"default": ["", "-H2O1"]
},
"fragment_tol_mass": {
"description": "Fragmentation tolerance mass for hyperscore calculation",
"type": "integer",
"default": 20
},
"fragment_tol_mode": {
"description": "Fragmentation tolerance mode",
"type": "string",
"default": "ppm"
}
}
},
"im2deep": {
"$ref": "#/definitions/feature_generator",
"description": "Ion mobility feature generator configuration using IM2Deep",
Expand Down

0 comments on commit f72210e

Please sign in to comment.