Getting Started With The RDKit in Python - The RDKit 2020.03.1 Documentation PDF
Getting Started With The RDKit in Python - The RDKit 2020.03.1 Documentation PDF
Important note
Beginning with the 2019.03 release, the RDKit is no longer supporting Python 2. If you need to continue using
Python 2, please stick with a release from the 2018.09 release cycle.
What is this?
This document is intended to provide an overview of how one can use the RDKit functionality from Python. It’s not
comprehensive and it’s not a manual.
If you find mistakes, or have suggestions for improvements, please either fix them yourselves in the source
document (the .rst file) or send them to the mailing list: [email protected] In particular, if you find
yourself spending time working out how to do something that doesn’t appear to be documented please contribute
by writing it up for this document. Contributing to the documentation is a great service both to the RDKit community
and to your future self.
>>> m = Chem.MolFromSmiles('Cc1ccccc1')
>>> m = Chem.MolFromMolFile('data/input.mol')
>>> stringWithMolData=open('data/input.mol','r').read()
>>> m = Chem.MolFromMolBlock(stringWithMolData)
>>> m
<rdkit.Chem.rdchem.Mol object at 0x...>
or None on failure:
>>> m = Chem.MolFromMolFile('data/invalid.mol')
>>> m is None
True
>>> m1 = Chem.MolFromSmiles('CO(C)C')
displays a message like: [12:18:01] Explicit valence for atom # 1 O greater than permitted
and
>>> m2 = Chem.MolFromSmiles('c1cc1')
displays something like: [12:20:41] Can't kekulize mol. In each case the value None is returned:
>>> m1 is None
True
/
>>> m2 is None
True
>>> suppl[0].GetNumAtoms()
20
A good practice is to test each molecule to see if it was correctly read before working with it:
This means that they can be used to read from compressed files:
/
>>> fsuppl[0]
Traceback (most recent call last):
...
TypeError: 'ForwardSDMolSupplier' object does not support indexing
Writing molecules
Single molecules can be converted to text using several functions present in the rdkit.Chem module.
>>> m = Chem.MolFromMolFile('data/chiral.mol')
>>> Chem.MolToSmiles(m)
'C[C@H](O)c1ccccc1'
>>> Chem.MolToSmiles(m,isomericSmiles=False)
'CC(O)c1ccccc1'
Note that the SMILES provided is canonical, so the output should be the same no matter how a particular molecule
is input:
>>> Chem.MolToSmiles(Chem.MolFromSmiles('C1=CC=CN=C1'))
'c1ccncc1'
>>> Chem.MolToSmiles(Chem.MolFromSmiles('c1cccnc1'))
'c1ccncc1'
>>> Chem.MolToSmiles(Chem.MolFromSmiles('n1ccccc1'))
'c1ccncc1'
If you’d like to have the Kekule form of the SMILES, first Kekulize the molecule, then use the “kekuleSmiles” option:
>>> Chem.Kekulize(m)
>>> Chem.MolToSmiles(m,kekuleSmiles=True)
'C[C@H](O)C1=CC=CC=C1'
Note: as of this writing (Aug 2008), the smiles provided when one requests kekuleSmiles are not canonical. The
limitation is not in the SMILES generation, but in the kekulization itself.
>>> m2 = Chem.MolFromSmiles('C1CCC1')
>>> print(Chem.MolToMolBlock(m2))
RDKit 2D
4 4 0 0 0 0 0 0 0 0999 V2000
1.0607 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.0000 -1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.0607 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
To include names in the mol blocks, set the molecule’s “_Name” property:
>>> m2.SetProp("_Name","cyclobutane")
>>> print(Chem.MolToMolBlock(m2))
cyclobutane
RDKit 2D
4 4 0 0 0 0 0 0 0 0999 V2000
1.0607 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.0000 -1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.0607 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0 /
2 3 1 0
3 4 1 0
4 1 1 0
M END
In order for atom or bond stereochemistry to be recognised correctly by most software, it’s essential that the mol
block have atomic coordinates. It’s also convenient for many reasons, such as drawing the molecules. Generating a
mol block for a molecule that does not have coordinates will, by default, automatically cause coordinates to be
generated. These are not, however, stored with the molecule. Coordinates can be generated and stored with the
molecule using functionality in the rdkit.Chem.AllChem module (see the Chem vs AllChem section for more
information).
44 0 0 0 0 0 0 0 0999 V2000
1.0607 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.0000 -1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.0607 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
Or you can add 3D coordinates by embedding the molecule (this uses the ETKDG method, which is described in
more detail below):
44 0 0 0 0 0 0 0 0999 V2000
-0.7372 -0.6322 -0.4324 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.4468 0.8555 -0.5229 C 0 0 0 0 0 0 0 0 0 0 0 0
0.8515 0.5725 0.2205 C 0 0 0 0 0 0 0 0 0 0 0 0
0.3326 -0.7959 0.6107 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
To get good 3D conformations, it’s almost always a good idea to add hydrogens to the molecule first:
>>> m3 = Chem.AddHs(m2)
>>> AllChem.EmbedMolecule(m3,randomSeed=0xf00d) # optional random seed for reproduc
0
>>> m3 = Chem.RemoveHs(m3)
>>> print(Chem.MolToMolBlock(m3))
cyclobutane
RDKit 3D
/
4 4 0 0 0 0 0 0 0 0999 V2000
1.0256 0.2491 -0.0964 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.2041 0.9236 0.4320 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.0435 -0.2466 -0.0266 C 0 0 0 0 0 0 0 0 0 0 0 0
0.2104 -0.9922 -0.3417 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
If you’d like to write the molecules to a file, use Python file objects:
>>> print(Chem.MolToMolBlock(m2),file=open('data/foo.mol','w+'))
>>>
>>> w = Chem.SDWriter('data/foo.sdf')
>>> for m in mols: w.write(m)
...
>>>
20 22 0 0 1 0 0 0 0 0999 V2000
2.3200 0.0800 -0.1000 C 0 0 0 0 0 0 0 0 0 0 0 0
1.8400 -1.2200 0.1200 C 0 0 0 0 0 0 0 0 0 0 0 0
...
1 3 1 0
1 4 1 0
2 5 1 0
M END
$$$$
>>> m = Chem.MolFromSmiles('C1OC1')
>>> for atom in m.GetAtoms():
... print(atom.GetAtomicNum())
...
6
8
6
>>> print(m.GetBonds()[0].GetBondType())
SINGLE
Ring Information
Atoms and bonds both carry information about the molecule’s rings:
>>> m = Chem.MolFromSmiles('OC1C2C1CC2')
>>> m.GetAtomWithIdx(0).IsInRing()
False
>>> m.GetAtomWithIdx(1).IsInRing()
True
>>> m.GetAtomWithIdx(2).IsInRingSize(3)
True
>>> m.GetAtomWithIdx(2).IsInRingSize(4)
True
>>> m.GetAtomWithIdx(2).IsInRingSize(5)
False
>>> m.GetBondWithIdx(1).IsInRingSize(3)
True
>>> m.GetBondWithIdx(1).IsInRing()
True
But note that the information is only about the smallest rings:
>>> m.GetAtomWithIdx(1).IsInRingSize(5)
False
More detail about the smallest set of smallest rings (SSSR) is available:
As the name indicates, this is a symmetrized SSSR; if you are interested in the number of “true” SSSR, use the
GetSSSR function.
>>> Chem.GetSSSR(m)
2
The distinction between symmetrized and non-symmetrized SSSR is discussed in more detail below in the section
The SSSR Problem.
For more efficient queries about a molecule’s ring systems (avoiding repeated calls to Mol.GetAtomWithIdx), use
the rdkit.Chem.rdchem.RingInfo class:
/
>>> m = Chem.MolFromSmiles('OC1C2C1CC2')
>>> ri = m.GetRingInfo()
>>> ri.NumAtomRings(0)
0
>>> ri.NumAtomRings(1)
1
>>> ri.NumAtomRings(2)
2
>>> ri.IsAtomInRingOfSize(1,3)
True
>>> ri.IsBondInRingOfSize(1,3)
True
Modifying molecules
Normally molecules are stored in the RDKit with the hydrogen atoms implicit (e.g. not explicitly present in the
molecular graph. When it is useful to have the hydrogens explicitly present, for example when generating or
optimizing the 3D geometry, the :py:func:rdkit.Chem.rdmolops.AddHs function can be used:
>>> m=Chem.MolFromSmiles('CCO')
>>> m.GetNumAtoms()
3
>>> m2 = Chem.AddHs(m)
>>> m2.GetNumAtoms()
9
>>> m3 = Chem.RemoveHs(m2)
>>> m3.GetNumAtoms()
3
RDKit molecules are usually stored with the bonds in aromatic rings having aromatic bond types. This can be
changed with the rdkit.Chem.rdmolops.Kekulize() function:
>>> m = Chem.MolFromSmiles('c1ccccc1')
>>> m.GetBondWithIdx(0).GetBondType()
rdkit.Chem.rdchem.BondType.AROMATIC
>>> Chem.Kekulize(m)
>>> m.GetBondWithIdx(0).GetBondType()
rdkit.Chem.rdchem.BondType.DOUBLE
>>> m.GetBondWithIdx(1).GetBondType()
rdkit.Chem.rdchem.BondType.SINGLE
>>> m.GetBondWithIdx(1).GetIsAromatic()
True
because the flags in the original molecule are not cleared (clearAromaticFlags defaults to False). You can explicitly
force or decline a clearing of the flags:
>>> m = Chem.MolFromSmiles('c1ccccc1')
>>> m.GetBondWithIdx(0).GetIsAromatic()
True
>>> m1 = Chem.MolFromSmiles('c1ccccc1')
>>> Chem.Kekulize(m1, clearAromaticFlags=True)
>>> m1.GetBondWithIdx(0).GetIsAromatic()
False
Bonds can be restored to the aromatic bond type using the rdkit.Chem.rdmolops.SanitizeMol() function:
>>> Chem.SanitizeMol(m)
rdkit.Chem.rdmolops.SanitizeFlags.SANITIZE_NONE
/
>>> m.GetBondWithIdx(0).GetBondType()
rdkit.Chem.rdchem.BondType.AROMATIC
>>> m = Chem.MolFromSmiles('c1nccc2n1ccc2')
>>> AllChem.Compute2DCoords(m)
0
The 2D conformation is constructed in a canonical orientation and is built to minimize intramolecular clashes, i.e. to
maximize the clarity of the drawing.
If you have a set of molecules that share a common template and you’d like to align them to that template, you can
do so as follows:
Running this process for a couple of other molecules gives the following depictions:
Another option for Compute2DCoords allows you to generate 2D depictions for molecules that closely mimic 3D
conformations. This is available using the function
rdkit.Chem.AllChem.GenerateDepictionMatching3DStructure().
Here is an illustration of the results using the ligand from PDB structure 1XP0:
1. The molecule’s distance bounds matrix is calculated based on the connection table and a set of rules.
2. The bounds matrix is smoothed using a triangle-bounds smoothing algorithm.
3. A random distance matrix that satisfies the bounds matrix is generated.
4. This distance matrix is embedded in 3D dimensions (producing coordinates for each atom).
5. The resulting coordinates are cleaned up somewhat using a crude force field and the bounds matrix.
Note that the conformations that result from this procedure tend to be fairly ugly. They should be cleaned up using a
force field. This can be done within the RDKit using its implementation of the Universal Force Field (UFF). [2]
More recently, there is an implementation of the method of Riniker and Landrum [18] which uses torsion angle
preferences from the Cambridge Structural Database (CSD) to correct the conformers after distance geometry has
been used to generate them. With this method, there should be no need to use a minimisation step to clean up the
structures.
Since the 2018.09 release of the RDKit, ETKDG is the default conformation generation method.
The full process of embedding a molecule is easier than all the above verbiage makes it sound:
>>> m2=Chem.AddHs(m)
>>> AllChem.EmbedMolecule(m2)
0
The RDKit also has an implementation of the MMFF94 force field available. [12], [13], [14], [15], [16] Please note
that the MMFF atom typing code uses its own aromaticity model, so the aromaticity flags of the molecule will be
modified after calling MMFF-related methods.
>>> m = Chem.MolFromSmiles('C1CCC1OC')
>>> m2=Chem.AddHs(m)
>>> AllChem.EmbedMolecule(m2)
0
>>> AllChem.MMFFOptimizeMolecule(m2)
0
Note the calls to Chem.AddHs() in the examples above. By default RDKit molecules do not have H atoms explicitly
present in the graph, but they are important for getting realistic geometries, so they generally should be added.
They can always be removed afterwards if necessary with a call to Chem.RemoveHs().
With the RDKit, multiple conformers can also be generated using the different embedding methods. In both cases
this is simply a matter of running the distance geometry calculation multiple times from different random start points.
The option numConfs allows the user to set the number of conformers that should be generated. Otherwise the
procedures are as before. The conformers so generated can be aligned to each other and the RMS values
calculated.
>>> m = Chem.MolFromSmiles('C1CCC1OC')
>>> m2=Chem.AddHs(m)
>>> # run ETKDG 10 times
>>> cids = AllChem.EmbedMultipleConfs(m2, numConfs=10)
>>> print(len(cids))
10
>>> rmslist = []
>>> AllChem.AlignMolConformers(m2, RMSlist=rmslist)
/
>>> print(len(rmslist))
9
rmslist contains the RMS values between the first conformer and all others. The RMS between two specific
conformers (e.g. 1 and 9) can also be calculated. The flag prealigned lets the user specify if the conformers are
already aligned (by default, the function aligns them).
If you are interested in running MMFF94 on a molecule’s conformers (note that this is often not necessary when
using ETKDG), there’s a convenience function available:
The result is a list a containing 2-tuples: (not_converged, energy) for each conformer. If not_converged is
0, the minimization for that conformer converged.
Setting numThreads to zero causes the software to use the maximum number of threads allowed on your
computer.
Disclaimer/Warning: Conformation generation is a difficult and subtle task. The original 2D->3D conversion
provided with the RDKit was not intended to be a replacement for a “real” conformational analysis tool; it merely
provides quick 3D structures for cases when they are required. We believe, however, that the newer ETKDG
method[#riniker2]_ should be adequate for most purposes.
Preserving Molecules
Molecules can be converted to and from text using Python’s pickling machinery:
>>> m = Chem.MolFromSmiles('c1ccncc1')
>>> import pickle
>>> pkl = pickle.dumps(m)
>>> m2=pickle.loads(pkl)
>>> Chem.MolToSmiles(m2)
'c1ccncc1'
The RDKit pickle format is fairly compact and it is much, much faster to build a molecule from a pickle than from a
Mol file or SMILES string, so storing molecules you will be working with repeatedly as pickles can be a good idea.
The raw binary data that is encapsulated in a pickle can also be directly obtained from a molecule:
>>> m2 = Chem.Mol(binStr)
>>> Chem.MolToSmiles(m2)
'c1ccncc1'
>>> len(binStr)
123
/
Note that this is smaller than the pickle:
The small overhead associated with python’s pickling machinery normally doesn’t end up making much of a
difference for collections of larger molecules (the extra data associated with the pickle is independent of the size of
the molecule, while the binary string increases in length as the molecule gets larger).
Tip: The performance difference associated with storing molecules in a pickled form on disk instead of constantly
reparsing an SD file or SMILES table is difficult to overstate. In a test I just ran on my laptop, loading a set of 699
drug-like molecules from an SD file took 10.8 seconds; loading the same molecules from a pickle file took 0.7
seconds. The pickle file is also smaller – 1/3 the size of the SD file – but this difference is not always so dramatic
(it’s a particularly fat SD file).
Drawing Molecules
The RDKit has some built-in functionality for creating images from molecules found in the rdkit.Chem.Draw
package:
>>> img=Draw.MolsToGridImage(ms[:8],molsPerRow=4,subImgSize=(200,200),legends=[x.GetP
>>> img.save('images/cdk2_molgrid.o.png')
/
These would of course look better if the common core were aligned. This is easy enough to do:
>>> p = Chem.MolFromSmiles('[nH]1cnc2cncnc21')
>>> subms = [x for x in ms if x.HasSubstructMatch(p)]
>>> len(subms)
14
>>> AllChem.Compute2DCoords(p)
0
>>> for m in subms: AllChem.GenerateDepictionMatching2DStructure(m,p)
>>> img=Draw.MolsToGridImage(subms,molsPerRow=4,subImgSize=(200,200),legends=[x.GetP
>>> img.save('images/cdk2_molgrid.aligned.o.png'))
/
Atoms in a molecule can be highlighted by drawing a coloured solid or open circle around them, and bonds likewise
can have a coloured outline applied. An obvious use is to show atoms and bonds that have matched a substructure
query
will produce:
/
It is possible to specify the colours for individual atoms and bonds:
to give:
Atoms and bonds can also be highlighted with multiple colours if they fall into multiple sets, for example if they are
matched by more than 1 substructure pattern. This is too complicated to show in this simple introduction, but there
is an example in data/test_multi_colours.py, which produces the somewhat garish
/
As of version 2020.03, it is possible to add arbitrary small strings to annotate atoms and bonds in the drawing. The
strings are added as properties ‘atomNote’ and ‘bondNote’ and they will be placed automatically close to the atom
or bond in question in a manner intended to minimise their clash with the rest of the drawing. For convenience, here
are 3 flags in MolDraw2DOptions that will add stereo information (R/S to atoms, E/Z to bonds) and atom and
bond sequence numbers.
will produce
Substructure Searching
Substructure matching can be done using query molecules built from SMARTS:
>>> m = Chem.MolFromSmiles('c1ccccc1O')
>>> patt = Chem.MolFromSmarts('ccO')
>>> m.HasSubstructMatch(patt)
True
>>> m.GetSubstructMatch(patt)
(0, 5, 6)
Those are the atom indices in m, ordered as patt’s atoms. To get all of the matches:
/
>>> m.GetSubstructMatches(patt)
((0, 5, 6), (4, 5, 6))
We can write the same thing more compactly using Python’s list comprehension syntax:
Substructure matching can also be done using molecules built from SMILES instead of SMARTS:
>>> m = Chem.MolFromSmiles('C1=CC=CC=C1OC')
>>> m.HasSubstructMatch(Chem.MolFromSmarts('CO'))
True
>>> m.HasSubstructMatch(Chem.MolFromSmiles('CO'))
True
But don’t forget that the semantics of the two languages are not exactly equivalent:
>>> m.HasSubstructMatch(Chem.MolFromSmiles('COC'))
True
>>> m.HasSubstructMatch(Chem.MolFromSmarts('COC'))
False
>>> m.HasSubstructMatch(Chem.MolFromSmarts('COc')) #<- need an aromatic C
True
>>> m = Chem.MolFromSmiles('CC[C@H](F)Cl')
>>> m.HasSubstructMatch(Chem.MolFromSmiles('C[C@H](F)Cl'))
True
>>> m.HasSubstructMatch(Chem.MolFromSmiles('C[C@@H](F)Cl'))
True
>>> m.HasSubstructMatch(Chem.MolFromSmiles('CC(F)Cl'))
True
>>> m.HasSubstructMatch(Chem.MolFromSmiles('C[C@H](F)Cl'),useChirality=True)
True
>>> m.HasSubstructMatch(Chem.MolFromSmiles('C[C@@H](F)Cl'),useChirality=True)
False
>>> m.HasSubstructMatch(Chem.MolFromSmiles('CC(F)Cl'),useChirality=True)
True
Notice that when useChirality is set a non-chiral query does match a chiral molecule. The same is not true for a
chiral query and a non-chiral molecule:
>>> m.HasSubstructMatch(Chem.MolFromSmiles('CC(F)Cl'))
True
>>> m2 = Chem.MolFromSmiles('CCC(F)Cl')
/
>>> m2.HasSubstructMatch(Chem.MolFromSmiles('C[C@H](F)Cl'),useChirality=True)
False
Then, when using the query on a molecule you can get the indices of the four matching atoms like this:
Here’s an example of how you can use the functionality to do “Markush-like” matching, requiring that all atoms in a
sidechain are either carbon (type “all_carbon”) or aren’t aromatic (type “alkyl”). We start by defining the class that
we’ll use to test the sidechains:
class SidechainChecker(object):
matchers = {
'alkyl': lambda at: not at.GetIsAromatic(),
'all_carbon': lambda at: at.GetAtomicNum() == 6
}
>>> m = Chem.MolFromSmiles('C2NCC2CC1C(CCCC)C(OCCCC)C1c2ccccc2')
>>> p = Chem.MolFromSmarts('C1CCC1*')
>>> p.GetAtomWithIdx(4).SetProp("queryType", "all_carbon")
>>> m.GetSubstructMatches(p)
((5, 6, 11, 17, 18), (5, 17, 11, 6, 7), (6, 5, 17, 11, 12), (6, 11, 17, 5, 4))
Chemical Transformations
The RDKit contains a number of functions for modifying molecules. Note that these transformation functions are
intended to provide an easy way to make simple modifications to molecules. For more complex transformations,
use the Chemical Reactions functionality.
Substructure-based transformations
There’s a variety of functionality for using the RDKit’s substructure-matching machinery for doing quick molecular
transformations. These transformations include deleting substructures:
>>> m = Chem.MolFromSmiles('CC(=O)O')
>>> patt = Chem.MolFromSmarts('C(=O)[OH]')
>>> rm = AllChem.DeleteSubstructs(m,patt)
>>> Chem.MolToSmiles(rm)
'C'
replacing substructures:
>>> m1 = Chem.MolFromSmiles('BrCCc1cncnc1C(=O)O')
>>> core = Chem.MolFromSmiles('c1cncnc1')
>>> tmp = Chem.ReplaceSidechains(m1,core)
>>> Chem.MolToSmiles(tmp)
'[1*]c1cncnc1[2*]'
By default the sidechains are labeled based on the order they are found. They can also be labeled according by the
number of that core-atom they’re attached to:
>>> m1 = Chem.MolFromSmiles('c1c(CCO)ncnc1C(=O)O')
>>> tmp=Chem.ReplaceCore(m1,core,labelByIndex=True)
>>> Chem.MolToSmiles(tmp)
'[1*]CCO.[5*]C(=O)O'
rdkit.Chem.rdmolops.ReplaceCore() returns the sidechains in a single molecule. This can be split into
separate molecules using rdkit.Chem.rdmolops.GetMolFrags() :
>>> rs = Chem.GetMolFrags(tmp,asMols=True)
>>> len(rs)
2
>>> Chem.MolToSmiles(rs[0])
'[1*]CCO'
>>> Chem.MolToSmiles(rs[1])
'[5*]C(=O)O'
/
Murcko Decomposition
The RDKit provides standard Murcko-type decomposition [7] of molecules into scaffolds:
>>> fw = MurckoScaffold.MakeScaffoldGeneric(core)
>>> Chem.MolToSmiles(fw)
'C1CCC2CCCC2C1'
It returns an MCSResult instance with information about the number of atoms and bonds in the MCS, the SMARTS
string which matches the identified MCS, and a flag saying if the algorithm timed out. If no MCS is found then the
number of atoms and bonds is set to 0 and the SMARTS to ''.
By default, two atoms match if they are the same element and two bonds match if they have the same bond type.
Specify atomCompare and bondCompare to use different comparison functions, as in:
The options for the atomCompare argument are: CompareAny says that any atom matches any other atom,
CompareElements compares by element type, and CompareIsotopes matches based on the isotope label. Isotope
labels can be used to implement user-defined atom types. A bondCompare of CompareAny says that any bond
matches any other bond, CompareOrderExact says bonds are equivalent if and only if they have the same bond
type, and CompareOrder allows single and aromatic bonds to match each other, but requires an exact order match
otherwise:
A substructure has both atoms and bonds. By default, the algorithm attempts to maximize the number of bonds
found. You can change this by setting the maximizeBonds argument to False. Maximizing the number of bonds
tends to maximize the number of rings, although two small rings may have fewer bonds than one large ring.
You might not want a 3-valent nitrogen to match one which is 5-valent. The default matchValences value of False
ignores valence information. When True, the atomCompare setting is modified to also require that the two atoms
have the same valency.
It can be strange to see a linear carbon chain match a carbon ring, which is what the ringMatchesRingOnly
default of False does. If you set it to True then ring bonds will only match ring bonds.
Notice that the SMARTS returned now include ring queries on the atoms and bonds.
You can further restrict things and require that partial rings (as in this case) are not allowed. That is, if an atom is
part of the MCS and the atom is in a ring of the entire molecule then that atom is also in a ring of the MCS. Setting
completeRingsOnly to True toggles this requirement.
The MCS algorithm will exhaustively search for a maximum common substructure. Typically this takes a fraction of
a second, but for some comparisons this can take minutes or longer. Use the timeout parameter to stop the
search after the given number of seconds (wall-clock seconds, not CPU seconds) and return the best match found
in that time. If timeout is reached then the canceled property of the MCSResult will be True instead of False.
/
Fingerprinting and Molecular Similarity
The RDKit has a variety of built-in functionality for generating molecular fingerprints and using them to calculate
molecular similarity.
Topological Fingerprints
>>> from rdkit import DataStructs
>>> ms = [Chem.MolFromSmiles('CCOC'), Chem.MolFromSmiles('CCO'),
... Chem.MolFromSmiles('COC')]
>>> fps = [Chem.RDKFingerprint(x) for x in ms]
>>> DataStructs.FingerprintSimilarity(fps[0],fps[1])
0.6...
>>> DataStructs.FingerprintSimilarity(fps[0],fps[2])
0.4...
>>> DataStructs.FingerprintSimilarity(fps[1],fps[2])
0.25
More details about the algorithm used for the RDKit fingerprint can be found in the “RDKit Book”.
The default set of parameters used by the fingerprinter is: - minimum path size: 1 bond - maximum path size: 7
bonds - fingerprint size: 2048 bits - number of bits set per hash: 2 - minimum fingerprint size: 64 bits - target on-bit
density 0.0
Available similarity metrics include Tanimoto, Dice, Cosine, Sokal, Russel, Kulczynski, McConnaughey, and
Tversky.
MACCS Keys
There is a SMARTS-based implementation of the 166 public MACCS keys.
The MACCS keys were critically evaluated and compared to other MACCS implementations in Q3 2008. In cases
where the public keys are fully defined, things looked pretty good.
/
Because the space of bits that can be included in atom-pair fingerprints is huge, they are stored in a sparse
manner. We can get the list of bits and their counts for each fingerprint as a dictionary:
>>> d = pairFps[-1].GetNonzeroElements()
>>> d[541732]
1
>>> d[1606690]
2
>>> Pairs.ExplainPairScore(558115)
(('C', 1, 0), 3, ('C', 2, 0))
The above means: C with 1 neighbor and 0 pi electrons which is 3 bonds from a C with 2 neighbors and 0 pi
electrons
The usual metric for similarity between atom-pair fingerprints is Dice similarity:
It’s also possible to get atom-pair descriptors encoded as a standard bit vector fingerprint (ignoring the count
information):
Since these are standard bit vectors, the rdkit.DataStructs module can be used for similarity:
Topological torsion descriptors [4] are calculated in essentially the same way:
At the time of this writing, topological torsion fingerprints have too many bits to be encodeable using the BitVector
machinery, so there is no GetTopologicalTorsionFingerprintAsBitVect function.
Morgan fingerprints, like atom pairs and topological torsions, use counts by default, but it’s also possible to
calculate them as bit vectors:
The default atom invariants use connectivity information similar to those used for the well known ECFP family of
fingerprints. Feature-based invariants, similar to those used for the FCFP fingerprints, can also be used. The
feature definitions used are defined in the section Feature Definitions Used in the Morgan Fingerprints. At times this
can lead to quite different similarity scores:
>>> m1 = Chem.MolFromSmiles('c1ccccn1')
>>> m2 = Chem.MolFromSmiles('c1ccco1')
>>> fp1 = AllChem.GetMorganFingerprint(m1,2)
>>> fp2 = AllChem.GetMorganFingerprint(m2,2)
>>> ffp1 = AllChem.GetMorganFingerprint(m1,2,useFeatures=True)
>>> ffp2 = AllChem.GetMorganFingerprint(m2,2,useFeatures=True)
>>> DataStructs.DiceSimilarity(fp1,fp2)
0.36...
>>> DataStructs.DiceSimilarity(ffp1,ffp2)
0.90...
When comparing the ECFP/FCFP fingerprints and the Morgan fingerprints generated by the RDKit, remember that
the 4 in ECFP4 corresponds to the diameter of the atom environments considered, while the Morgan fingerprints
take a radius parameter. So the examples above, with radius=2, are roughly equivalent to ECFP4 and FCFP4.
The user can also provide their own atom invariants using the optional invariants argument to
rdkit.Chem.rdMolDescriptors.GetMorganFingerprint(). Here’s a simple example that uses a constant
for the invariant; the resulting fingerprints compare the topology of molecules:
>>> m1 = Chem.MolFromSmiles('Cc1ccccc1')
>>> m2 = Chem.MolFromSmiles('Cc1ncncn1')
>>> fp1 = AllChem.GetMorganFingerprint(m1,2,invariants=[1]*m1.GetNumAtoms())
>>> fp2 = AllChem.GetMorganFingerprint(m2,2,invariants=[1]*m2.GetNumAtoms())
>>> fp1==fp2
True
>>> m3 = Chem.MolFromSmiles('CC1CCCCC1')
>>> fp3 = AllChem.GetMorganFingerprint(m3,2,invariants=[1]*m3.GetNumAtoms())
>>> fp1==fp3
False
/
Information is available about the atoms that contribute to particular bits in the Morgan fingerprint via the bitInfo
argument. The dictionary provided is populated with one entry per bit set in the fingerprint, the keys are the bit ids,
the values are lists of (atom index, radius) tuples.
>>> m = Chem.MolFromSmiles('c1cccnc1C')
>>> info={}
>>> fp = AllChem.GetMorganFingerprint(m,2,bitInfo=info)
>>> len(fp.GetNonzeroElements())
16
>>> len(info)
16
>>> info[98513984]
((1, 1), (2, 1))
>>> info[4048591891]
((5, 2),)
Interpreting the above: bit 98513984 is set twice: once by atom 1 and once by atom 2, each at radius 1. Bit
4048591891 is set once by atom 5 at radius 2.
Focusing on bit 4048591891, we can extract the submolecule consisting of all atoms within a radius of 2 of atom 5:
And then “explain” the bit by generating SMILES for that submolecule:
>>> Chem.MolToSmiles(submol)
'ccc(C)nc'
This is more useful when the SMILES is rooted at the central atom:
>>> Chem.MolToSmiles(submol,rootedAtAtom=amap[5],canonical=False)
'c(cc)(nc)C'
An alternate (and faster, particularly for large numbers of molecules) approach to do the same thing, using the
function rdkit.Chem.MolFragmentToSmiles() :
>>> atoms=set()
>>> for bidx in env:
... atoms.add(m.GetBondWithIdx(bidx).GetBeginAtomIdx())
... atoms.add(m.GetBondWithIdx(bidx).GetEndAtomIdx())
...
>>> Chem.MolFragmentToSmiles(m,atomsToUse=list(atoms),bondsToUse=env,rootedAtAtom=5)
'c(C)(cc)nc'
Note that in cases where the same bit is set by multiple atoms in the molecule (as for bit 1553 for the RDKit
fingerprint in the example above), the drawing functions will display the first example. You can change this by
specifying which example to show:
RDKit bit
/
The algorithm requires a function to calculate distances between objects, we’ll do that using DiceSimilarity:
Note that the picker just returns indices of the fingerprints; we can get the molecules themselves as follows:
The SimilarityMaps module supports three kind of fingerprints: atom pairs, topological torsions and Morgan
fingerprints.
The types of atom pairs and torsions are normal (default), hashed and bit vector (bv). The types of the Morgan
fingerprint are bit vector (bv, default) and count vector (count).
The function generating a similarity map for two fingerprints requires the specification of the fingerprint function and
optionally the similarity metric. The default for the latter is the Dice similarity. Using all the default arguments of the
Morgan fingerprint function, the similarity map can be generated like this:
/
For a different type of Morgan (e.g. count) and radius = 1 instead of 2, as well as a different similarity metric (e.g.
Tanimoto), the call becomes:
/
The convenience function GetSimilarityMapForFingerprint involves the normalisation of the atomic weights such
that the maximum absolute weight is 1. Therefore, the function outputs the maximum weight that was found when
creating the map.
>>> print(maxweight)
0.05747...
If one does not want the normalisation step, the map can be created like:
Descriptor Calculation
A variety of descriptors are available within the RDKit. The complete list is provided in List of Available Descriptors.
Most of the descriptors are straightforward to use from Python via the centralized rdkit.Chem.Descriptors
module :
>>> m = Chem.MolFromSmiles('c1ccccc1C(=O)O')
>>> AllChem.ComputeGasteigerCharges(m)
/
>>> m.GetAtomWithIdx(0).GetDoubleProp('_GasteigerCharge')
-0.047...
Visualization of Descriptors
Similarity maps can be used to visualize descriptors that can be divided into atomic contributions.
The Gasteiger partial charges can be visualized as (using a different color scheme):
/
Chemical Reactions
The RDKit also supports applying chemical reactions to sets of molecules. One way of constructing chemical
reactions is to use a SMARTS-based language similar to Daylight’s Reaction SMILES [11]:
Note in this case that there are multiple mappings of the reactants onto the templates, so we have multiple product
sets:
>>> len(ps)
4
You can use canonical smiles and a python dictionary to get the unique products:
>>> uniqps = {}
>>> for p in ps:
... smi = Chem.MolToSmiles(p[0])
... uniqps[smi] = p[0]
...
>>> sorted(uniqps.keys())
['NC1=CCC(O)CC1', 'NC1=CCCC(O)C1']
Note that the molecules that are produced by the chemical reaction processing code are not sanitized, as this
artificial reaction demonstrates:
Sometimes, particularly when working with rxn files, it is difficult to express a reaction exactly enough to not end up
with extraneous products. The RDKit provides a method of “protecting” atoms to disallow them from taking part in
reactions.
This can be demonstrated re-using the amide-bond formation reaction used above. The query for amines isn’t
specific enough, so it matches any nitrogen that has at least one H attached. So if we apply the reaction to a
molecule that already has an amide bond, the amide N is also treated as a reaction site:
/
We can prevent this from happening by protecting all amide Ns. Here we do it with a substructure query that
matches amides and thioamides and then set the “_protected” property on matching atoms:
>>> ps = rxn.RunReactants((acid,base))
>>> len(ps)
1
>>> Chem.MolToSmiles(ps[0][0])
'CC(=O)NCCNC(C)=O'
Recap Implementation
Associated with the chemical reaction functionality is an implementation of the Recap algorithm. [8] Recap uses a
set of chemical transformations mimicking common reactions carried out in the lab in order to decompose a
molecule into a series of reasonable fragments.
The RDKit rdkit.Chem.Recap implementation keeps track of the hierarchy of transformations that were applied:
>>> hierarch.smiles
'CCC(=O)OCCOc1ccccc1'
and each node tracks its children using a dictionary keyed by SMILES:
>>> ks=hierarch.children.keys()
>>> sorted(ks)
['*C(=O)CC', '*CCOC(=O)CC', '*CCOc1ccccc1', '*OCCOc1ccccc1', '*c1ccccc1']
The nodes at the bottom of the hierarchy (the leaf nodes) are easily accessible, also as a dictionary keyed by
SMILES:
>>> ks=hierarch.GetLeaves().keys()
>>> ks=sorted(ks)
>>> ks
['*C(=O)CC', '*CCO*', '*CCOc1ccccc1', '*c1ccccc1']
Notice that dummy atoms are used to mark points where the molecule was fragmented.
BRICS Implementation
The RDKit also provides an implementation of the BRICS algorithm. [9] BRICS provides another method for
fragmenting molecules along synthetically accessible bonds:
/
>>> from rdkit.Chem import BRICS
>>> cdk2mols = Chem.SDMolSupplier('data/cdk2.sdf')
>>> m1 = cdk2mols[0]
>>> sorted(BRICS.BRICSDecompose(m1))
['[14*]c1nc(N)nc2[nH]cnc12', '[3*]O[3*]', '[4*]CC(=O)C(C)C']
>>> m2 = cdk2mols[20]
>>> sorted(BRICS.BRICSDecompose(m2))
['[1*]C(=O)NN(C)C', '[14*]c1[nH]nc2c1C(=O)c1c([16*])cccc1-2', '[16*]c1ccc([16*])cc1'
Notice that RDKit BRICS implementation returns the unique fragments generated from a molecule and that the
dummy atoms are tagged to indicate which type of reaction applies.
It’s quite easy to generate the list of all fragments for a group of molecules:
>>> allfrags=set()
>>> for m in cdk2mols:
... pieces = BRICS.BRICSDecompose(m)
... allfrags.update(pieces)
>>> len(allfrags)
90
>>> sorted(allfrags)[:5]
['NS(=O)(=O)c1ccc(N/N=C2\\C(=O)Nc3ccc(Br)cc32)cc1', '[1*]C(=O)C(C)C', '[1*]C(=O)NN(C
The BRICS module also provides an option to apply the BRICS rules to a set of fragments to create new
molecules:
>>> ms
<generator object BRICSBuild at 0x...>
The molecules have not been sanitized, so it’s a good idea to at least update the valences before continuing:
By default those results come back in a random order (technically the example above will always return the same
results since we seeded Python’s random number generator just before calling BRICSBuild()). If you want the
results to be returned in a consistent order use the scrambleReagents argument:
Here’s a quick demonstration of using that to break all bonds between atoms in rings and atoms not in rings. We
start by finding all the atom pairs:
>>> m = Chem.MolFromSmiles('CC1CC(O)C1CCC1CC1')
>>> bis = m.GetSubstructMatches(Chem.MolFromSmarts('[!R][R]'))
>>> bis
((0, 1), (4, 3), (6, 5), (7, 8))
>>> nm = Chem.FragmentOnBonds(m,bs)
the output is a molecule that has dummy atoms marking the places where bonds were broken:
>>> Chem.MolToSmiles(nm,True)
'*C1CC([4*])C1[6*].[1*]C.[3*]O.[5*]CC[8*].[7*]C1CC1'
By default the attachment points are labelled (using isotopes) with the index of the atom that was removed. We can
also provide our own set of atom labels in the form of pairs of unsigned integers. The first value in each pair is used
as the label for the dummy that replaces the bond’s begin atom, the second value in each pair is for the dummy that
replaces the bond’s end atom. Here’s an example, repeating the analysis above and marking the positions where
the non-ring atoms were with the label 10 and marking the positions where the ring atoms were with label 1:
/
>>> from rdkit import Chem
>>> from rdkit.Chem import ChemicalFeatures
>>> from rdkit import RDConfig
>>> import os
>>> fdefName = os.path.join(RDConfig.RDDataDir,'BaseFeatures.fdef')
>>> factory = ChemicalFeatures.BuildFeatureFactory(fdefName)
>>> m = Chem.MolFromSmiles('OCc1ccccc1CN')
>>> feats = factory.GetFeaturesForMol(m)
>>> len(feats)
8
The individual features carry information about their family (e.g. donor, acceptor, etc.), type (a more detailed
description), and the atom(s) that is/are associated with the feature:
>>> feats[0].GetFamily()
'Donor'
>>> feats[0].GetType()
'SingleAtomDonor'
>>> feats[0].GetAtomIds()
(0,)
>>> feats[4].GetFamily()
'Aromatic'
>>> feats[4].GetAtomIds()
(2, 3, 4, 5, 6, 7)
If the molecule has coordinates, then the features will also have reasonable locations:
2D Pharmacophore Fingerprints
Combining a set of chemical features with the 2D (topological) distances between them gives a 2D pharmacophore.
When the distances are binned, unique integer ids can be assigned to each of these pharmacophores and they can
be stored in a fingerprint. Details of the encoding are in the The RDKit Book.
Generating pharmacophore fingerprints requires chemical features generated via the usual RDKit feature-typing
mechanism:
The fingerprints themselves are calculated using a signature (fingerprint) factory, which keeps track of all the
parameters required to generate the pharmacophore:
The signature factory is now ready to be used to generate fingerprints, a task which is done using the
rdkit.Chem.Pharm2D.Generate module:
/
>>> from rdkit.Chem.Pharm2D import Generate
>>> mol = Chem.MolFromSmiles('OCC(=O)CCCN')
>>> fp = Generate.Gen2DFingerprint(mol,sigFactory)
>>> fp
<rdkit.DataStructs.cDataStructs.SparseBitVect object at 0x...>
>>> len(fp)
885
>>> fp.GetNumOnBits()
57
Details about the bits themselves, including the features that are involved and the binned distance matrix between
the features, can be obtained from the signature factory:
>>> list(fp.GetOnBits())[:5]
[1, 2, 6, 7, 8]
>>> sigFactory.GetBitDescription(1)
'Acceptor Acceptor |0 1|1 0|'
>>> sigFactory.GetBitDescription(2)
'Acceptor Acceptor |0 2|2 0|'
>>> sigFactory.GetBitDescription(8)
'Acceptor Donor |0 2|2 0|'
>>> list(fp.GetOnBits())[-5:]
[704, 706, 707, 708, 714]
>>> sigFactory.GetBitDescription(707)
'Donor Donor PosIonizable |0 1 2|1 0 1|2 1 0|'
>>> sigFactory.GetBitDescription(714)
'Donor Donor PosIonizable |0 2 2|2 0 0|2 0 0|'
For the sake of convenience (to save you from having to edit the fdef file every time) it is possible to disable
particular feature types within the SigFactory:
>>> sigFactory.skipFeats=['PosIonizable']
>>> sigFactory.Init()
>>> sigFactory.GetSigSize()
510
>>> fp2 = Generate.Gen2DFingerprint(mol,sigFactory)
>>> fp2.GetNumOnBits()
36
Another possible set of feature definitions for 2D pharmacophore fingerprints in the RDKit are those published by
Gobbi and Poppinger. [10] The module rdkit.Chem.Pharm2D.Gobbi_Pharm2D has a pre-configured signature
factory for these fingerprint types. Here’s an example of using it:
Molecular Fragments
The RDKit contains a collection of tools for fragmenting molecules and working with those fragments. Fragments
are defined to be made up of a set of connected atoms that may have associated functional groups. This is more
easily demonstrated than explained:
>>> fName=os.path.join(RDConfig.RDDataDir,'FunctionalGroups.txt')
>>> from rdkit.Chem import FragmentCatalog /
>>> fparams = FragmentCatalog.FragCatParams(1,6,fName)
>>> fparams.GetNumFuncGroups()
39
>>> fcat=FragmentCatalog.FragCatalog(fparams)
>>> fcgen=FragmentCatalog.FragCatGenerator()
>>> m = Chem.MolFromSmiles('OCC=CC(=O)O')
>>> fcgen.AddFragsFromMol(m,fcat)
3
>>> fcat.GetEntryDescription(0)
'C<-O>C'
>>> fcat.GetEntryDescription(1)
'C=C<-C(=O)O>'
>>> fcat.GetEntryDescription(2)
'C<-C(=O)O>=CC<-O>'
The fragments are stored as entries in a rdkit.Chem.rdfragcatalog.FragCatalog. Notice that the entry
descriptions include pieces in angular brackets (e.g. between ‘<’ and ‘>’). These describe the functional groups
attached to the fragment. For example, in the above example, the catalog entry 0 corresponds to an ethyl fragment
with an alcohol attached to one of the carbons and entry 1 is an ethylene with a carboxylic acid on one carbon.
Detailed information about the functional groups can be obtained by asking the fragment for the ids of the functional
groups it contains and then looking those ids up in the rdkit.Chem.rdfragcatalog.FragCatParams object:
>>> list(fcat.GetEntryFuncGroupIds(2))
[34, 1]
>>> fparams.GetFuncGroup(1)
<rdkit.Chem.rdchem.Mol object at 0x...>
>>> Chem.MolToSmarts(fparams.GetFuncGroup(1))
'*-C(=O)[O&D1]'
>>> Chem.MolToSmarts(fparams.GetFuncGroup(34))
'*-[O&D1]'
>>> fparams.GetFuncGroup(1).GetProp('_Name')
'-C(=O)O'
>>> fparams.GetFuncGroup(34).GetProp('_Name')
'-O'
The catalog is hierarchical: smaller fragments are combined to form larger ones. From a small fragment, one can
find the larger fragments to which it contributes using the
rdkit.Chem.rdfragcatalog.FragCatalog.GetEntryDownIds() method:
>>> fcat=FragmentCatalog.FragCatalog(fparams)
>>> m = Chem.MolFromSmiles('OCC(NC1CC1)CCC')
>>> fcgen.AddFragsFromMol(m,fcat)
15
>>> fcat.GetEntryDescription(0)
'C<-O>C'
>>> fcat.GetEntryDescription(1)
'CN<-cPropyl>'
>>> list(fcat.GetEntryDownIds(0))
[3, 4]
>>> fcat.GetEntryDescription(3)
'C<-O>CC'
>>> fcat.GetEntryDescription(4)
'C<-O>CN<-cPropyl>'
/
The fragments in a catalog are unique, so adding a molecule a second time doesn’t add any new entries:
>>> fcgen.AddFragsFromMol(ms[0],fcat)
0
>>> fcat.GetNumEntries()
1169
The rest of the machinery associated with fingerprints can now be applied to these fragment fingerprints. For
example, it’s easy to find the fragments that two molecules have in common by taking the intersection of their
fingerprints:
or we can find the fragments that distinguish one molecule from another:
The columns above are: bitId, infoGain, nInactive, nActive. Note that this approach isn’t particularly effective for this
artificial example.
R-Group Decomposition
/
Let’s look at how it works. We’ll read in a group of molecules (these were taken ChEMBL), define a core with
labelled R groups, and then use the simplest call to do R-group decomposition:
rdkit.Chem.rdRGroupDecomposition.RGroupDecompose()
The unmatched return value has the indices of the molecules that did not match a core; in this case there are
none. The other result is a list with one dict for each molecule; each dict contains the core that matched the
molecule (in this case there was only one) and the molecule’s R groups.
As an aside, if you are a Pandas user, it’s very easy to get the R-group decomposition results into a DataFrame:
It’s not necessary to label the attachment points on the core, if you leave them out the code will automatically
assign labels:
R-group decomposition is actually pretty complex, so there’s a lot more there. Hopefully this is enough to get you
started.
Non-Chemical Functionality
Bit vectors
Bit vectors are containers for efficiently storing a set number of binary values, e.g. for fingerprints. The RDKit
includes two types of fingerprints differing in how they store the values internally; the two types are easily
interconverted but are best used for different purpose:
SparseBitVects store only the list of bits set in the vector; they are well suited for storing very large, very
sparsely occupied vectors like pharmacophore fingerprints. Some operations, such as retrieving the list of on
bits, are quite fast. Others, such as negating the vector, are very, very slow.
ExplicitBitVects keep track of both on and off bits. They are generally faster than SparseBitVects, but require
more memory to store. /
Discrete value vectors
3D grids
Points
Getting Help
There is a reasonable amount of documentation available within from the RDKit’s docstrings. These are accessible
using Python’s help command:
>>> m = Chem.MolFromSmiles('Cc1ccccc1')
>>> m.GetNumAtoms()
7
>>> help(m.GetNumAtoms)
Help on method GetNumAtoms:
ARGUMENTS:
- onlyExplicit: (optional) include only explicit atoms (atoms in the mole
defaults to 1.
NOTE: the onlyHeavy argument is deprecated
C++ signature :
int GetNumAtoms(...)
>>> m.GetNumAtoms(onlyExplicit=False)
15
When working in an environment that does command completion or tooltips, one can see the available methods
quite easily. Here’s a sample screenshot from within the Jupyter notebook:
Advanced Topics/Warnings
Editing Molecules
/
Some of the functionality provided allows molecules to be edited “in place”:
>>> m = Chem.MolFromSmiles('c1ccccc1')
>>> m.GetAtomWithIdx(0).SetAtomicNum(7)
>>> Chem.SanitizeMol(m)
rdkit.Chem.rdmolops.SanitizeFlags.SANITIZE_NONE
>>> Chem.MolToSmiles(m)
'c1ccncc1'
Do not forget the sanitization step, without it one can end up with results that look ok (so long as you don’t think):
>>> m = Chem.MolFromSmiles('c1ccccc1')
>>> m.GetAtomWithIdx(0).SetAtomicNum(8)
>>> Chem.MolToSmiles(m)
'c1ccocc1'
>>> Chem.SanitizeMol(m)
Traceback (most recent call last):
File "/usr/lib/python3.6/doctest.py", line 1253, in __run
compileflags, 1) in test.globs
File "<doctest default[0]>", line 1, in <module>
Chem.SanitizeMol(m)
rdkit.Chem.rdchem.KekulizeException: Can't kekulize mol. Unkekulized atoms: 1 2 3 4
More complex transformations can be carried out using the rdkit.Chem.rdchem.RWMol class:
>>> m = Chem.MolFromSmiles('CC(=O)C=CC=C')
>>> mw = Chem.RWMol(m)
>>> mw.ReplaceAtom(4,Chem.Atom(7))
>>> mw.AddAtom(Chem.Atom(6))
7
>>> mw.AddAtom(Chem.Atom(6))
8
>>> mw.AddBond(6,7,Chem.BondType.SINGLE)
7
>>> mw.AddBond(7,8,Chem.BondType.DOUBLE)
8
>>> mw.AddBond(8,3,Chem.BondType.SINGLE)
9
>>> mw.RemoveAtom(0)
>>> mw.GetNumAtoms()
8
>>> Chem.MolToSmiles(mw)
'O=CC1=NC=CC=C1'
>>> Chem.SanitizeMol(mw)
rdkit.Chem.rdmolops.SanitizeFlags.SANITIZE_NONE
>>> Chem.MolToSmiles(mw)
'O=Cc1ccccn1'
It is even easier to generate nonsense using the RWMol than it is with standard molecules. If you need chemically
reasonable results, be certain to sanitize the results.
Because it is sometimes useful to be able to count how many SSSR rings are present in the molecule, there is a
rdkit.Chem.rdmolops.GetSSSR() function, but this only returns the SSSR count, not the potentially non-
unique set of rings.
Feature SMARTS
Donor [$([N;!H0;v3,v4&+1]),$([O,S;H1;+0]),n&H1&+0]
[$([O,S;H1;v2;!$(*-*=[O,N,P,S])]),$([O,S;H0;v2]),$([O,S;-]),$([N;v3;!$(N-*=
Acceptor
[O,N,P,S])]),n&H0&+0,$([o,s;+0;!$([o,s]:n);!$([o,s]:c:n)])]
Aromatic [a]
Halogen [F,Cl,Br,I]
[#7;+,$([N;H2&+0][$([C,a]);!$([C,a](=O))]),$([N;H1&+0]([$([C,a]);!$([C,a]
Basic (=O))])[$([C,a]);!$([C,a](=O))]),$([N;H0&+0]([C;!$(C(=O))])([C;!$(C(=O))])
[C;!$(C(=O))])]
Acidic [$([C,S](=[O,S,P])-[O;H1,-1])]
Footnotes
[1] Blaney, J. M.; Dixon, J. S. “Distance Geometry in Molecular Modeling”. Reviews in Computational Chemistry;
VCH: New York, 1994.
[2] Rappé, A. K.; Casewit, C. J.; Colwell, K. S.; Goddard III, W. A.; Skiff, W. M. “UFF, a full periodic table force field
for molecular mechanics and molecular dynamics simulations”. J. Am. Chem. Soc. 114:10024-35 (1992) .
[3] Carhart, R.E.; Smith, D.H.; Venkataraghavan R. “Atom Pairs as Molecular Features in Structure-Activity
Studies: Definition and Applications” J. Chem. Inf. Comp. Sci. 25:64-73 (1985).
[4] Nilakantan, R.; Bauman N.; Dixon J.S.; Venkataraghavan R. “Topological Torsion: A New Molecular Descriptor
for SAR Applications. Comparison with Other Desciptors.” J. Chem.Inf. Comp. Sci. 27:82-5 (1987).
[5] Rogers, D.; Hahn, M. “Extended-Connectivity Fingerprints.” J. Chem. Inf. and Model. 50:742-54 (2010).
[6] Ashton, M. et al. “Identification of Diverse Database Subsets using Property-Based and Fragment-Based
Molecular Descriptions.” Quantitative Structure-Activity Relationships 21:598-604 (2002).
[7] Bemis, G. W.; Murcko, M. A. “The Properties of Known Drugs. 1. Molecular Frameworks.” J. Med. Chem.
39:2887-93 (1996).
[8] Lewell, X.Q.; Judd, D.B.; Watson, S.P.; Hann, M.M. “RECAP-Retrosynthetic Combinatorial Analysis
Procedure: A Powerful New Technique for Identifying Privileged Molecular Fragments with Useful Applications
in Combinatorial Chemistry” J. Chem. Inf. Comp. Sci. 38:511-22 (1998).
[9] Degen, J.; Wegscheid-Gerlach, C.; Zaliani, A; Rarey, M. “On the Art of Compiling and Using ‘Drug-Like’
Chemical Fragment Spaces.” ChemMedChem 3:1503–7 (2008).
[10] Gobbi, A. & Poppinger, D. “Genetic optimization of combinatorial libraries.” Biotechnology and Bioengineering
61:47-54 (1998).
[11] A more detailed description of reaction smarts, as defined by the rdkit, is in the The RDKit Book.
[12] Halgren, T. A. “Merck molecular force field. I. Basis, form, scope, parameterization, and performance of
MMFF94.” J. Comp. Chem. 17:490–19 (1996).
[13] Halgren, T. A. “Merck molecular force field. II. MMFF94 van der Waals and electrostatic parameters for
intermolecular interactions.” J. Comp. Chem. 17:520–52 (1996).
[14] Halgren, T. A. “Merck molecular force field. III. Molecular geometries and vibrational frequencies for MMFF94.”
J. Comp. Chem. 17:553–86 (1996).
[15] Halgren, T. A. & Nachbar, R. B. “Merck molecular force field. IV. conformational energies and geometries for
MMFF94.” J. Comp. Chem. 17:587-615 (1996).
[16] Halgren, T. A. “MMFF VI. MMFF94s option for energy minimization studies.” J. Comp. Chem. 20:720–9 (1999).
/
[17] Riniker, S.; Landrum, G. A. “Similarity Maps - A Visualization Strategy for Molecular Fingerprints and Machine-
Learning Methods” J. Cheminf. 5:43 (2013).
[18] Riniker, S.; Landrum, G. A. “Better Informed Distance Geometry: Using What We Know To Improve
Conformation Generation” J. Chem. Inf. Comp. Sci. 55:2562-74 (2015)
License
This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 License. To view a copy of this
license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, 543 Howard
Street, 5th Floor, San Francisco, California, 94105, USA.
The intent of this license is similar to that of the RDKit itself. In simple words: “Do whatever you want with it, but
please give us some credit.”