Skip to content

Commit

Permalink
Remove circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard10 committed May 18, 2023
1 parent bb6b481 commit 36caa0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion forgi/threedee/utilities/modified_res.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


from ...graph import residue as fgr
import forgi.threedee.utilities.pdb as ftup

#from .modified_res_lookup import RESIDUE_DICT

log = logging.getLogger(__name__)
Expand Down Expand Up @@ -109,6 +109,7 @@ def to_4_letter_alphabeth(chain, query_db=False):
:param query_db: If true, query PDBeChem whenever a 3-letter code is unknown.
:return: The same chain, but with only AUGC residues.
'''
import forgi.threedee.utilities.pdb as ftup
modifications = {}
i = 0
while i < len(chain):
Expand Down

0 comments on commit 36caa0c

Please sign in to comment.