mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-05 22:04:27 +08:00
174 lines
5.6 KiB
C++
174 lines
5.6 KiB
C++
//
|
|
// Copyright (C) 2011-2013 Greg Landrum
|
|
//
|
|
// @@ All Rights Reserved @@
|
|
// This file is part of the RDKit.
|
|
// The contents are covered by the terms of the BSD license
|
|
// which is included in the file license.txt, found at the root
|
|
// of the RDKit source tree.
|
|
//
|
|
|
|
|
|
#include <Geometry/point.h>
|
|
#include <Numerics/Vector.h>
|
|
#include <GraphMol/Conformer.h>
|
|
#include <GraphMol/ROMol.h>
|
|
#include <boost/foreach.hpp>
|
|
#include "USRDescriptor.h"
|
|
|
|
|
|
namespace RDKit{
|
|
|
|
namespace {
|
|
void calcDistances(const RDGeom::Point3DConstPtrVect &coords,
|
|
const RDGeom::Point3D &point,
|
|
std::vector<double> &distances) {
|
|
distances.resize(coords.size(), 0.0);
|
|
RDGeom::Point3D tmpPt;
|
|
unsigned int i = 0;
|
|
// loop over coordinates
|
|
BOOST_FOREACH(const RDGeom::Point3D *tpp, coords) {
|
|
distances[i++] = (*tpp-point).length();
|
|
}
|
|
}
|
|
|
|
void calcCentroid(const RDGeom::Point3DConstPtrVect &coords,
|
|
RDGeom::Point3D &pt) {
|
|
PRECONDITION(coords.size() != 0,"no coordinates");
|
|
// set pt to zero
|
|
pt *= 0.0;
|
|
// loop over coordinates
|
|
BOOST_FOREACH(const RDGeom::Point3D *opt, coords) {
|
|
pt += *opt;
|
|
}
|
|
pt /= coords.size();
|
|
}
|
|
|
|
unsigned int largestValId(std::vector<double> &v) {
|
|
double res = double(-1.e8);
|
|
unsigned int id = v.size();
|
|
for (unsigned int i = 0; i < v.size(); i++) {
|
|
if (v[i] > res) {
|
|
res = v[i];
|
|
id = i;
|
|
}
|
|
}
|
|
return id;
|
|
}
|
|
|
|
unsigned int smallestValId(std::vector<double> &v) {
|
|
double res = double(1.e8);
|
|
unsigned int id = v.size();
|
|
for (unsigned int i = 0; i < v.size(); i++) {
|
|
if (v[i] < res) {
|
|
res = v[i];
|
|
id = i;
|
|
}
|
|
}
|
|
return id;
|
|
}
|
|
|
|
void calcMoments(const std::vector<double> &dist,
|
|
std::vector<double> &descriptor,
|
|
int idx) {
|
|
PRECONDITION(dist.size() != 0,"no distances");
|
|
std::vector<double> moments (3, 0.0);
|
|
unsigned int numPts = dist.size();
|
|
// 1. moment: mean
|
|
for (unsigned int i = 0; i < numPts; ++i) {
|
|
moments[0] += dist[i];
|
|
}
|
|
moments[0] /= numPts;
|
|
// 2. moment: standard deviation
|
|
// 3. moment: cubic root of skewness
|
|
for (unsigned int i = 0; i < numPts; ++i) {
|
|
double diff = dist[i] - moments[0];
|
|
moments[1] += diff * diff;
|
|
moments[2] += diff * diff * diff;
|
|
}
|
|
moments[1] = sqrt(moments[1] / numPts);
|
|
moments[2] /= numPts;
|
|
moments[2] = cbrt(moments[2] / (moments[1] * moments[1] * moments[1]));
|
|
// add moments to descriptor
|
|
for (unsigned int i = 0; i < moments.size(); ++i) {
|
|
descriptor[i + idx] = moments[i];
|
|
}
|
|
}
|
|
|
|
} // end namespace
|
|
|
|
namespace Descriptors {
|
|
|
|
void USR(const ROMol &mol, std::vector<double> &descriptor, int confId) {
|
|
PRECONDITION(descriptor.size() == 12, "descriptor must have 12 elements");
|
|
unsigned int na = mol.getNumAtoms();
|
|
// check that number of atoms > 3
|
|
if (na < 3) {
|
|
throw ValueErrorException("Number of atoms must be greater than 3");
|
|
}
|
|
// check that minimum a conformer exists
|
|
if (mol.getNumConformers() == 0) {
|
|
throw ConformerException("No conformations available on this molecule");
|
|
}
|
|
|
|
const Conformer &conf = mol.getConformer(confId);
|
|
RDGeom::Point3DConstPtrVect coords(na);
|
|
// loop over atoms
|
|
for (unsigned int ai = 0; ai < na; ++ai) {
|
|
coords[ai] = &conf.getAtomPos(ai);
|
|
}
|
|
// the four distances
|
|
std::vector<std::vector<double> > dist(4);
|
|
calcUSRDistributions(coords, dist);
|
|
|
|
calcUSRFromDistributions(dist, descriptor);
|
|
}
|
|
|
|
void calcUSRDistributions(const RDGeom::Point3DConstPtrVect &coords,
|
|
std::vector<std::vector<double> > &dist) {
|
|
PRECONDITION(dist.size() == 4, "dist must have 4 elements");
|
|
RDGeom::Point3D pt;
|
|
// ctd = centroid
|
|
calcCentroid(coords, pt);
|
|
calcDistances(coords, pt, dist[0]);
|
|
// catc = closest atom to centroid
|
|
pt = (*coords[smallestValId(dist[0])]);
|
|
calcDistances(coords, pt, dist[1]);
|
|
// fatc = farthest atom to centroid
|
|
pt = (*coords[largestValId(dist[0])]);
|
|
calcDistances(coords, pt, dist[2]);
|
|
// fatf = farthest atom to fatc
|
|
pt = (*coords[largestValId(dist[2])]);
|
|
calcDistances(coords, pt, dist[3]);
|
|
}
|
|
|
|
void calcUSRDistributionsFromPoints(const RDGeom::Point3DConstPtrVect &coords,
|
|
const std::vector<RDGeom::Point3D> &points,
|
|
std::vector<std::vector<double> > &dist) {
|
|
PRECONDITION(points.size() == dist.size(), "points and dist must have the same size");
|
|
for (unsigned int i = 0; i < points.size(); ++i) {
|
|
calcDistances(coords, points[i], dist[i]);
|
|
}
|
|
}
|
|
|
|
void calcUSRFromDistributions(const std::vector<std::vector<double> > &dist,
|
|
std::vector<double> &descriptor) {
|
|
for (unsigned int i = 0; i < dist.size(); ++i) {
|
|
calcMoments(dist[i], descriptor, 3*i);
|
|
}
|
|
}
|
|
|
|
double calcUSRScore(const std::vector<double> &d1, const std::vector<double> &d2) {
|
|
PRECONDITION(d1.size() == d2.size(), "descriptors must have the same size");
|
|
double score = 0.0;
|
|
unsigned int num = d1.size();
|
|
for (unsigned int i = 0; i < num; ++i) {
|
|
score += fabs(d1[i] - d2[i]);
|
|
}
|
|
score /= num;
|
|
return 1.0 / (1.0 + score);
|
|
}
|
|
|
|
} // end of namespace Descriptors
|
|
} //end of namespace RDKit
|