|
AddAtom(...)
AddAtom( (EditableMol)mol, (Atom)atom) -> int :
add an atom, returns the index of the newly added atom |
|
|
|
AddBond(...)
AddBond( (EditableMol)mol, (int)beginAtomIdx, (int)endAtomIdx [, (BondType)order=rdkit.Chem.rdchem.BondType.UNSPECIFIED]) -> int :
add a bond, returns the index of the newly added bond |
|
|
|
GetMol(...)
GetMol( (EditableMol)arg1) -> Mol :
Returns a Mol (a normal molecule) |
|
|
|
RemoveAtom(...)
RemoveAtom( (EditableMol)arg1, (int)arg2) -> None :
Remove the specified atom from the molecule |
|
|
|
RemoveBond(...)
RemoveBond( (EditableMol)arg1, (int)arg2, (int)arg3) -> None :
Remove the specified bond from the molecule |
|
|
|
ReplaceAtom(...)
ReplaceAtom( (EditableMol)mol, (int)index, (Atom)newAtom) -> None :
replaces the specified atom with the provided one |
|
|
|
__init__(...)
__init__( (object)arg1, (Mol)arg2) -> None :
Construct from a Mol |
|
|
|
|
Inherited from unreachable.instance :
__new__
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|