1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
//
// Copyright (c) 2013, Novartis Institutes for BioMedical Research Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following
// disclaimer in the documentation and/or other materials provided
// with the distribution.
// * Neither the name of Novartis Institutes for BioMedical Research Inc.
// nor the names of its contributors may be used to endorse or promote
// products derived from this software without specific prior written
// permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#include <Geometry/point.h>
#include <Numerics/Vector.h>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/Substruct/SubstructMatch.h>
#include <boost/foreach.hpp>
#include "USRDescriptor.h"
#include <boost/flyweight.hpp>
#include <boost/flyweight/key_value.hpp>
#include <boost/flyweight/no_tracking.hpp>
namespace RDKit {
namespace {
void calcDistances(const RDGeom::Point3DConstPtrVect &coords,
const RDGeom::Point3D &point,
std::vector<double> &distances) {
distances.resize(coords.size());
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.empty(), "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(const std::vector<double> &v) {
PRECONDITION(!v.empty(), "no values");
double res = v[0];
unsigned int id = 0;
for (unsigned int i = 1; i < v.size(); ++i) {
if (v[i] > res) {
res = v[i];
id = i;
}
}
return id;
}
unsigned int smallestValId(const std::vector<double> &v) {
PRECONDITION(!v.empty(), "no values");
double res = v[0];
unsigned int id = 0;
for (unsigned int i = 1; 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) {
std::vector<double> moments(3, 0.0);
unsigned int numPts = dist.size();
if (numPts > 0) {
// 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;
if (moments[1] == 0) {
moments[2] = 0.0;
} else {
#ifdef WIN32
moments[2] = moments[2] / (moments[1] * moments[1] * moments[1]);
if (moments[2] >= 0)
moments[2] = pow(moments[2], 1. / 3.);
else
moments[2] = -1. * pow(-1. * moments[2], 1. / 3.);
#else
moments[2] = cbrt(moments[2] / (moments[1] * moments[1] * moments[1]));
#endif
}
}
// add moments to descriptor
std::copy(moments.begin(), moments.end(), descriptor.begin() + idx);
}
class ss_matcher {
public:
ss_matcher(){};
ss_matcher(const std::string &pattern) {
RDKit::RWMol *p = RDKit::SmartsToMol(pattern);
TEST_ASSERT(p);
m_matcher.reset(p);
};
const RDKit::ROMol *getMatcher() const { return m_matcher.get(); };
private:
RDKit::ROMOL_SPTR m_matcher;
};
// Definitions for feature points from
// https://bitbucket.org/aschreyer/usrcat/src/2aa77f970c2c/usrcat/__init__.py
const char *smartsPatterns[4] = {
"[#6+0!$(*~[#7,#8,F]),SH0+0v2,s+0,S^3,Cl+0,Br+0,I+0]", // hydrophobic
"[a]", // aromatic
"[$([O,S;H1;v2]-[!$(*=[O,N,P,S])]),$([O,S;H0;v2]),$([O,S;-]),\
$([N&v3;H1,H2]-[!$(*=[O,N,P,S])]),$([N;v3;H0]),$([n,o,s;+0]),F]", // acceptor
"[N!H0v3,N!H0+v4,OH+0,SH+0,nH+0]" // donor
};
std::vector<std::string> featureSmarts(smartsPatterns, smartsPatterns + 4);
typedef boost::flyweight<boost::flyweights::key_value<std::string, ss_matcher>,
boost::flyweights::no_tracking>
pattern_flyweight;
void getAtomIdsForFeatures(const ROMol &mol,
std::vector<std::vector<unsigned int>> &atomIds) {
unsigned int numFeatures = featureSmarts.size();
PRECONDITION(atomIds.size() == numFeatures,
"atomIds must have be the same size as featureSmarts");
std::vector<const ROMol *> featureMatchers;
featureMatchers.reserve(numFeatures);
BOOST_FOREACH (const std::string &feature, featureSmarts) {
const ROMol *matcher = pattern_flyweight(feature).get().getMatcher();
featureMatchers.push_back(matcher);
}
for (unsigned int i = 0; i < numFeatures; ++i) {
std::vector<MatchVectType> matchVect;
// to maintain thread safety, we have to copy the pattern molecules:
SubstructMatch(mol, ROMol(*featureMatchers[i], true), matchVect);
BOOST_FOREACH (MatchVectType mv, matchVect) {
for (MatchVectType::const_iterator mIt = mv.begin(); mIt != mv.end();
++mIt) {
atomIds[i].push_back(mIt->second);
}
}
} // end loop over features
}
} // 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);
std::vector<RDGeom::Point3D> points(4);
calcUSRDistributions(coords, dist, points);
calcUSRFromDistributions(dist, descriptor);
}
void USRCAT(const ROMol &mol, std::vector<double> &descriptor,
std::vector<std::vector<unsigned int>> &atomIds, int confId) {
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");
}
// get atom selections
unsigned int numClasses = atomIds.size();
if (numClasses == 0) { // no user input, use default values
numClasses = featureSmarts.size();
atomIds.resize(numClasses);
getAtomIdsForFeatures(mol, atomIds);
}
PRECONDITION(descriptor.size() == 12 * (numClasses + 1),
"descriptor wrong size");
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 original USR
std::vector<std::vector<double>> distribs(4);
std::vector<RDGeom::Point3D> points(4);
calcUSRDistributions(coords, distribs, points);
std::vector<double> tmpDescriptor(12);
calcUSRFromDistributions(distribs, tmpDescriptor);
std::copy(tmpDescriptor.begin(), tmpDescriptor.end(), descriptor.begin());
// loop over the atom selections
unsigned int featIdx = 12;
BOOST_FOREACH (std::vector<unsigned int> atomsInClass, atomIds) {
// reduce the coordinates to the atoms of interest
RDGeom::Point3DConstPtrVect reducedCoords;
reducedCoords.reserve(atomsInClass.size());
BOOST_FOREACH (unsigned int idx, atomsInClass) {
reducedCoords.push_back(coords[idx]);
}
calcUSRDistributionsFromPoints(reducedCoords, points, distribs);
calcUSRFromDistributions(distribs, tmpDescriptor);
std::copy(tmpDescriptor.begin(), tmpDescriptor.end(),
descriptor.begin() + featIdx);
featIdx += 12;
}
}
void calcUSRDistributions(const RDGeom::Point3DConstPtrVect &coords,
std::vector<std::vector<double>> &dist,
std::vector<RDGeom::Point3D> &points) {
PRECONDITION(dist.size() == 4, "dist must have 4 elements");
PRECONDITION(points.size() == 4, "points must have 4 elements");
// ctd = centroid
calcCentroid(coords, points[0]);
calcDistances(coords, points[0], dist[0]);
// catc = closest atom to centroid
points[1] = (*coords[smallestValId(dist[0])]);
calcDistances(coords, points[1], dist[1]);
// fatc = farthest atom to centroid
points[2] = (*coords[largestValId(dist[0])]);
calcDistances(coords, points[2], dist[2]);
// fatf = farthest atom to fatc
points[3] = (*coords[largestValId(dist[2])]);
calcDistances(coords, points[3], 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) {
PRECONDITION(descriptor.size() == 3 * dist.size(),
"descriptor must have 3 times more elements than dist");
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,
const std::vector<double> &weights) {
unsigned int num = 12; // length of each subset
PRECONDITION(d1.size() == d2.size(), "descriptors must have the same size");
PRECONDITION(weights.size() == (d1.size() / num),
"size of weights not correct");
double score = 1.0;
for (unsigned int w = 0; w < (d1.size() / num); ++w) {
double tmpScore = 0.0;
unsigned int offset = num * w;
for (unsigned int i = 0; i < num; ++i) {
tmpScore += fabs(d1[i + offset] - d2[i + offset]);
}
tmpScore /= num;
score += weights[w] * tmpScore;
}
return 1.0 / score;
}
} // end of namespace Descriptors
} // end of namespace RDKit
|