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 327 328 329 330 331 332 333 334 335
|
//
// Copyright (C) 2018-2022 Boran Adas and other RDKit contributors
//
// @@ 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 <RDGeneral/export.h>
#ifndef RD_MORGANGEN_H_2018_07
#define RD_MORGANGEN_H_2018_07
#include <GraphMol/Fingerprints/FingerprintGenerator.h>
#include <cstdint>
namespace RDKit {
namespace MorganFingerprint {
/**
\brief Default atom invariants generator for Morgan fingerprint, generates
ECFP-type invariants
*/
class RDKIT_FINGERPRINTS_EXPORT MorganAtomInvGenerator
: public AtomInvariantsGenerator {
const bool df_includeRingMembership;
public:
/**
\brief Construct a new MorganAtomInvGenerator object
\param includeRingMembership : if set, whether or not the atom is in a ring
will be used in the invariant list.
*/
MorganAtomInvGenerator(const bool includeRingMembership = true);
std::vector<std::uint32_t> *getAtomInvariants(
const ROMol &mol) const override;
std::string infoString() const override;
MorganAtomInvGenerator *clone() const override;
};
/**
\brief Alternative atom invariants generator for Morgan fingerprint, generate
FCFP-type invariants
*/
class RDKIT_FINGERPRINTS_EXPORT MorganFeatureAtomInvGenerator
: public AtomInvariantsGenerator {
std::vector<const ROMol *> *dp_patterns;
public:
/**
\brief Construct a new MorganFeatureAtomInvGenerator object
\param patterns : if provided should contain the queries used to assign
atom-types. if not provided, feature definitions adapted from reference:
Gobbi and Poppinger, Biotech. Bioeng. _61_ 47-54 (1998) will be used for
Donor, Acceptor, Aromatic, Halogen, Basic, Acidic.
*/
MorganFeatureAtomInvGenerator(std::vector<const ROMol *> *patterns = nullptr);
std::vector<std::uint32_t> *getAtomInvariants(
const ROMol &mol) const override;
std::string infoString() const override;
MorganFeatureAtomInvGenerator *clone() const override;
};
/**
\brief Bond invariants generator for Morgan fingerprint
*/
class RDKIT_FINGERPRINTS_EXPORT MorganBondInvGenerator
: public BondInvariantsGenerator {
const bool df_useBondTypes;
const bool df_useChirality;
public:
/**
\brief Construct a new MorganBondInvGenerator object
\param useBondTypes : if set, bond types will be included as a part of the
bond invariants
\param useChirality : if set, chirality information will be included as a
part of the bond invariants
*/
MorganBondInvGenerator(const bool useBondTypes = true,
const bool useChirality = false);
std::vector<std::uint32_t> *getBondInvariants(
const ROMol &mol) const override;
std::string infoString() const override;
MorganBondInvGenerator *clone() const override;
~MorganBondInvGenerator() override = default;
};
/**
\brief Class for holding Morgan fingerprint specific arguments
*/
class RDKIT_FINGERPRINTS_EXPORT MorganArguments : public FingerprintArguments {
public:
bool df_onlyNonzeroInvariants = false;
unsigned int d_radius = 3;
bool df_includeRedundantEnvironments = false;
bool df_useBondTypes = true;
std::string infoString() const override;
/**
\brief Construct a new MorganArguments object
\param radius the number of iterations to grow the fingerprint
\param countSimulation if set, use count simulation while generating the
fingerprint
\param includeChirality if set, chirality information will be added to the
generated bit id, independently from bond invariants
\param onlyNonzeroInvariants if set, bits will only be set from atoms that
have a nonzero invariant
\param countBounds boundaries for count simulation, corresponding bit will
be set if the count is higher than the number provided for that spot
\param fpSize size of the generated fingerprint, does not affect the sparse
versions
\param includeRedundantEnvironments if set redundant environments will be
included in the fingerprint
\param useBondTypes if set bond types will be included in the fingerprint
*/
MorganArguments(unsigned int radius = 3, bool countSimulation = false,
bool includeChirality = false,
bool onlyNonzeroInvariants = false,
std::vector<std::uint32_t> countBounds = {1, 2, 4, 8},
std::uint32_t fpSize = 2048,
bool includeRedundantEnvironments = false,
bool useBondTypes = true)
: FingerprintArguments(countSimulation, countBounds, fpSize, 1,
includeChirality),
df_onlyNonzeroInvariants(onlyNonzeroInvariants),
d_radius(radius),
df_includeRedundantEnvironments(includeRedundantEnvironments),
df_useBondTypes(useBondTypes) {};
};
/**
\brief Class for holding the bit-id created from Morgan fingerprint
environments and the additional data necessary extra outputs
*/
template <typename OutputType>
class RDKIT_FINGERPRINTS_EXPORT MorganAtomEnv
: public AtomEnvironment<OutputType> {
const OutputType d_code;
const unsigned int d_atomId;
const unsigned int d_layer;
public:
OutputType getBitId(
FingerprintArguments *arguments, // unused
const std::vector<std::uint32_t> *atomInvariants, // unused
const std::vector<std::uint32_t> *bondInvariants, // unused
AdditionalOutput *additionalOutput, // unused
const bool hashResults = false, // unused
const std::uint64_t fpSize = 0 // unused
) const override;
void updateAdditionalOutput(AdditionalOutput *output,
size_t bitId) const override;
/**
\brief Construct a new MorganAtomEnv object
\param code bit id generated from this environment
\param atomId atom id of the atom at the center of this environment
\param layer radius of this environment
*/
MorganAtomEnv(const std::uint32_t code, const unsigned int atomId,
const unsigned int layer);
};
/**
\brief Class that generates atom environments for Morgan fingerprint
*/
template <typename OutputType>
class RDKIT_FINGERPRINTS_EXPORT MorganEnvGenerator
: public AtomEnvironmentGenerator<OutputType> {
public:
std::vector<AtomEnvironment<OutputType> *> getEnvironments(
const ROMol &mol, FingerprintArguments *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 = false) const override;
std::string infoString() const override;
OutputType getResultSize() const override;
};
/**
\brief Get a fingerprint generator for Morgan fingerprint
\tparam OutputType determines the size of the bitIds and the result, can be 32
or 64 bit unsigned integer
\param radius the number of iterations to grow the fingerprint
\param countSimulation if set, use count simulation while generating the
fingerprint
\param includeChirality if set, chirality information will be added to the
generated bit id, independently from bond invariants
\param onlyNonzeroInvariants if set, bits will only be set from atoms that
have a nonzero invariant
\param countBounds boundaries for count simulation, corresponding bit will be
set if the count is higher than the number provided for that spot
\param fpSize size of the generated fingerprint, does not affect the sparse
versions
\param countSimulation if set, use count simulation while generating the
fingerprint
\param includeChirality sets includeChirality flag for both MorganArguments
and the default bond generator MorganBondInvGenerator
\param useBondTypes if set, bond types will be included as a part of the
default bond invariants
\param onlyNonzeroInvariants if set, bits will only be set from atoms that
have a nonzero invariant
\param includeRedundantEnvironments if set redundant environments will be
included in the fingerprint
\param atomInvariantsGenerator custom atom invariants generator to use
\param bondInvariantsGenerator custom bond invariants generator to use
\param ownsAtomInvGen if set atom invariants generator is destroyed with the
fingerprint generator
\param ownsBondInvGen if set bond invariants generator is destroyed with the
fingerprint generator
\return FingerprintGenerator<OutputType>* that generates Morgan fingerprints
This generator supports the following \c AdditionalOutput types:
- \c atomToBits : which bits each atom is the central atom for
- \c atomCounts : how many bits each atom sets
- \c bitInfoMap : map from bitId to (atomId, radius) pairs
*/
template <typename OutputType>
RDKIT_FINGERPRINTS_EXPORT FingerprintGenerator<OutputType> *getMorganGenerator(
unsigned int radius, bool countSimulation, bool includeChirality,
bool useBondTypes, bool onlyNonzeroInvariants,
bool includeRedundantEnvironments,
AtomInvariantsGenerator *atomInvariantsGenerator = nullptr,
BondInvariantsGenerator *bondInvariantsGenerator = nullptr,
std::uint32_t fpSize = 2048,
std::vector<std::uint32_t> countBounds = {1, 2, 4, 8},
bool ownsAtomInvGen = false, bool ownsBondInvGen = false);
//! \overload
template <typename OutputType>
RDKIT_FINGERPRINTS_EXPORT FingerprintGenerator<OutputType> *getMorganGenerator(
const MorganArguments &args,
AtomInvariantsGenerator *atomInvariantsGenerator = nullptr,
BondInvariantsGenerator *bondInvariantsGenerator = nullptr,
bool ownsAtomInvGen = false, bool ownsBondInvGen = false);
/**
\brief Get a fingerprint generator for Morgan fingerprint
\tparam OutputType determines the size of the bitIds and the result, can be 32
or 64 bit unsigned integer
\param radius the number of iterations to grow the fingerprint
\param countSimulation if set, use count simulation while generating the
fingerprint
\param includeChirality if set, chirality information will be added to the
generated bit id, independently from bond invariants
\param onlyNonzeroInvariants if set, bits will only be set from atoms that
have a nonzero invariant
\param countBounds boundaries for count simulation, corresponding bit will be
set if the count is higher than the number provided for that spot
\param fpSize size of the generated fingerprint, does not affect the sparse
versions
\param countSimulation if set, use count simulation while generating the
fingerprint
\param includeChirality sets includeChirality flag for both MorganArguments
and the default bond generator MorganBondInvGenerator
\param useBondTypes if set, bond types will be included as a part of the
default bond invariants
\param onlyNonzeroInvariants if set, bits will only be set from atoms that
have a nonzero invariant
\param atomInvariantsGenerator custom atom invariants generator to use
\param bondInvariantsGenerator custom bond invariants generator to use
\param ownsAtomInvGen if set atom invariants generator is destroyed with the
fingerprint generator
\param ownsBondInvGen if set bond invariants generator is destroyed with the
fingerprint generator
\return FingerprintGenerator<OutputType>* that generates Morgan fingerprints
This generator supports the following \c AdditionalOutput types:
- \c atomToBits : which bits each atom is the central atom for
- \c atomCounts : how many bits each atom sets
- \c bitInfoMap : map from bitId to (atomId, radius) pairs
*/
template <typename OutputType>
FingerprintGenerator<OutputType> *getMorganGenerator(
unsigned int radius, bool countSimulation = false,
bool includeChirality = false, bool useBondTypes = true,
bool onlyNonzeroInvariants = false,
AtomInvariantsGenerator *atomInvariantsGenerator = nullptr,
BondInvariantsGenerator *bondInvariantsGenerator = nullptr,
std::uint32_t fpSize = 2048,
std::vector<std::uint32_t> countBounds = {1, 2, 4, 8},
bool ownsAtomInvGen = false, bool ownsBondInvGen = false) {
return getMorganGenerator<OutputType>(
radius, countSimulation, includeChirality, useBondTypes,
onlyNonzeroInvariants, false, atomInvariantsGenerator,
bondInvariantsGenerator, fpSize, countBounds, ownsAtomInvGen,
ownsBondInvGen);
};
} // namespace MorganFingerprint
} // namespace RDKit
#endif
|