You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The oxidation(M) on position 4 is offset to position 5.
This might be due to the modification parsing occuring in the function "_parse_peptidoform"; specifically the line sequence = [(aa, modifications_dict[i] or None) for i, aa in enumerate(peptide)]
I could be wrong but I think, this should be: sequence = [(aa, modifications_dict[i+1] or None) for i, aa in enumerate(peptide)]
I hope this helps.
Thanks,
The text was updated successfully, but these errors were encountered:
Hi,
I think there is an issue in parsing peptidoform for pepXML file.
in this peptide hit exemple :
the psm_utils.io.read_file command returns:
The oxidation(M) on position 4 is offset to position 5.
This might be due to the modification parsing occuring in the function "_parse_peptidoform"; specifically the line
sequence = [(aa, modifications_dict[i] or None) for i, aa in enumerate(peptide)]
I could be wrong but I think, this should be:
sequence = [(aa, modifications_dict[i+1] or None) for i, aa in enumerate(peptide)]
I hope this helps.
Thanks,
The text was updated successfully, but these errors were encountered: