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
|
//
// Copyright (C) 2017 Novartis Institutes for BioMedical Research
//
// @@ 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 RDKIT_RGROUPDECOMP_H
#define RDKIT_RGROUPDECOMP_H
#include "../RDKitBase.h"
#include <GraphMol/Substruct/SubstructMatch.h>
namespace RDKit {
//! Compute the isomporphic degenerative points in the
//! molecule. These are points that are symmetrically
//! equivalent.
/*!
\param mol Molecule to compute the degenerative points
\return the set of degenerative points (set<unsigned int>)
*/
typedef enum {
IsotopeLabels = 0x01,
AtomMapLabels = 0x02,
AtomIndexLabels = 0x04,
RelabelDuplicateLabels = 0x08,
AutoDetect = 0x0F,
} RGroupLabels;
typedef enum {
Greedy = 0x01,
GreedyChunks = 0x02,
Exhaustive = 0x04, // not really useful for large sets
} RGroupMatching;
typedef enum {
AtomMap = 0x01,
Isotope = 0x02,
MDLRGroup = 0x04,
} RGroupLabelling;
typedef enum {
None = 0x0,
MCS = 0x01,
} RGroupCoreAlignment;
struct RDKIT_RGROUPDECOMPOSITION_EXPORT RGroupDecompositionParameters {
unsigned int labels;
unsigned int matchingStrategy;
unsigned int rgroupLabelling;
unsigned int alignment;
unsigned int chunkSize;
bool onlyMatchAtRGroups;
bool removeAllHydrogenRGroups;
bool removeHydrogensPostMatch;
RGroupDecompositionParameters(unsigned int labels = AutoDetect,
unsigned int strategy = GreedyChunks,
unsigned int labelling = AtomMap | MDLRGroup,
unsigned int alignment = MCS,
unsigned int chunkSize = 5,
bool matchOnlyAtRGroups = false,
bool removeHydrogenOnlyGroups = true,
bool removeHydrogensPostMatch = false)
: labels(labels),
matchingStrategy(strategy),
rgroupLabelling(labelling),
alignment(alignment),
chunkSize(chunkSize),
onlyMatchAtRGroups(matchOnlyAtRGroups),
removeAllHydrogenRGroups(removeHydrogenOnlyGroups),
removeHydrogensPostMatch(removeHydrogensPostMatch),
indexOffset(-1) {}
bool prepareCore(RWMol &, const RWMol *alignCore);
private:
int indexOffset;
};
typedef std::map<std::string, boost::shared_ptr<ROMol>> RGroupRow;
typedef std::vector<boost::shared_ptr<ROMol>> RGroupColumn;
typedef std::vector<RGroupRow> RGroupRows;
typedef std::map<std::string, RGroupColumn> RGroupColumns;
struct RGroupDecompData;
class RDKIT_RGROUPDECOMPOSITION_EXPORT RGroupDecomposition {
RGroupDecompData *data; // implementation details
RGroupDecomposition(const RGroupDecomposition &); // no copy construct
RGroupDecomposition &operator=(
const RGroupDecomposition &); // Prevent assignment
public:
RGroupDecomposition(const ROMol &core,
const RGroupDecompositionParameters ¶ms =
RGroupDecompositionParameters());
RGroupDecomposition(const std::vector<ROMOL_SPTR> &cores,
const RGroupDecompositionParameters ¶ms =
RGroupDecompositionParameters());
~RGroupDecomposition();
int add(const ROMol &mol);
bool process();
//! return rgroups in row order group[row][attachment_point] = ROMol
RGroupRows getRGroupsAsRows() const;
//! return rgroups in column order group[attachment_point][row] = ROMol
RGroupColumns getRGroupsAsColumns() const;
};
RDKIT_RGROUPDECOMPOSITION_EXPORT unsigned int RGroupDecompose(const std::vector<ROMOL_SPTR> &cores,
const std::vector<ROMOL_SPTR> &mols,
RGroupRows &rows,
std::vector<unsigned int> *unmatched = 0,
const RGroupDecompositionParameters &options =
RGroupDecompositionParameters());
RDKIT_RGROUPDECOMPOSITION_EXPORT unsigned int RGroupDecompose(const std::vector<ROMOL_SPTR> &cores,
const std::vector<ROMOL_SPTR> &mols,
RGroupColumns &columns,
std::vector<unsigned int> *unmatched = 0,
const RGroupDecompositionParameters &options =
RGroupDecompositionParameters());
}
#endif
|