We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baee60a commit 293d056Copy full SHA for 293d056
architector/io_process_input.py
@@ -78,7 +78,7 @@ def assign_ligType_default(core_geo_class, ligsmiles, ligcoords, metal,
78
rings = OBmol.GetSSSR()
79
is_cp = False
80
for ring in rings:
81
- if all(ring.IsInRing(x+1) for x in ligcoords) and (len(ligcoords) > 2) and (ring.IsAromatic()):
+ if all(ring.IsInRing(int(x+1)) for x in ligcoords) and (len(ligcoords) > 2) and (ring.IsAromatic()):
82
is_cp = True
83
total_edge_bound = 0 # Check for coordination atoms that are neighbors of each other.
84
for i, ca1 in enumerate(ligcoords[:-1]):
0 commit comments