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 length double[3] should be passed as the trans argument.

Example:

private static void OERMSD_Array(OEDoubleArray refcrds, OEDoubleArray fitcrds, int size) {
  double rmsd1 = oechem.OERMSD(refcrds, fitcrds, size);

  boolean overlay = true;
  double rmsd2 = oechem.OERMSD(refcrds, fitcrds, size, overlay);

  OEDoubleArray rotmat = new OEDoubleArray(9);
  double rmsd3 = oechem.OERMSD(refcrds, fitcrds, size, overlay, rotmat);

  OEDoubleArray transvec = new OEDoubleArray(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 length fit.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 length double[9] should be passed to the rot argument and an array of length double[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 of fit.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 ref, OEMolBase fit) {
  double rmsd1 = oechem.OERMSD(ref, fit);

  boolean automorf = true;
  double rmsd2 = oechem.OERMSD(ref, fit, automorf);

  boolean heavyOnly = true;
  double rmsd3 = oechem.OERMSD(ref, fit, automorf, heavyOnly);

  boolean overlay = true;
  double rmsd4 = oechem.OERMSD(ref, fit, automorf, heavyOnly, overlay);

  OEDoubleArray rotmat = new OEDoubleArray(9);
  double rmsd5 = oechem.OERMSD(ref, fit, automorf, heavyOnly, overlay, rotmat);

  OEDoubleArray transvec = new OEDoubleArray(3);
  double rmsd6 = oechem.OERMSD(ref, fit, automorf, heavyOnly, overlay, rotmat, transvec);
}

private static void OERMSD_Full_MCMolBase(OEMolBase ref, OEMCMolBase fit) {
  int nConfs = fit.GetMaxConfIdx();
  OEDoubleArray vecRmsd = new OEDoubleArray(nConfs);
  oechem.OERMSD(ref, fit, vecRmsd);

  boolean automorf = true;
  oechem.OERMSD(ref, fit, vecRmsd, automorf);

  boolean heavyOnly = true;
  oechem.OERMSD(ref, fit, vecRmsd, automorf, heavyOnly);

  boolean overlay = true;
  oechem.OERMSD(ref, fit, vecRmsd, automorf, heavyOnly, overlay);

  OEDoubleArray rotmat = new OEDoubleArray(9*nConfs);
  oechem.OERMSD(ref, fit, vecRmsd, automorf, heavyOnly, overlay, rotmat);

  OEDoubleArray transvec = new OEDoubleArray(3*nConfs);
  oechem.OERMSD(ref, fit, 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 length fit.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 length double[9] should be passed to the ‘rot’ argument and an array of length double[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 of fit.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 ref, OEMolBase fit) {
  OEMatch match = new OEMatch();
  OEAtomBaseIter aRef = ref.GetAtoms();
  OEAtomBaseIter aFit = fit.GetAtoms();
  while (aRef.IsValid() && aFit.IsValid()) {
      match.AddPair(aRef.Target(), aFit.Target());
      aRef.Increment();
      aFit.Increment();
  }

  double rmsd1 = oechem.OERMSD(ref, fit, match);

  boolean overlay = true;
  double rmsd2 = oechem.OERMSD(ref, fit, match, overlay);

  OEDoubleArray rotmat = new OEDoubleArray(9);
  double rmsd3 = oechem.OERMSD(ref, fit, match, overlay, rotmat);

  OEDoubleArray transvec = new OEDoubleArray(3);
  double rmsd4 = oechem.OERMSD(ref, fit, match, overlay, rotmat, transvec);
}

private static void OERMSD_Part_MCMolBase(OEMolBase ref, OEMCMolBase fit) {
  OEMatch match = new OEMatch();
  OEAtomBaseIter aRef = ref.GetAtoms();
  OEAtomBaseIter aFit = fit.GetAtoms();
  while (aRef.IsValid() && aFit.IsValid()) {
      match.AddPair(aRef.Target(), aFit.Target());
      aRef.Increment();
      aFit.Increment();
  }

  int nConfs = fit.GetMaxConfIdx();
  OEDoubleArray vecRmsd = new OEDoubleArray(nConfs);
  oechem.OERMSD(ref, fit, vecRmsd, match);

  boolean overlay = true;
  oechem.OERMSD(ref, fit, vecRmsd, match, overlay);

  OEDoubleArray rotmat = new OEDoubleArray(9*nConfs);
  oechem.OERMSD(ref, fit, vecRmsd, match, overlay, rotmat);

  OEDoubleArray transvec = new OEDoubleArray(3*nConfs);
  oechem.OERMSD(ref, fit, vecRmsd, match, overlay, rotmat, transvec);
}

See also