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
|
//
// Copyright (C) 2018 Boran Adas, Google Summer of Code
//
// @@ 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 <GraphMol/Fingerprints/TopologicalTorsionGenerator.h>
#include <GraphMol/Fingerprints/FingerprintUtil.h>
#include <GraphMol/Fingerprints/AtomPairGenerator.h>
namespace RDKit {
namespace TopologicalTorsion {
using namespace AtomPairs;
template <typename OutputType>
TopologicalTorsionArguments<OutputType>::TopologicalTorsionArguments(
const bool includeChirality, const uint32_t torsionAtomCount,
const bool countSimulation, const std::vector<std::uint32_t> countBounds,
const std::uint32_t fpSize)
: df_includeChirality(includeChirality),
d_torsionAtomCount(torsionAtomCount),
FingerprintArguments<OutputType>(countSimulation, countBounds, fpSize){};
template <typename OutputType>
OutputType TopologicalTorsionArguments<OutputType>::getResultSize() const {
OutputType result = 1;
return (result << (d_torsionAtomCount *
(codeSize + (df_includeChirality ? numChiralBits : 0))));
};
template <typename OutputType>
std::string TopologicalTorsionArguments<OutputType>::infoString() const {
return "TopologicalTorsionArguments includeChirality=" +
std::to_string(df_includeChirality) +
" torsionAtomCount=" + std::to_string(d_torsionAtomCount);
};
template <typename OutputType>
OutputType TopologicalTorsionAtomEnv<OutputType>::getBitId(
FingerprintArguments<OutputType> *arguments,
const std::vector<std::uint32_t> *atomInvariants,
const std::vector<std::uint32_t> *bondInvariants,
const AdditionalOutput *additionalOutput, const bool hashResults) const {
return d_bitId;
};
template <typename OutputType>
TopologicalTorsionAtomEnv<OutputType>::TopologicalTorsionAtomEnv(
OutputType bitId)
: d_bitId(bitId){};
template <typename OutputType>
std::vector<AtomEnvironment<OutputType> *>
TopologicalTorsionEnvGenerator<OutputType>::getEnvironments(
const ROMol &mol, FingerprintArguments<OutputType> *arguments,
const std::vector<std::uint32_t> *fromAtoms,
const std::vector<std::uint32_t> *ignoreAtoms, const int confId,
const AdditionalOutput *additionalOutput,
const std::vector<std::uint32_t> *atomInvariants,
const std::vector<std::uint32_t> *bondInvariants,
const bool hashResults) const {
TopologicalTorsionArguments<OutputType> *topologicalTorsionArguments =
dynamic_cast<TopologicalTorsionArguments<OutputType> *>(arguments);
std::vector<AtomEnvironment<OutputType> *> result =
std::vector<AtomEnvironment<OutputType> *>();
boost::dynamic_bitset<> *fromAtomsBV = nullptr;
if (fromAtoms) {
fromAtomsBV = new boost::dynamic_bitset<>(mol.getNumAtoms());
BOOST_FOREACH (boost::uint32_t fAt, *fromAtoms) { fromAtomsBV->set(fAt); }
}
boost::dynamic_bitset<> *ignoreAtomsBV = nullptr;
if (ignoreAtoms) {
ignoreAtomsBV = new boost::dynamic_bitset<>(mol.getNumAtoms());
BOOST_FOREACH (boost::uint32_t fAt, *ignoreAtoms) {
ignoreAtomsBV->set(fAt);
}
}
boost::dynamic_bitset<> pAtoms(mol.getNumAtoms());
PATH_LIST paths = findAllPathsOfLengthN(
mol, topologicalTorsionArguments->d_torsionAtomCount, false);
for (PATH_LIST::const_iterator pathIt = paths.begin(); pathIt != paths.end();
++pathIt) {
bool keepIt = true;
if (fromAtomsBV) {
keepIt = false;
}
std::vector<boost::uint32_t> pathCodes;
const PATH_TYPE &path = *pathIt;
if (fromAtomsBV) {
if (fromAtomsBV->test(static_cast<boost::uint32_t>(path.front())) ||
fromAtomsBV->test(static_cast<boost::uint32_t>(path.back()))) {
keepIt = true;
}
}
if (keepIt && ignoreAtomsBV) {
BOOST_FOREACH (int pElem, path) {
if (ignoreAtomsBV->test(pElem)) {
keepIt = false;
break;
}
}
}
if (keepIt) {
pAtoms.reset();
for (auto pIt = path.begin(); pIt < path.end(); ++pIt) {
// look for a cycle that doesn't start at the first atom
// we can't effectively canonicalize these at the moment
// (was github #811)
if (pIt != path.begin() && *pIt != *(path.begin()) && pAtoms[*pIt]) {
pathCodes.clear();
break;
}
pAtoms.set(*pIt);
unsigned int code = (*atomInvariants)[*pIt] % ((1 << codeSize) - 1) + 1;
// subtract off the branching number:
if (pIt != path.begin() && pIt + 1 != path.end()) {
--code;
}
pathCodes.push_back(code);
}
if (pathCodes.size()) {
OutputType code;
if (hashResults) {
code = getTopologicalTorsionHash(pathCodes);
} else {
code = getTopologicalTorsionCode(
pathCodes, topologicalTorsionArguments->df_includeChirality);
}
result.push_back(new TopologicalTorsionAtomEnv<OutputType>(code));
}
}
}
delete fromAtomsBV;
delete ignoreAtomsBV;
return result;
};
template <typename OutputType>
std::string TopologicalTorsionEnvGenerator<OutputType>::infoString() const {
return "TopologicalTorsionEnvGenerator";
};
template <typename OutputType>
FingerprintGenerator<OutputType> *getTopologicalTorsionGenerator(
const bool includeChirality, const uint32_t torsionAtomCount,
AtomInvariantsGenerator *atomInvariantsGenerator,
const bool countSimulation, const std::vector<std::uint32_t> countBounds,
const std::uint32_t fpSize, const bool ownsAtomInvGen) {
TopologicalTorsionEnvGenerator<OutputType> *envGenerator =
new TopologicalTorsionEnvGenerator<OutputType>();
TopologicalTorsionArguments<OutputType> *arguments =
new TopologicalTorsionArguments<OutputType>(
includeChirality, torsionAtomCount, countSimulation, countBounds,
fpSize);
bool ownsAtomInvGenerator = ownsAtomInvGen;
if (!atomInvariantsGenerator) {
atomInvariantsGenerator =
new AtomPair::AtomPairAtomInvGenerator(includeChirality, true);
ownsAtomInvGenerator = true;
}
return new FingerprintGenerator<OutputType>(envGenerator, arguments,
atomInvariantsGenerator, nullptr,
ownsAtomInvGenerator, false);
};
// Topological torsion fingerprint does not support 32 bit output yet
template RDKIT_FINGERPRINTS_EXPORT FingerprintGenerator<std::uint64_t> *getTopologicalTorsionGenerator(
const bool includeChirality, const uint32_t torsionAtomCount,
AtomInvariantsGenerator *atomInvariantsGenerator,
const bool countSimulation, const std::vector<std::uint32_t> countBounds,
const std::uint32_t fpSize, const bool ownsAtomInvGen);
} // namespace TopologicalTorsion
} // namespace RDKit
|