Skip to content

Commit 2e37ece

Browse files
committed
Avoid generating a charged iodine atomType in isomorphismTest
1 parent a9f56db commit 2e37ece

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rmgpy/molecule/isomorphismTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
from rmgpy.molecule.molecule import Molecule
4141
from rmgpy.molecule.group import Group
4242

43-
molecule_atom_types = [ 'C', 'O', 'N', 'S', 'Si', 'Cl']
43+
molecule_atom_types = [ 'C', 'O', 'N', 'S', 'Si', 'Cl', 'I']
4444
group_atomtypes = {}
4545

4646
for item in create_atom_types() :
@@ -140,7 +140,7 @@ def load_cases_molecule_atom_types():
140140
'''
141141
output = []
142142
a_types = list(itertools.product(molecule_atom_types, repeat=2))
143-
uncharged_a_types = ['Cl']
143+
uncharged_a_types = ['Cl','I']
144144
unpaired_electrons = list(itertools.product(range(3), repeat=2))
145145
cross_element_unpaired = list(itertools.product(a_types,unpaired_electrons))
146146
for item in cross_element_unpaired:

0 commit comments

Comments
 (0)