Skip to content

Commit

Permalink
Reconciled fix for 2lqw and 7nwj
Browse files Browse the repository at this point in the history
  • Loading branch information
yokochi47 committed Jun 19, 2024
1 parent 3e7e52a commit da41f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwpdb/utils/nmr/mr/AmberMRParserListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -4647,7 +4647,7 @@ def getAtomNumberDictFromAmbmaskInfo(self, seqId, atomId, order=0, enableWarning
if seqId in (ps['seq_id'] if useDefault and not enforceAuthSeq else ps['auth_seq_id']):
idx = ps['seq_id'].index(seqId) if useDefault and not enforceAuthSeq else ps['auth_seq_id'].index(seqId)
compId = ps['comp_id'][idx]
cifSeqId = None if useDefault and not enforceAuthSeq else ps['seq_id'][ps['auth_seq_id'].index(seqId)]
cifSeqId = None if useDefault or enforceAuthSeq else ps['seq_id'][ps['auth_seq_id'].index(seqId)]

asis = not hasAuthSeqScheme or enforceAuthSeq or not self.__preferAuthSeq

Expand Down

0 comments on commit da41f8d

Please sign in to comment.