Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/compomics/ms2rescore into t…
Browse files Browse the repository at this point in the history
…imsRescore
  • Loading branch information
RalfG committed Apr 9, 2024
2 parents 126c255 + 54c54b5 commit fad30de
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions docs/source/userguide/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,15 @@ be configured separately. For instance:
.. code-block:: json
"fixed_modifications": {
"C": "U:Carbamidomethyl"
"U:Carbamidomethyl": ["C"]
}
.. tab:: TOML

.. code-block:: toml
[ms2rescore.fixed_modifications]
"Carbamidomethyl" = ["C"]
"U:Carbamidomethyl" = ["C"]
.. tab:: GUI

Expand All @@ -140,6 +140,28 @@ be configured separately. For instance:
:alt: fixed modifications configuration in GUI


Fixed terminal modifications can be added by using the special labels ``N-term`` and ``C-term``.
For example, to additionally add TMT6plex to the N-terminus and lysine residues, the following
configuration can be used:

.. tab:: JSON

.. code-block:: json
"fixed_modifications": {
"U:Carbamidomethyl": ["C"],
"U:TMT6plex": ["N-term", "K"]
}
.. tab:: TOML

.. code-block:: toml
[ms2rescore.fixed_modifications]
"U:Carbamidomethyl" = ["C"]
"U:TMT6plex" = ["N-term", "K"]
.. caution::
Most search engines DO return fixed modifications as part of the modified peptide sequences.
In these cases, they must NOT be added to the ``fixed_modifications`` configuration.
Expand Down

0 comments on commit fad30de

Please sign in to comment.