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
|
//
// 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 <RDGeneral/export.h>
#ifndef RD_RDFINGERPRINTGEN_H_2018_07
#define RD_RDFINGERPRINTGEN_H_2018_07
#include <GraphMol/Fingerprints/FingerprintGenerator.h>
namespace RDKit {
namespace RDKitFP {
template <typename OutputType>
class RDKIT_FINGERPRINTS_EXPORT RDKitFPArguments
: public FingerprintArguments<OutputType> {
public:
const unsigned int d_minPath;
const unsigned int d_maxPath;
const bool df_useHs;
const bool df_branchedPaths;
const bool df_useBondOrder;
OutputType getResultSize() const;
std::string infoString() const;
/**
\brief Construct a new RDKitFPArguments object
\param minPath the minimum path length (in bonds) to be included
\param maxPath the maximum path length (in bonds) to be included
\param useHs toggles inclusion of Hs in paths (if the molecule has
explicit Hs)
\param branchedPaths toggles generation of branched subgraphs, not just
linear paths
\param useBondOrder toggles inclusion of bond orders in the path hashes
\param useCountSimulation if set, use count simulation while
generating the fingerprint
\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
*/
RDKitFPArguments(unsigned int minPath, unsigned int maxPath, bool useHs,
bool branchedPaths, bool useBondOrder,
const bool countSimulation,
const std::vector<std::uint32_t> countBounds,
const std::uint32_t fpSize);
};
class RDKIT_FINGERPRINTS_EXPORT RDKitFPAtomInvGenerator
: public AtomInvariantsGenerator {
public:
std::vector<std::uint32_t> *getAtomInvariants(const ROMol &mol) const;
std::string infoString() const;
RDKitFPAtomInvGenerator *clone() const;
};
template <typename OutputType>
class RDKIT_FINGERPRINTS_EXPORT RDKitFPAtomEnv
: public AtomEnvironment<OutputType> {
const OutputType d_bitId;
const boost::dynamic_bitset<> d_atomsInPath;
public:
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 = false) const;
/**
\brief Construct a new RDKitFPAtomEnv object
\param bitId bitId generated for this environment
\param atomsInPath holds atoms in this environment to set additional output
*/
RDKitFPAtomEnv(const OutputType bitId,
const boost::dynamic_bitset<> atomsInPath);
};
template <typename OutputType>
class RDKIT_FINGERPRINTS_EXPORT RDKitFPEnvGenerator
: public AtomEnvironmentGenerator<OutputType> {
public:
std::vector<AtomEnvironment<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 = false) const;
std::string infoString() const;
};
/**
\brief Get a RDKit fingerprint generator with given parameters
\tparam OutputType determines the size of the bitIds and the result, can be 32
or 64 bit unsigned integer
\param minPath the minimum path length (in bonds) to be included
\param maxPath the maximum path length (in bonds) to be included
\param useHs toggles inclusion of Hs in paths (if the molecule has
explicit Hs)
\param branchedPaths toggles generation of branched subgraphs, not just
linear paths
\param useBondOrder toggles inclusion of bond orders in the path hashes
\param atomInvariantsGenerator custom atom invariants generator to use
\param useCountSimulation if set, use count simulation while
generating the fingerprint
\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 ownsAtomInvGen if set atom invariants generator is destroyed with the
fingerprint generator
/return FingerprintGenerator<OutputType>* that generated RDKit fingerprints
*/
template <typename OutputType>
RDKIT_FINGERPRINTS_EXPORT FingerprintGenerator<OutputType> *getRDKitFPGenerator(
const unsigned int minPath = 1, const unsigned int maxPath = 7,
const bool useHs = true, const bool branchedPaths = true,
const bool useBondOrder = true,
AtomInvariantsGenerator *atomInvariantsGenerator = nullptr,
const bool countSimulation = true,
const std::vector<std::uint32_t> countBounds = {1, 2, 4, 8},
const std::uint32_t fpSize = 2048, const bool ownsAtomInvGen = false);
} // namespace RDKitFP
} // namespace RDKit
#endif
|