OERMSD¶
Array-Based OERMSD
double OERMSD(const float *refcrds, const float *fitcrds, unsigned int size,
bool overlay=false, double *rot=0, double *trans=0)
double OERMSD(const double *refcrds, const double *fitcrds, unsigned int size,
bool overlay=false, double *rot=0, double *trans=0)
Returns the root mean squared deviation (i.e. RMSD) between two sets of Cartesian coordinates.
- refcrds, fitcrds
These arrays should be of length size
*3
, and should contain the Cartesian coordinates of the two objects being assessed.- overlay
This flag indicates whether the RMSD of the two arrays in their current position is desired (
false
), or whether the lowest possible RMSD for the two arrays should be returned (true
).- rot, trans
If an overlay calculation is carried out, the functions can report the rotation and translation required to achieve the minimum RMSD. An array of length
double[9]
should be passed to the rot argument and an array of lengthdouble[3]
should be passed as the trans argument.
Example:
private static void OERMSD_Array(double[] refcrds, double[] fitcrds, uint size)
{
double rmsd1 = OEChem.OERMSD(refcrds, fitcrds, size);
bool overlay = true;
double rmsd2 = OEChem.OERMSD(refcrds, fitcrds, size, overlay);
double[] rotmat = new double[9];
double rmsd3 = OEChem.OERMSD(refcrds, fitcrds, size, overlay, rotmat);
double[] transvec = new double[3];
double rmsd4 = OEChem.OERMSD(refcrds, fitcrds, size, overlay, rotmat, transvec);
}
Full Molecule-Based OERMSD
double OERMSD(const OEMolBase &ref, const OEMolBase &fit, bool automorph=true,
bool heavyOnly=true, bool overlay=false, double *rot=0,
double *trans=0)
bool OERMSD(const OEMolBase &ref, const OEMCMolBase &fit, double *rmsdArray,
bool automorph=true, bool heavyOnly=true, bool overlay=false,
double *rot=0, double *trans=0)
Calculates the root mean squared deviation (i.e. RMSD ) between two molecules.
- ref, fit
This function is overloaded for comparisons of a single-conformer (
OEMolBase
) reference molecule with either a single-conformer (OEMolBase
) or a multi-conformer (OEMCMolBases
) fit molecule.- rmsdArray
For the OEMolBase vs OEMolBase comparison, the RMSD is the return value. For the OEMolBase vs
OEMCMolBase
case, the RMSDs are returned in the rmsdArray array. The rmsdArray passed to this function should be of lengthfit.GetMaxConfIdx()
.- automorph
This flag indicates whether automorphisms should be taken into account during the RMSD calculation. Automorphisms are the symmetry related transformations of a molecule which can result in anomalously high RMSDs if not properly treated. For instance, t-butyl-benzene has a three-fold automorphism around the t-butyl group and a two-fold automorphism around the benzene ring.
- heavyOnly
This flag indicates whether only heavy atoms should be considered or hydrogen atoms should be also taken into account as well when assessing automorphisms.
Hint
It is strongly recommended that one should
consider carefully before setting the ‘automorph’ flag to true
and the ‘heavyOnly’ flag to false
due to the increased
computational cost.
- overlay
This flag indicates whether the RMSD of the molecules in their current position is desired (
false
), or whether the lowest possible RMSD for the two molecules should be returned (true
).- rot, trans
If an overlay calculation is carried out, the functions can report the rotation and translation required to give this minimum RMSD.
In case when the fit molecule is single-conformer (
OEMolBase
), array of lengthdouble[9]
should be passed to the rot argument and an array of lengthdouble[3]
should be passed as the trans argument.In case when the fit molecule is multi-conformer (
OEMCMolBase
), the array size of both rot and trans has to be multiplied by the length offit.GetMaxConfIdx()
.
Hint
The arrays rot and trans described above can subsequently be
applied to the fit molecule using the
OERotate
and OETranslate
functions if desired. It is important that
OERotate
and OETranslate
are applied in that order.
Note
A multi-conformer fit molecule (OEMCMolBases
)
that is passed to the OERMSD
function can have
nonsequential conformation indices. This can occur, for example, if some
conformations of the molecule have been deleted.
In this case, the returned rmsdArray array will
contain -1.0
RMSD values for invalid conformation indices.
Example:
private static void OERMSD_Full_MolBase(OEMolBase refMol, OEMolBase fitMol)
{
double rmsd1 = OEChem.OERMSD(refMol, fitMol);
bool automorf = true;
double rmsd2 = OEChem.OERMSD(refMol, fitMol, automorf);
bool heavyOnly = true;
double rmsd3 = OEChem.OERMSD(refMol, fitMol, automorf, heavyOnly);
bool overlay = true;
double rmsd4 = OEChem.OERMSD(refMol, fitMol, automorf, heavyOnly, overlay);
double[] rotmat = new double[9];
double rmsd5 = OEChem.OERMSD(refMol, fitMol, automorf, heavyOnly, overlay, rotmat);
double[] transvec = new double[3];
double rmsd6 = OEChem.OERMSD(refMol, fitMol, automorf, heavyOnly, overlay, rotmat, transvec);
}
private static void OERMSD_Full_MCMolBase(OEMolBase refMol, OEMCMolBase fitMol)
{
uint nConfs = fitMol.GetMaxConfIdx();
double[] vecRmsd = new double[nConfs];
OEChem.OERMSD(refMol, fitMol, vecRmsd);
bool automorf = true;
OEChem.OERMSD(refMol, fitMol, vecRmsd, automorf);
bool heavyOnly = true;
OEChem.OERMSD(refMol, fitMol, vecRmsd, automorf, heavyOnly);
bool overlay = true;
OEChem.OERMSD(refMol, fitMol, vecRmsd, automorf, heavyOnly, overlay);
double[] rotmat = new double[9*nConfs];
OEChem.OERMSD(refMol, fitMol, vecRmsd, automorf, heavyOnly, overlay, rotmat);
double[] transvec = new double[3*nConfs];
OEChem.OERMSD(refMol, fitMol, vecRmsd, automorf, heavyOnly, overlay, rotmat, transvec);
}
Partial Molecule-Based OERMSD
double OERMSD(const OEMolBase &ref, const OEMolBase &fit, const OEMatchBase &match,
bool overlay=false, double *rot=0, double *trans=0)
bool OERMSD(const OEMolBase &ref, const OEMCMolBase &fit, double *rmsdArray,
const OEMatchBase &match, bool overlay=false, double *rot=0,
double *trans=0)
These functions are quite similar to the previous three. However, rather than considering automorphisms and heavy atoms, these functions allow a user to explicitly determine which substructure of the two molecules should be used to determine the RMSD.
- ref, fit
This function is overloaded for comparisons of a single-conformer (
OEMolBase
) reference molecule with either a single-conformer (OEMolBase
) or a multi-conformer (OEMCMolBases
) fit molecule.- rmsdArray
For the OEMolBase vs OEMolBase comparison, the RMSD is the return value. For the OEMolBase vs
OEMCMolBase
case, the RMSDs are returned in the rmsdArray array. The rmsdArray passed to this function should be of lengthfit.GetMaxConfIdx()
.- match
The match determines the atoms of the fit molecule that will be aligned to the atoms of the ref molecule. The match can be generated by hand, or with any of the OEChem TK matching algorithms such as OESubSearch or OEMCSSearch.
- overlay
This flag indicates whether the RMSD of the molecules in their current position is desired (
false
), or whether the lowest possible RMSD for the two molecules should be returned (true
).- rot, trans
If an overlay calculation is carried out, the functions can report the rotation and translation required to give this minimum RMSD.
In case when the fit molecule is single-conformer (
OEMolBase
), array of lengthdouble[9]
should be passed to the ‘rot’ argument and an array of lengthdouble[3]
should be passed as the ‘trans’ argument.In case when the fit molecule is multi-conformer (
OEMCMolBase
), the array size of both rot and trans has to be multiplied by the length offit.GetMaxConfIdx()
.
Hint
The arrays rot and trans described above can subsequently be
applied to the fit molecule using the
OERotate
and OETranslate
functions if desired. It is important that
OERotate
and OETranslate
are applied in that order.
Example:
private static void OERMSD_Part_MolBase(OEMolBase refMol, OEMolBase fitMol)
{
OEMatch match = new OEMatch();
OEAtomBaseIter aref = refMol.GetAtoms();
OEAtomBaseIter afit = fitMol.GetAtoms();
while (aref.IsValid() && afit.IsValid())
{
match.AddPair(aref.Target(), afit.Target());
aref.Increment();
afit.Increment();
}
double rmsd1 = OEChem.OERMSD(refMol, fitMol, match);
bool overlay = true;
double rmsd2 = OEChem.OERMSD(refMol, fitMol, match, overlay);
double[] rotmat = new double[9];
double rmsd3 = OEChem.OERMSD(refMol, fitMol, match, overlay, rotmat);
double[] transvec = new double[3];
double rmsd4 = OEChem.OERMSD(refMol, fitMol, match, overlay, rotmat, transvec);
}
private static void OERMSD_Part_MCMolBase(OEMolBase refMol, OEMCMolBase fitMol)
{
OEMatch match = new OEMatch();
OEAtomBaseIter aref = refMol.GetAtoms();
OEAtomBaseIter afit = fitMol.GetAtoms();
while (aref.IsValid() && afit.IsValid())
{
match.AddPair(aref.Target(), afit.Target());
aref.Increment();
afit.Increment();
}
uint nConfs = fitMol.GetMaxConfIdx();
double[] vecRmsd = new double[nConfs];
OEChem.OERMSD(refMol, fitMol, vecRmsd, match);
bool overlay = true;
OEChem.OERMSD(refMol, fitMol, vecRmsd, match, overlay);
double[] rotmat = new double[9*nConfs];
OEChem.OERMSD(refMol, fitMol, vecRmsd, match, overlay, rotmat);
double[] transvec = new double[3*nConfs];
OEChem.OERMSD(refMol, fitMol, vecRmsd, match, overlay, rotmat, transvec);
}
See also
OEWeightedRMSD
functionOEConfRMSD class
Code Example
Align molecules by SMARTS match example
Align molecules by clique match example