Skip to content

Commit

Permalink
Fix a bug left by 17d49cd
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed Jul 25, 2024
1 parent c4f30d9 commit 83247ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion easypqp/convert.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import itertools
import pathlib
import pdb
import time
from .util import timestamped_echo
import numpy as np
Expand Down Expand Up @@ -600,7 +601,7 @@ def parse_unimod(self):
root = tree.getroot()

ptms = {}
sites = ['A','R','N','D','C','E','Q','G','H','O','I','L','K','M','F','P','U','S','T','W','Y','V','N-term','C-term']
sites = ['A','R','N','D','C','E','Q','G','H','O','I','L','K','M','F','P','U','S','T','W','Y','V','N-term','C-term', 'B', 'J', 'X', 'Z']
positions = ['Anywhere','Any N-term','Any C-term','Protein N-term','Protein C-term']

for site in sites:
Expand Down

0 comments on commit 83247ba

Please sign in to comment.