RDKit
Open-source cheminformatics and machine learning.
|
Groups a variety of molecular query and transformation operations. More...
Namespaces | |
namespace | details |
Classes | |
struct | AdjustQueryParameters |
Parameters controlling the behavior of MolOps::adjustQueryProperties. More... | |
class | Hybridizations |
struct | RemoveHsParameters |
Groups a variety of molecular query and transformation operations.
Possible aromaticity models.
AROMATICITY_DEFAULT
at the moment always uses AROMATICITY_RDKIT
AROMATICITY_RDKIT
is the standard RDKit model (as documented in the RDKit Book)AROMATICITY_SIMPLE
only considers 5- and 6-membered simple rings (it does not consider the outer envelope of fused rings)AROMATICITY_MDL
AROMATICITY_CUSTOM
uses a caller-provided function Enumerator | |
---|---|
AROMATICITY_DEFAULT | future proofing |
AROMATICITY_RDKIT | |
AROMATICITY_SIMPLE | |
AROMATICITY_MDL | |
AROMATICITY_MMFF94 | |
AROMATICITY_CUSTOM | use a function |
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::addHs | ( | const ROMol & | mol, |
bool | explicitOnly = false , |
||
bool | addCoords = false , |
||
const UINT_VECT * | onlyOnAtoms = nullptr , |
||
bool | addResidueInfo = false |
||
) |
returns a copy of a molecule with hydrogens added in as explicit Atoms
mol | the molecule to add Hs to |
explicitOnly | (optional) if this true , only explicit Hs will be added |
addCoords | (optional) If this is true, estimates for the atomic coordinates of the added Hs will be used. |
onlyOnAtoms | (optional) if provided, this should be a vector of IDs of the atoms that will be considered for H addition. |
addResidueInfo | (optional) if this is true, add residue info to hydrogen atoms (useful for PDB files). |
Notes:
addCoords
option if the molecule's heavy atoms don't already have coordinates.delete
ing the pointer this returns. RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::addHs | ( | RWMol & | mol, |
bool | explicitOnly = false , |
||
bool | addCoords = false , |
||
const UINT_VECT * | onlyOnAtoms = nullptr , |
||
bool | addResidueInfo = false |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. modifies the molecule in place
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::adjustHs | ( | RWMol & | mol | ) |
adjust the number of implicit and explicit Hs for special cases
Currently this:
"c1cc[nH]cc1"
mol | the molecule of interest |
Assumptions
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::adjustQueryProperties | ( | const ROMol & | mol, |
const AdjustQueryParameters * | params = nullptr |
||
) |
returns a copy of a molecule with query properties adjusted
mol | the molecule to adjust |
params | controls the adjustments made |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::adjustQueryProperties | ( | RWMol & | mol, |
const AdjustQueryParameters * | params = nullptr |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. modifies the molecule in place
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::assignChiralTypesFrom3D | ( | ROMol & | mol, |
int | confId = -1 , |
||
bool | replaceExistingTags = true |
||
) |
Uses a conformer to assign ChiralTypes to a molecule's atoms.
mol | the molecule of interest |
confId | the conformer to use |
replaceExistingTags | if this flag is true, any existing atomic chiral tags will be replaced |
If the conformer provided is not a 3D conformer, nothing will be done.
NOTE that this does not check to see if atoms are chiral centers (i.e. all substituents are different), it merely sets the chiral type flags based on the coordinates and atom ordering. Use assignStereochemistryFrom3D()
if you want chiral flags only on actual stereocenters.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::assignChiralTypesFromBondDirs | ( | ROMol & | mol, |
int | confId = -1 , |
||
bool | replaceExistingTags = true |
||
) |
Use bond directions to assign ChiralTypes to a molecule's atoms and stereo flags to its bonds.
mol | the molecule of interest |
confId | the conformer to use |
replaceExistingTags | if this flag is true, any existing info about stereochemistry will be replaced |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::assignChiralTypesFromMolParity | ( | ROMol & | mol, |
bool | replaceExistingTags = true |
||
) |
Uses the molParity atom property to assign ChiralType to a molecule's atoms.
mol | the molecule of interest |
replaceExistingTags | if this flag is true, any existing atomic chiral tags will be replaced |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::assignRadicals | ( | RWMol & | mol | ) |
Called by the sanitizer to assign radical counts to atoms.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::assignStereochemistry | ( | ROMol & | mol, |
bool | cleanIt = false , |
||
bool | force = false , |
||
bool | flagPossibleStereoCenters = false |
||
) |
Assign stereochemistry tags to atoms and bonds.
If useLegacyStereoPerception is true, it also does the CIP stereochemistry assignment for the molecule's atoms (R/S) and double bonds (Z/E). This assignment is based on legacy code which is fast, but is known to incorrectly assign CIP labels in some cases. instead, to assign CIP labels based on an accurate, though slower, implementation of the CIP rules, call CIPLabeler::assignCIPLabels(). Chiral atoms will have a property '_CIPCode' indicating their chiral code.
mol | the molecule to use |
cleanIt | if true, any existing values of the property _CIPCode will be cleared, atoms with a chiral specifier that aren't actually chiral (e.g. atoms with duplicate substituents or only 2 substituents, etc.) will have their chiral code set to CHI_UNSPECIFIED. Bonds with STEREOCIS/STEREOTRANS specified that have duplicate substituents based upon the CIP atom ranks will be marked STEREONONE. |
force | causes the calculation to be repeated even if it has already been done |
flagPossibleStereoCenters | set the _ChiralityPossible property on atoms that are possible stereocenters |
Notes:M
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::assignStereochemistryFrom3D | ( | ROMol & | mol, |
int | confId = -1 , |
||
bool | replaceExistingTags = true |
||
) |
Uses a conformer to assign ChiralTypes to a molecule's atoms and stereo flags to its bonds.
mol | the molecule of interest |
confId | the conformer to use |
replaceExistingTags | if this flag is true, any existing info about stereochemistry will be replaced |
If the conformer provided is not a 3D conformer, nothing will be done.
RDKIT_GRAPHMOL_EXPORT bool RDKit::MolOps::atomHasConjugatedBond | ( | const Atom * | at | ) |
returns whether or not the given Atom is involved in a conjugated bond
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::cleanUp | ( | RWMol & | mol | ) |
Designed to be called by the sanitizer to handle special cases before anything is done.
Currently this:
"[N+](=O)[O-]"
[Cl,Br,I](=O)(=O)(=O)O -> [X+3]([O-])([O-])([O-])O
[Cl,Br,I](=O)(=O)O -> [X+3]([O-])([O-])O
[Cl,Br,I](=O)O -> [X+]([O-])Omol | the molecule of interest |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::cleanupAtropisomers | ( | RWMol & | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::cleanupAtropisomers | ( | RWMol & | mol, |
Hybridizations & | hybridizations | ||
) |
removes bogus atropisomeric markers (e.g. those without sp2 begin and end atoms):
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::cleanupChirality | ( | RWMol & | mol | ) |
removes bogus chirality markers (e.g. tetrahedral flags on non-sp3 centers):
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::cleanUpOrganometallics | ( | RWMol & | mol | ) |
Designed to be called by the sanitizer to handle special cases for organometallic species before valence is perceived
Note that this function is experimental and may either change in behavior or be replaced with something else in future releases.
Currently this:
mol | the molecule of interest |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::clearAllBondDirFlags | ( | ROMol & | mol | ) |
removes directions from all bonds. Wiggly bonds and cross bonds will have the property _UnknownStereo set on them
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::clearDirFlags | ( | ROMol & | mol, |
bool | onlyWedgeFlags = false |
||
) |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::clearSingleBondDirFlags | ( | ROMol & | mol, |
bool | onlyWedgeFlags = false |
||
) |
removes directions from single bonds. Wiggly bonds will have the property _UnknownStereo set on them
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::collapseAttachmentPoints | ( | RWMol & | mol, |
bool | markedOnly = true |
||
) |
dummy atoms in the graph are removed and replaced with attachment point annotations on the attached atoms
mol | the molecule of interest |
markedOnly | if true, only dummy atoms with the _fromAttachPoint property will be collapsed |
In order for a dummy atom to be considered for collapsing it must have:
RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::countAtomElec | ( | const Atom * | at | ) |
return the number of electrons available on an atom to donate for aromaticity
The result is determined using the default valency, number of lone pairs, number of bonds and the formal charge. Note that the atom may not donate all of these electrons to a ring for aromaticity (also used in Conjugation and hybridization code).
at | the atom of interest |
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::dativeBondsToHaptic | ( | const ROMol & | mol | ) |
Replaces explicit dative bonds with haptic.
mol | the molecule of interest |
Does the reverse of hapticBondsToDative. If there are multiple contiguous atoms attached by dative bonds to an atom (probably a metal atom), the dative bonds will be replaced by a dummy atom in their centre attached to the (metal) atom by a dative bond, which is labelled with ENDPTS of the atoms that had the original dative bonds.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::dativeBondsToHaptic | ( | RWMol & | mol | ) |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::detectBondStereochemistry | ( | ROMol & | mol, |
int | confId = -1 |
||
) |
RDKIT_GRAPHMOL_EXPORT std::vector< std::unique_ptr< MolSanitizeException > > RDKit::MolOps::detectChemistryProblems | ( | const ROMol & | mol, |
unsigned int | sanitizeOps = SANITIZE_ALL |
||
) |
Identifies chemistry problems (things that don't make chemical sense) in a molecule.
This functions uses the operations in sanitizeMol but does not change the input structure and returns a list of the problems encountered instead of stopping at the first failure,
The problems this looks for come from the sanitization operations:
mol | : the ROMol to be cleaned |
sanitizeOps | : the bits here are used to set which sanitization operations are carried out. The elements of the SanitizeFlags enum define the operations. |
MolSanitizeException
values that indicate what problems were encountered RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::expandAttachmentPoints | ( | RWMol & | mol, |
bool | addAsQueries = true , |
||
bool | addCoords = true |
||
) |
attachment points encoded as attachPt properties are added to the graph as dummy atoms
mol | the molecule of interest |
addAsQueries | if true, the dummy atoms will be added as null queries (i.e. they will match any atom in a substructure search) |
addCoords | if true and the molecule has one or more conformers, positions for the attachment points will be added to the conformer(s). |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::fastFindRings | ( | const ROMol & | mol | ) |
use a DFS algorithm to identify ring bonds and atoms in a molecule
NOTE: though the RingInfo structure is populated by this function, the only really reliable calls that can be made are to check if mol.getRingInfo().numAtomRings(idx) or mol.getRingInfo().numBondRings(idx) return values >0
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::findPotentialStereoBonds | ( | ROMol & | mol, |
bool | cleanIt = false |
||
) |
finds bonds that could be cis/trans in a molecule and mark them as Bond::STEREOANY.
mol | the molecule of interest |
cleanIt | toggles removal of stereo flags from double bonds that can not have stereochemistry |
This function finds any double bonds that can potentially be part of a cis/trans system. No attempt is made here to mark them cis or trans. No attempt is made to detect double bond stereo in ring systems.
This function is useful in the following situations:
The CIPranks on the neighboring atoms are checked in this function. The _CIPCode property if set to any on the double bond.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::findRingFamilies | ( | const ROMol & | mol | ) |
RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::findSSSR | ( | const ROMol & | mol, |
std::vector< std::vector< int > > & | res, | ||
bool | includeDativeBonds = false |
||
) |
finds a molecule's Smallest Set of Smallest Rings
Currently this implements a modified form of Figueras algorithm (JCICS - Vol. 36, No. 5, 1996, 986-991)
mol | the molecule of interest |
res | used to return the vector of rings. Each entry is a vector with atom indices. This information is also stored in the molecule's RingInfo structure, so this argument is optional (see overload) |
includeDativeBonds | - determines whether or not dative bonds are used in the ring finding. |
Base algorithm:
Our Modifications:
These changes were motivated by several factors:
RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::findSSSR | ( | const ROMol & | mol, |
std::vector< std::vector< int > > * | res = nullptr , |
||
bool | includeDativeBonds = false |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
RDKIT_GRAPHMOL_EXPORT double * RDKit::MolOps::get3DDistanceMat | ( | const ROMol & | mol, |
int | confId = -1 , |
||
bool | useAtomWts = false , |
||
bool | force = false , |
||
const char * | propNamePrefix = nullptr |
||
) |
Computes the molecule's 3D distance matrix.
mol | the molecule of interest |
confId | the conformer to use |
useAtomWts | sets the diagonal elements of the result to 6.0/(atomic number) |
force | forces calculation of the matrix, even if already computed |
propNamePrefix | used to set the cached property name (if set to an empty string, the matrix will not be cached) |
Notes
RDKIT_GRAPHMOL_EXPORT double * RDKit::MolOps::getAdjacencyMatrix | ( | const ROMol & | mol, |
bool | useBO = false , |
||
int | emptyVal = 0 , |
||
bool | force = false , |
||
const char * | propNamePrefix = nullptr , |
||
const boost::dynamic_bitset<> * | bondsToUse = nullptr |
||
) |
returns a molecule's adjacency matrix
mol | the molecule of interest |
useBO | toggles use of bond orders in the matrix |
emptyVal | sets the empty value (for non-adjacent atoms) |
force | forces calculation of the matrix, even if already computed |
propNamePrefix | used to set the cached property name |
Notes
delete
this pointer. RDKIT_GRAPHMOL_EXPORT double RDKit::MolOps::getAvgMolWt | ( | const ROMol & | mol, |
bool | onlyHeavy = false |
||
) |
Calculates a molecule's average molecular weight
mol | the molecule of interest |
onlyHeavy | (optional) if this is true (the default is false), only heavy atoms will be included in the MW calculation |
RDKIT_GRAPHMOL_EXPORT double * RDKit::MolOps::getDistanceMat | ( | const ROMol & | mol, |
bool | useBO = false , |
||
bool | useAtomWts = false , |
||
bool | force = false , |
||
const char * | propNamePrefix = nullptr |
||
) |
Computes the molecule's topological distance matrix.
Uses the Floyd-Warshall all-pairs-shortest-paths algorithm.
mol | the molecule of interest |
useBO | toggles use of bond orders in the matrix |
useAtomWts | sets the diagonal elements of the result to 6.0/(atomic number) so that the matrix can be used to calculate Balaban J values. This does not affect the bond weights. |
force | forces calculation of the matrix, even if already computed |
propNamePrefix | used to set the cached property name |
Notes
delete
this pointer. RDKIT_GRAPHMOL_EXPORT double * RDKit::MolOps::getDistanceMat | ( | const ROMol & | mol, |
const std::vector< int > & | activeAtoms, | ||
const std::vector< const Bond * > & | bonds, | ||
bool | useBO = false , |
||
bool | useAtomWts = false |
||
) |
Computes the molecule's topological distance matrix.
Uses the Floyd-Warshall all-pairs-shortest-paths algorithm.
mol | the molecule of interest |
activeAtoms | only elements corresponding to these atom indices will be included in the calculation |
bonds | only bonds found in this list will be included in the calculation |
useBO | toggles use of bond orders in the matrix |
useAtomWts | sets the diagonal elements of the result to 6.0/(atomic number) so that the matrix can be used to calculate Balaban J values. This does not affect the bond weights. |
Notes
delete
this pointer. RDKIT_GRAPHMOL_EXPORT double RDKit::MolOps::getExactMolWt | ( | const ROMol & | mol, |
bool | onlyHeavy = false |
||
) |
Calculates a molecule's exact molecular weight
mol | the molecule of interest |
onlyHeavy | (optional) if this is true (the default is false), only heavy atoms will be included in the MW calculation |
RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::getFormalCharge | ( | const ROMol & | mol | ) |
sums up all atomic formal charges and returns the result
RDKIT_GRAPHMOL_EXPORT std::string RDKit::MolOps::getMolFormula | ( | const ROMol & | mol, |
bool | separateIsotopes = false , |
||
bool | abbreviateHIsotopes = true |
||
) |
Calculates a molecule's formula
mol | the molecule of interest |
separateIsotopes | if true, isotopes will show up separately in the formula. So C[13CH2]O will give the formula: C[13C]H6O |
abbreviateHIsotopes | if true, 2H and 3H will be represented as D and T instead of [2H] and [3H]. This only applies if separateIsotopes is true |
RDKIT_GRAPHMOL_EXPORT std::vector< boost::shared_ptr< ROMol > > RDKit::MolOps::getMolFrags | ( | const ROMol & | mol, |
bool | sanitizeFrags = true , |
||
std::vector< int > * | frags = nullptr , |
||
std::vector< std::vector< int > > * | fragsMolAtomMapping = nullptr , |
||
bool | copyConformers = true |
||
) |
splits a molecule into its component fragments (disconnected components of the molecular graph)
mol | the molecule of interest |
sanitizeFrags | toggles sanitization of the fragments after they are built |
frags | used to return the mapping of Atoms->fragments. if provided, frags will be mol->getNumAtoms() long on return and will contain the fragment assignment for each Atom |
fragsMolAtomMapping | used to return the Atoms in each fragment On return mapping will be numFrags long, and each entry will contain the indices of the Atoms in that fragment. |
copyConformers | toggles copying conformers of the fragments after they are built |
RDKIT_GRAPHMOL_EXPORT unsigned int RDKit::MolOps::getMolFrags | ( | const ROMol & | mol, |
std::vector< int > & | mapping | ||
) |
find fragments (disconnected components of the molecular graph)
mol | the molecule of interest |
mapping | used to return the mapping of Atoms->fragments. On return mapping will be mol->getNumAtoms() long and will contain the fragment assignment for each Atom |
RDKIT_GRAPHMOL_EXPORT unsigned int RDKit::MolOps::getMolFrags | ( | const ROMol & | mol, |
std::vector< std::unique_ptr< ROMol > > & | molFrags, | ||
bool | sanitizeFrags = true , |
||
std::vector< int > * | frags = nullptr , |
||
std::vector< std::vector< int > > * | fragsMolAtomMapping = nullptr , |
||
bool | copyConformers = true |
||
) |
splits a molecule into its component fragments (disconnected components of the molecular graph)
mol | the molecule of interest |
molFrags | used to return the disconnected fragments as molecules. Any contents on input will be cleared. |
sanitizeFrags | toggles sanitization of the fragments after they are built |
frags | used to return the mapping of Atoms->fragments. if provided, frags will be mol->getNumAtoms() long on return and will contain the fragment assignment for each Atom. |
fragsMolAtomMapping | used to return the Atoms in each fragment On return mapping will be numFrags long, and each entry will contain the indices of the Atoms in that fragment. |
copyConformers | toggles copying conformers of the fragments after they are built |
RDKIT_GRAPHMOL_EXPORT unsigned int RDKit::MolOps::getMolFrags | ( | const ROMol & | mol, |
std::vector< std::vector< int > > & | frags | ||
) |
find fragments (disconnected components of the molecular graph)
mol | the molecule of interest |
frags | used to return the Atoms in each fragment On return mapping will be numFrags long, and each entry will contain the indices of the Atoms in that fragment. |
RDKIT_GRAPHMOL_EXPORT std::map< T, boost::shared_ptr< ROMol > > RDKit::MolOps::getMolFragsWithQuery | ( | const ROMol & | mol, |
T(*)(const ROMol &, const Atom *) | query, | ||
bool | sanitizeFrags = true , |
||
const std::vector< T > * | whiteList = nullptr , |
||
bool | negateList = false |
||
) |
splits a molecule into pieces based on labels assigned using a query
mol | the molecule of interest |
query | the query used to "label" the molecule for fragmentation |
sanitizeFrags | toggles sanitization of the fragments after they are built |
whiteList | if provided, only labels in the list will be kept |
negateList | if true, the white list logic will be inverted: only labels not in the list will be kept |
RDKIT_GRAPHMOL_EXPORT unsigned int RDKit::MolOps::getMolFragsWithQuery | ( | const ROMol & | mol, |
T(*)(const ROMol &, const Atom *) | query, | ||
std::map< T, std::unique_ptr< ROMol > > & | molFrags, | ||
bool | sanitizeFrags = true , |
||
const std::vector< T > * | whiteList = nullptr , |
||
bool | negateList = false |
||
) |
splits a molecule into pieces based on labels assigned using a query, putting them into a map of std::unique_ptr<ROMol>.
mol | the molecule of interest |
query | the query used to "label" the molecule for fragmentation |
molFrags | used to return the disconnected fragments as molecules. Any contents on input will be cleared. |
sanitizeFrags | toggles sanitization of the fragments after they are built |
whiteList | if provided, only labels in the list will be kept |
negateList | if true, the white list logic will be inverted: only labels not in the list will be kept |
RDKIT_GRAPHMOL_EXPORT unsigned RDKit::MolOps::getNumAtomsWithDistinctProperty | ( | const ROMol & | mol, |
std::string | prop | ||
) |
returns the number of atoms which have a particular property set
RDKIT_GRAPHMOL_EXPORT std::list< int > RDKit::MolOps::getShortestPath | ( | const ROMol & | mol, |
int | aid1, | ||
int | aid2 | ||
) |
Find the shortest path between two atoms.
Uses the Bellman-Ford algorithm
mol | molecule of interest |
aid1 | index of the first atom |
aid2 | index of the second atom |
Notes:
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::hapticBondsToDative | ( | const ROMol & | mol | ) |
Replaces haptic bond with explicit dative bonds.
mol | the molecule of interest |
One way of showing haptic bonds (such as cyclopentadiene to iron in ferrocene) is to use a dummy atom with a dative bond to the iron atom with the bond labelled with the atoms involved in the organic end of the bond. Another way is to have explicit dative bonds from the atoms of the haptic group to the metal atom. This function converts the former representation to the latter.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::hapticBondsToDative | ( | RWMol & | mol | ) |
RDKIT_GRAPHMOL_EXPORT std::pair< bool, bool > RDKit::MolOps::hasQueryHs | ( | const ROMol & | mol | ) |
returns a pair of booleans (hasQueryHs, hasUnmergaebleQueryHs)
This is really intended to be used with molecules that contain QueryAtoms such as when checking smarts patterns for explicit hydrogens
mol | the molecule to check for query Hs from |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::Kekulize | ( | RWMol & | mol, |
bool | markAtomsBonds = true , |
||
unsigned int | maxBackTracks = 100 |
||
) |
Kekulizes the molecule.
mol | the molecule of interest |
markAtomsBonds | if this is set to true, isAromatic boolean settings on both the Bonds and Atoms are turned to false following the Kekulization, otherwise they are left alone in their original state. |
maxBackTracks | the maximum number of attempts at back-tracking. The algorithm uses a back-tracking procedure to revisit a previous setting of double bond if we hit a wall in the kekulization process |
Notes:
markAtomsBonds
is false
the BondType
for all modified aromatic bonds will be changed from RDKit::Bond::AROMATIC
to RDKit::Bond::SINGLE
or RDKit::Bond::DOUBLE during Kekulization. RDKIT_GRAPHMOL_EXPORT bool RDKit::MolOps::KekulizeIfPossible | ( | RWMol & | mol, |
bool | markAtomsBonds = true , |
||
unsigned int | maxBackTracks = 100 |
||
) |
Kekulizes the molecule if possible. If the kekulization fails the molecule will not be modified
mol | the molecule of interest |
markAtomsBonds | if this is set to true, isAromatic boolean settings on both the Bonds and Atoms are turned to false following the Kekulization, otherwise they are left alone in their original state. |
maxBackTracks | the maximum number of attempts at back-tracking. The algorithm uses a back-tracking procedure to revisit a previous setting of double bond if we hit a wall in the kekulization process |
Notes:
markAtomsBonds
is false
the BondType
for all aromatic bonds will be changed from RDKit::Bond::AROMATIC
to RDKit::Bond::SINGLE
or RDKit::Bond::DOUBLE during Kekulization. RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::mergeQueryHs | ( | const ROMol & | mol, |
bool | mergeUnmappedOnly = false , |
||
bool | mergeIsotopes = false |
||
) |
returns a copy of a molecule with hydrogens removed and added as queries to the heavy atoms to which they are bound.
This is really intended to be used with molecules that contain QueryAtoms
mol | the molecule to remove Hs from |
Notes:
"[H][H]"
from having all atoms removed.delete
ing the pointer this returns.RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::mergeQueryHs | ( | RWMol & | mol, |
bool | mergeUnmappedOnly = false , |
||
bool | mergeIsotopes = false |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. modifies the molecule in place
RDKIT_GRAPHMOL_EXPORT bool RDKit::MolOps::needsHs | ( | const ROMol & | mol | ) |
returns whether or not a molecule needs to have Hs added to it.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::parseAdjustQueryParametersFromJSON | ( | MolOps::AdjustQueryParameters & | p, |
const std::string & | json | ||
) |
updates an AdjustQueryParameters object from a JSON string
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::removeAllHs | ( | const ROMol & | mol, |
bool | sanitize = true |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. The caller owns the pointer this returns
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::removeAllHs | ( | RWMol & | mol, |
bool | sanitize = true |
||
) |
removes all Hs from a molecule
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::removeHs | ( | const ROMol & | mol, |
bool | implicitOnly = false , |
||
bool | updateExplicitCount = false , |
||
bool | sanitize = true |
||
) |
returns a copy of a molecule with hydrogens removed
mol | the molecule to remove Hs from |
implicitOnly | (optional) if this true , only implicit Hs will be removed |
updateExplicitCount | (optional) If this is true , when explicit Hs are removed from the graph, the heavy atom to which they are bound will have its counter of explicit Hs increased. |
sanitize | (optional) If this is true , the final molecule will be sanitized |
Notes:
"[H][H]"
from having all atoms removed.delete
ing the pointer this returns. Referenced by RDKit::RGroupMatch::getTargetMoleculeForHighlights().
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::removeHs | ( | const ROMol & | mol, |
const RemoveHsParameters & | ps, | ||
bool | sanitize = true |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. The caller owns the pointer this returns
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::removeHs | ( | RWMol & | mol, |
bool | implicitOnly = false , |
||
bool | updateExplicitCount = false , |
||
bool | sanitize = true |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. modifies the molecule in place
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::removeHs | ( | RWMol & | mol, |
const RemoveHsParameters & | ps, | ||
bool | sanitize = true |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. modifies the molecule in place
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::removeStereochemistry | ( | ROMol & | mol | ) |
Removes all stereochemistry information from atoms (i.e. R/S) and bonds i.e. Z/E)
mol | the molecule of interest |
RDKIT_GRAPHMOL_EXPORT ROMol * RDKit::MolOps::renumberAtoms | ( | const ROMol & | mol, |
const std::vector< unsigned int > & | newOrder | ||
) |
returns a copy of a molecule with the atoms renumbered
mol | the molecule to work with |
newOrder | the new ordering of the atoms (should be numAtoms long) for example: if newOrder is [3,2,0,1], then atom 3 in the original molecule will be atom 0 in the new one |
Notes:
delete
ing the pointer this returns. RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::sanitizeMol | ( | RWMol & | mol | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::sanitizeMol | ( | RWMol & | mol, |
unsigned int & | operationThatFailed, | ||
unsigned int | sanitizeOps = SANITIZE_ALL |
||
) |
carries out a collection of tasks for cleaning up a molecule and ensuring that it makes "chemical sense"
This functions calls the following in sequence
mol | : the RWMol to be cleaned |
operationThatFailed | : the first (if any) sanitization operation that fails is set here. The values are taken from the SanitizeFlags enum. On success, the value is SanitizeFlags::SANITIZE_NONE |
sanitizeOps | : the bits here are used to set which sanitization operations are carried out. The elements of the SanitizeFlags enum define the operations. |
Notes:
MolSanitizeException
will be thrown.RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::setAromaticity | ( | RWMol & | mol, |
AromaticityModel | model = AROMATICITY_DEFAULT , |
||
int(*)(RWMol &) | func = nullptr |
||
) |
Sets up the aromaticity for a molecule.
This is what happens here:
mol | the RWMol of interest |
model | the aromaticity model to use |
func | a custom function for assigning aromaticity (only used when model=AROMATICITY_CUSTOM ) |
Assumptions:
MolOps::Kekulize()
has already been called) RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::setBondStereoFromDirections | ( | ROMol & | mol | ) |
Assign CIS/TRANS bond stereochemistry tags based on neighboring directions
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::setConjugation | ( | ROMol & | mol | ) |
flags the molecule's conjugated bonds
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::setDoubleBondNeighborDirections | ( | ROMol & | mol, |
const Conformer * | conf = nullptr |
||
) |
Sets bond directions based on double bond stereochemistry.
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::setHybridization | ( | ROMol & | mol | ) |
calculates and sets the hybridization of all a molecule's Stoms
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::setMMFFAromaticity | ( | RWMol & | mol | ) |
RDKIT_GRAPHMOL_EXPORT void RDKit::MolOps::setTerminalAtomCoords | ( | ROMol & | mol, |
unsigned int | idx, | ||
unsigned int | otherIdx | ||
) |
Sets Cartesian coordinates for a terminal atom. Useful for growing an atom off a molecule with sensible coordinates based on the geometry of the neighbor.
NOTE: this sets appropriate coordinates in all of the molecule's conformers.
mol | the molecule the atoms belong to |
idx | index of the terminal atom whose coordinates are set |
otherIdx | index of the bonded neighbor atom |
RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::symmetrizeSSSR | ( | ROMol & | mol, |
bool | includeDativeBonds = false |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
RDKIT_GRAPHMOL_EXPORT int RDKit::MolOps::symmetrizeSSSR | ( | ROMol & | mol, |
std::vector< std::vector< int > > & | res, | ||
bool | includeDativeBonds = false |
||
) |
symmetrize the molecule's Smallest Set of Smallest Rings
SSSR rings obatined from "findSSSR" can be non-unique in some case. For example, cubane has five SSSR rings, not six as one would hope.
This function adds additional rings to the SSSR list if necessary to make the list symmetric, e.g. all atoms in cubane will be part of the same number of SSSRs. This function choses these extra rings from the extra rings computed and discarded during findSSSR. The new ring are chosen such that:
mol | - the molecule of interest |
res | used to return the vector of rings. Each entry is a vector with atom indices. This information is also stored in the molecule's RingInfo structure, so this argument is optional (see overload) |
includeDativeBonds | - determines whether or not dative bonds are used in the ring finding. |
Notes: