@@ -80,7 +80,7 @@ function kekulize(mol::SimpleMolGraph{T}) where T
8080 return bondorder, pyrrole_like
8181end
8282
83- function kekulize!(mol:: ReactiveMolGraph )
83+ function kekulize!(mol:: SimpleMolGraph )
8484 bondorder, pyrrole_like = kekulize(mol)
8585 mol. gprops. descriptors. bond_order = bondorder
8686 mol. gprops. pyrrole_like = pyrrole_like
@@ -216,7 +216,7 @@ function protonate_acids(mol::SimpleMolGraph)
216216 return arr
217217end
218218
219- function protonate_acids!(mol:: ReactiveMolGraph )
219+ function protonate_acids!(mol:: SimpleMolGraph )
220220 has_descriptor(mol, :atom_charge) || error(" Descriptor :atom_charge not available" )
221221 set_descriptor!(mol, :atom_charge, protonate_acids(mol))
222222 return
@@ -238,7 +238,7 @@ function deprotonate_oniums(mol::SimpleMolGraph)
238238 return arr
239239end
240240
241- function deprotonate_oniums!(mol:: ReactiveMolGraph )
241+ function deprotonate_oniums!(mol:: SimpleMolGraph )
242242 has_descriptor(mol, :atom_charge) || error(" Descriptor :atom_charge not available" )
243243 set_descriptor!(mol, :atom_charge, deprotonate_oniums(mol))
244244 return
@@ -271,7 +271,7 @@ function depolarize(mol::SimpleMolGraph; negative=:O, positive=[:C, :P])
271271 return carr, oarr
272272end
273273
274- function depolarize!(mol:: ReactiveMolGraph )
274+ function depolarize!(mol:: SimpleMolGraph )
275275 has_descriptor(mol, :atom_charge) || error(" Descriptor :atom_charge not available" )
276276 has_descriptor(mol, :bond_order) || error(" Descriptor :bond_order not available" )
277277 carr, oarr = depolarize(mol)
@@ -307,7 +307,7 @@ function polarize(mol::SimpleMolGraph; negative=:O, positive=[:N, :S])
307307 return carr, oarr
308308end
309309
310- function polarize!(mol:: ReactiveMolGraph )
310+ function polarize!(mol:: SimpleMolGraph )
311311 has_descriptor(mol, :atom_charge) || error(" Descriptor :atom_charge not available" )
312312 has_descriptor(mol, :bond_order) || error(" Descriptor :bond_order not available" )
313313 carr, oarr = polarize(mol)
@@ -352,7 +352,7 @@ function to_triple_bond(mol::SimpleMolGraph)
352352 return carr, oarr
353353end
354354
355- function to_triple_bond!(mol:: ReactiveMolGraph )
355+ function to_triple_bond!(mol:: SimpleMolGraph )
356356 has_descriptor(mol, :atom_charge) || error(" Descriptor :atom_charge not available" )
357357 has_descriptor(mol, :bond_order) || error(" Descriptor :bond_order not available" )
358358 carr, oarr = to_triple_bond(mol)
@@ -379,7 +379,7 @@ function to_allene_like(mol::SimpleMolGraph)
379379 return carr, oarr
380380end
381381
382- function to_allene_like!(mol:: ReactiveMolGraph )
382+ function to_allene_like!(mol:: SimpleMolGraph )
383383 has_descriptor(mol, :atom_charge) || error(" Descriptor :atom_charge not available" )
384384 has_descriptor(mol, :bond_order) || error(" Descriptor :bond_order not available" )
385385 carr, oarr = to_allene_like(mol)
0 commit comments