RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
SubstructUtils.h
Go to the documentation of this file.
1//
2// Copyright (C) 2003-2019 Greg Landrum and Rational Discovery LLC
3//
4// @@ All Rights Reserved @@
5// This file is part of the RDKit.
6// The contents are covered by the terms of the BSD license
7// which is included in the file license.txt, found at the root
8// of the RDKit source tree.
9//
10#include <RDGeneral/export.h>
11#ifndef RD_SUBSTRUCT_UTILS_H
12#define RD_SUBSTRUCT_UTILS_H
13
14#include "SubstructMatch.h"
15
16namespace RDKit {
17class ROMol;
18class RDProps;
19class Atom;
20class Bond;
21
23RDKIT_SUBSTRUCTMATCH_EXPORT void removeDuplicates(std::vector<MatchVectType>& v,
24 unsigned int nAtoms);
26 const std::vector<std::string>& properties);
30 const Atom* a2);
33//! This postprocesses the passed substruct matches and returns
34//! the match that has the largest number of non-hydrogen atoms
35//! in correspondence of terminal dummy atoms
37 const ROMol& mol, const ROMol& core,
38 const std::vector<MatchVectType>& matches);
39//! This returns a copy of the passed substruct matches sorted by decreasing
40//! number of non-hydrogen atoms in correspondence of terminal dummy atoms
41RDKIT_SUBSTRUCTMATCH_EXPORT std::vector<MatchVectType>
43 const ROMol& mol, const ROMol& core,
44 const std::vector<MatchVectType>& matches);
46 const Atom* atom);
47
48} // namespace RDKit
49
50#endif
The class for representing atoms.
Definition Atom.h:75
class for representing a bond
Definition Bond.h:47
#define RDKIT_SUBSTRUCTMATCH_EXPORT
Definition export.h:513
Std stuff.
RDKIT_SUBSTRUCTMATCH_EXPORT bool chiralAtomCompat(const Atom *a1, const Atom *a2)
std::vector< std::pair< int, int > > MatchVectType
used to return matches from substructure searching, The format is (queryAtomIdx, molAtomIdx)
RDKIT_SUBSTRUCTMATCH_EXPORT void removeDuplicates(std::vector< MatchVectType > &v, unsigned int nAtoms)
bool rdvalue_is(const RDValue_cast_t)
RDKIT_SUBSTRUCTMATCH_EXPORT double toPrime(const MatchVectType &v)
RDKIT_SUBSTRUCTMATCH_EXPORT bool propertyCompat(const RDProps *r1, const RDProps *r2, const std::vector< std::string > &properties)
RDKIT_SUBSTRUCTMATCH_EXPORT bool atomCompat(const Atom *a1, const Atom *a2, const SubstructMatchParameters &ps)
RDKIT_SUBSTRUCTMATCH_EXPORT bool isAtomTerminalRGroupOrQueryHydrogen(const Atom *atom)
RDKIT_SUBSTRUCTMATCH_EXPORT bool bondCompat(const Bond *b1, const Bond *b2, const SubstructMatchParameters &ps)
RDKIT_SUBSTRUCTMATCH_EXPORT std::vector< MatchVectType > sortMatchesByDegreeOfCoreSubstitution(const ROMol &mol, const ROMol &core, const std::vector< MatchVectType > &matches)
RDKIT_SUBSTRUCTMATCH_EXPORT const MatchVectType & getMostSubstitutedCoreMatch(const ROMol &mol, const ROMol &core, const std::vector< MatchVectType > &matches)