Skip to content

Commit

Permalink
DAOTHER-9517: Fix a bug due to typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yokochi47 committed Jun 27, 2024
1 parent 93cce50 commit cc7c5dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wwpdb/utils/nmr/NmrDpUtility.py
Original file line number Diff line number Diff line change
Expand Up @@ -27920,7 +27920,7 @@ def __testCsValueConsistencyInPkLoop(self):

if abs(position - value) > error and sp_widths[d] is not None:

if CS_RANGE_MIN < sp_width[d] < CS_RANGE_MAX:
if CS_RANGE_MIN < sp_widths[d] < CS_RANGE_MAX:

err = f"[Check row of {index_tag} {row[index_tag]}] "\
f"Peak position of spectral peak {position_names[d]} {position} ("\
Expand Down Expand Up @@ -28415,7 +28415,7 @@ def __testCsValueConsistencyInPkAltLoop(self):

if abs(position - value) > error and sp_widths[d] is not None:

if CS_RANGE_MIN < sp_width[d] < CS_RANGE_MAX:
if CS_RANGE_MIN < sp_widths[d] < CS_RANGE_MAX:

err = f"[Check row of {pk_id_name} {row[pk_id_name]}] Peak position of spectral peak {cs_value_name} {position} ("\
+ self.__getReducedAtomNotation(cs_chain_id_name, chain_id, cs_seq_id_name, seq_id,
Expand Down

0 comments on commit cc7c5dc

Please sign in to comment.