File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -123,15 +123,15 @@ be configured separately. For instance:
123123  .. code-block :: json 
124124
125125    "fixed_modifications" : { 
126-       "C " : " U:Carbamidomethyl "  
126+       "U:Carbamidomethyl " : [ " C " ]  
127127    } 
128128
129129 .. tab :: TOML 
130130
131131    .. code-block :: toml 
132132
133133      [ms2rescore.fixed_modifications] 
134-       "Carbamidomethyl" = ["C"] 
134+       "U: Carbamidomethyl" = ["C"] 
135135
136136 .. tab :: GUI 
137137
@@ -140,6 +140,28 @@ be configured separately. For instance:
140140    :alt:  fixed modifications configuration in GUI 
141141
142142
143+ Fixed terminal modifications can be added by using the special labels ``N-term `` and ``C-term ``.
144+ For example, to additionally add TMT6plex to the N-terminus and lysine residues, the following
145+ configuration can be used:
146+ 
147+ .. tab :: JSON 
148+ 
149+   .. code-block :: json 
150+ 
151+     "fixed_modifications" : { 
152+       "U:Carbamidomethyl" : [" C"  ], 
153+       "U:TMT6plex" : [" N-term"  , " K"  ] 
154+     } 
155+ 
156+  .. tab :: TOML 
157+ 
158+     .. code-block :: toml 
159+ 
160+       [ms2rescore.fixed_modifications] 
161+       "U:Carbamidomethyl" = ["C"] 
162+       "U:TMT6plex" = ["N-term", "K"] 
163+ 
164+ 
143165 .. caution ::
144166  Most search engines DO return fixed modifications as part of the modified peptide sequences.
145167  In these cases, they must NOT be added to the ``fixed_modifications `` configuration.
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments