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
|
//
// Copyright (C) 2020 Guillaume GODIN
// @@ 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.
//
// 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.
//
// Adding ATOM FEATURES descriptors by Guillaume Godin
#include <GraphMol/RDKitBase.h>
#include <iostream>
#include "AtomFeat.h"
#include <GraphMol/PartialCharges/GasteigerCharges.h>
#include <GraphMol/PartialCharges/GasteigerParams.h>
#include <GraphMol/Atom.h>
#include <GraphMol/MolOps.h>
#include <cmath>
#include <vector>
namespace RDKit {
namespace Descriptors {
namespace {
std::vector<Atom::ChiralType> RS{Atom::CHI_TETRAHEDRAL_CW,
Atom::CHI_TETRAHEDRAL_CCW, Atom::CHI_OTHER};
std::vector<std::string> Symbols{"B", "C", "N", "O", "S", "F", "Si",
"P", "Cl", "Br", "I", "H", "*"};
std::vector<Atom::HybridizationType> HS{Atom::SP, Atom::SP2, Atom::SP3,
Atom::SP3D, Atom::SP3D2};
void AtomFeatVector(const RDKit::Atom *atom, const ROMol *mol,
std::vector<double> &feats, bool addchiral) {
PRECONDITION(atom, "bad atom");
PRECONDITION(mol, "bad mol");
if (addchiral) {
feats.reserve(52);
} else {
feats.reserve(49);
}
// initiate ring info if not already done
if (!mol->getRingInfo()->isSssrOrBetter()) {
RDKit::MolOps::findSSSR(*mol);
}
// one hot atom symbols
std::string s = atom->getSymbol();
bool inlist = false;
int indx = 0;
for (auto ind : Symbols) {
if (ind == s) {
feats[indx] = 1;
inlist = true;
} else {
feats[indx] = 0;
}
++indx;
}
// write UNK type if not found in the symbol list
feats[indx] = (inlist ? 0 : 1);
++indx;
// one hot degree
int d = atom->getDegree();
for (int i = 0; i < 7; i++) {
feats[indx] = d == i;
++indx;
}
Atom::HybridizationType hs = atom->getHybridization();
// one hot hybridization type
for (auto hsquery : HS) {
feats[indx] = hs == hsquery;
++indx;
}
// one hot Implicit Valence
int IV = atom->getValence(Atom::ValenceType::IMPLICIT);
for (int i = 0; i < 7; ++i) {
feats[indx] = IV == i;
++indx;
}
// one hot getFormalCharge
int fc = atom->getFormalCharge();
for (int i = -1; i < 2; i++) {
feats[indx] = fc == i;
++indx;
}
// one hot ring size
int atomid = atom->getIdx();
for (unsigned int i = 3; i < 9; i++) {
feats[indx] = mol->getRingInfo()->isAtomInRingOfSize(atomid, i);
++indx;
}
// Is aromatic
feats[indx] = (atom->getIsAromatic());
++indx;
// one hot Total NumH
unsigned int toth = atom->getTotalNumHs(false);
for (unsigned int i = 0; i < 5; ++i) {
feats[indx] = toth == i;
++indx;
}
// add numatoms
feats[indx] = 1. / mol->getNumAtoms();
++indx;
// put if here
if (addchiral) {
Atom::ChiralType rs = atom->getChiralTag();
// one hot getChiralTag type
for (auto rsquery : RS) {
feats[indx] = rs == rsquery;
++indx;
}
}
}
} // end of anonymous namespace
// entry point
void AtomFeatVect(const ROMol &mol, std::vector<double> &res, int atomid,
bool addchiral) {
res.clear();
if (addchiral) {
res.resize(52);
} else {
res.resize(49);
}
AtomFeatVector(mol.getAtomWithIdx(atomid), &mol, res, addchiral);
}
} // namespace Descriptors
} // namespace RDKit
|