|
|
AddAtom(...)
AddAtom( (RWMol)arg1, (Atom)atom) -> int :
add an atom, returns the index of the newly added atom |
|
|
|
|
AddBond(...)
AddBond( (RWMol)arg1, (int)beginAtomIdx, (int)endAtomIdx [, (BondType)order=rdkit.Chem.rdchem.BondType.UNSPECIFIED]) -> int :
add a bond, returns the new number of bonds |
|
|
|
|
GetMol(...)
GetMol( (RWMol)arg1) -> Mol :
Returns a Mol (a normal molecule) |
|
|
|
|
RemoveAtom(...)
RemoveAtom( (RWMol)arg1, (int)arg2) -> None :
Remove the specified atom from the molecule |
|
|
|
|
RemoveBond(...)
RemoveBond( (RWMol)arg1, (int)arg2, (int)arg3) -> None :
Remove the specified bond from the molecule |
|
|
|
|
ReplaceAtom(...)
ReplaceAtom( (RWMol)arg1, (int)index, (Atom)newAtom [, (bool)updateLabel=False [, (bool)preserveProps=False]]) -> None :
replaces the specified atom with the provided one
If updateLabel is True, the new atom becomes the active atom
If preserveProps is True preserve keep the existing props unless explicit set on the new atom |
|
|
|
|
ReplaceBond(...)
ReplaceBond( (RWMol)arg1, (int)index, (Bond)newBond [, (bool)preserveProps=False]) -> None :
replaces the specified bond with the provided one. |
|
|
|
|
__copy__(...)
__copy__( (AtomPairsParameters)arg1) -> object : |
|
|
|
|
__deepcopy__(...)
__deepcopy__( (AtomPairsParameters)arg1, (dict)arg2) -> object : |
|
|
|
|
__init__(...)
__init__( (object)arg1, (Mol)arg2) -> None :
Construct from a Mol |
|
|
|
Inherited from Mol:
AddConformer,
ClearComputedProps,
ClearProp,
Compute2DCoords,
ComputeGasteigerCharges,
Debug,
GetAromaticAtoms,
GetAtomWithIdx,
GetAtoms,
GetAtomsMatchingQuery,
GetBondBetweenAtoms,
GetBondWithIdx,
GetBonds,
GetBoolProp,
GetConformer,
GetConformers,
GetDoubleProp,
GetIntProp,
GetNumAtoms,
GetNumBonds,
GetNumConformers,
GetNumHeavyAtoms,
GetProp,
GetPropNames,
GetPropsAsDict,
GetRingInfo,
GetSubstructMatch,
GetSubstructMatches,
GetUnsignedProp,
HasProp,
HasSubstructMatch,
NeedsUpdatePropertyCache,
RemoveAllConformers,
RemoveConformer,
SetBoolProp,
SetDoubleProp,
SetIntProp,
SetProp,
SetUnsignedProp,
ToBinary,
UpdatePropertyCache,
__ge__,
__getinitargs__,
__reduce__,
__str__
Inherited from unreachable.instance:
__new__
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__subclasshook__
|