Skip to content

Commit

Permalink
added ligand_breakdown to match_lig_list
Browse files Browse the repository at this point in the history
  • Loading branch information
jwtoney committed Oct 10, 2024
1 parent d3fa63d commit d34b770
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions molSimplify/Classes/mol3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -4176,6 +4176,7 @@ def match_lig_list(self, init_mol, catoms_arr=None,
"""

from molSimplify.Informatics.graph_analyze import obtain_truncation_metal
from molSimplify.Classes.ligand import ligand_breakdown

Check notice

Code scanning / CodeQL

Cyclic import Note

Import of module
molSimplify.Classes.ligand
begins an import cycle.
flag_match = True
self.my_mol_trunc = mol3D()
self.my_mol_trunc.copymol3D(self)
Expand Down Expand Up @@ -4316,6 +4317,7 @@ def ligand_comp_org(self, init_mol, catoms_arr=None,
Dictionary containing rmsd_max and atom_dist_max.
"""
from molSimplify.Scripts.oct_check_mols import readfromtxt
from molSimplify.Classes.ligand import ligand_breakdown

Check notice

Code scanning / CodeQL

Cyclic import Note

Import of module
molSimplify.Classes.ligand
begins an import cycle.
_, _, flag_match = self.match_lig_list(init_mol,
catoms_arr=catoms_arr,
BondedOct=BondedOct,
Expand Down

0 comments on commit d34b770

Please sign in to comment.