RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
RGroupUtils.h
Go to the documentation of this file.
1//
2// Copyright (C) 2017 Novartis Institutes for BioMedical Research
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#ifndef RGROUP_UTILS
11#define RGROUP_UTILS
12
13#include <GraphMol/RDKitBase.h>
15#include "RGroupDecomp.h"
16
17#include <map>
18namespace RDKit {
19
20RDKIT_RGROUPDECOMPOSITION_EXPORT extern const std::string RLABEL;
21RDKIT_RGROUPDECOMPOSITION_EXPORT extern const std::string RLABEL_TYPE;
24RDKIT_RGROUPDECOMPOSITION_EXPORT extern const std::string done;
25RDKIT_RGROUPDECOMPOSITION_EXPORT extern const std::string
27
28const unsigned int EMPTY_CORE_LABEL = -100000;
29
30// Various places where rgroups can be labeled
31// the order of precedence
40
41//! return the user friendly name for the given labelling
42std::string labellingToString(Labelling type);
43
44//! Get the RLabels,atom mapping for the current molecule
45std::map<int, Atom *> getRlabels(const RWMol &mol);
46
47//! Remove the user labels from the atom
49
50//! Set the rgroup label for the current atom, this also sets the
51/// appropriate MDL or other label
52bool setLabel(Atom *atom, int label, std::set<int> &labels, int &maxLabel,
53 bool relabel, Labelling type);
54
55//! Returns true if the core has a dummy atom
56bool hasDummy(const RWMol &core);
57
58//! Returns true if the core atom is either an atom with multiple
59/// connections or an atom with a single connection that has no user
60/// defined rgroup label
62
63//! Return true if the atom has a user-defined R group label
64bool isUserRLabel(const Atom &atom);
65
66// ! Return true if the atom is a terminal dummy R group (user labelled or
67// unlabelled)
68bool isDummyRGroupAttachment(const Atom &atom);
69
70//! Returns true if the core atom is either a dummy atom with multiple
71/// connections or a dummy atom with a single connection that has no user
72/// defined rgroup label
74 if (atom.getAtomicNum()) {
75 return false;
76 }
78}
79
80//! Returns a JSON form
81/// The prefix argument is added to each line in the output
83 const RGroupRow &rgr, const std::string &prefix = "");
84//! Returns a JSON form
85/// The prefix argument is added to each line in the output
87 const RGroupRows &rgr, const std::string &prefix = "");
88//! Returns a JSON form
89/// The prefix argument is added to each line in the output
91 const RGroupColumn &rgr, const std::string &prefix = "");
92//! Returns a JSON form
93/// The prefix argument is added to each line in the output
95 const RGroupColumns &rgr, const std::string &prefix = "");
96
97//! Relabel dummy atoms bearing an R-group mapping (as
98/// atom map number, isotope or MDLRGroup label) such that
99/// they will be displayed by the rendering code as R# rather
100/// than #*, *:#, #*:#, etc. By default, only the MDLRGroup label
101/// is retained on output; this may be configured through the
102/// outputLabels parameter.
103/// In case there are multiple potential R-group mappings,
104/// the priority on input is Atom map number > Isotope > MDLRGroup.
105/// The inputLabels parameter allows to configure which mappings
106/// are taken into consideration.
108 ROMol &mol, unsigned int inputLabels = AtomMap | Isotope | MDLRGroup,
109 unsigned int outputLabels = MDLRGroup);
110
111} // namespace RDKit
112
113#endif
pulls in the core RDKit functionality
The class for representing atoms.
Definition Atom.h:75
int getAtomicNum() const
returns our atomic number
Definition Atom.h:134
RWMol is a molecule class that is intended to be edited.
Definition RWMol.h:32
#define RDKIT_RGROUPDECOMPOSITION_EXPORT
Definition export.h:417
Std stuff.
RDKIT_RGROUPDECOMPOSITION_EXPORT const std::string RLABEL_CORE_INDEX
std::string labellingToString(Labelling type)
return the user friendly name for the given labelling
RDKIT_RGROUPDECOMPOSITION_EXPORT const std::string done
RDKIT_RGROUPDECOMPOSITION_EXPORT const std::string UNLABELED_CORE_ATTACHMENT
bool rdvalue_is(const RDValue_cast_t)
std::map< std::string, ROMOL_SPTR > RGroupRow
std::vector< ROMOL_SPTR > RGroupColumn
RDKIT_RGROUPDECOMPOSITION_EXPORT void relabelMappedDummies(ROMol &mol, unsigned int inputLabels=AtomMap|Isotope|MDLRGroup, unsigned int outputLabels=MDLRGroup)
bool isDummyRGroupAttachment(const Atom &atom)
bool setLabel(Atom *atom, int label, std::set< int > &labels, int &maxLabel, bool relabel, Labelling type)
void clearInputLabels(Atom *atom)
Remove the user labels from the atom.
std::map< std::string, RGroupColumn > RGroupColumns
bool isAtomWithMultipleNeighborsOrNotDummyRGroupAttachment(const Atom &atom)
RDKIT_RGROUPDECOMPOSITION_EXPORT const std::string RLABEL
bool hasDummy(const RWMol &core)
Returns true if the core has a dummy atom.
RDKIT_RGROUPDECOMPOSITION_EXPORT const std::string SIDECHAIN_RLABELS
RDKIT_RGROUPDECOMPOSITION_EXPORT std::string toJSON(const RGroupRow &rgr, const std::string &prefix="")
bool isAnyAtomWithMultipleNeighborsOrNotUserRLabel(const Atom &atom)
Definition RGroupUtils.h:73
RDKIT_RGROUPDECOMPOSITION_EXPORT const std::string RLABEL_TYPE
const unsigned int EMPTY_CORE_LABEL
Definition RGroupUtils.h:28
bool isUserRLabel(const Atom &atom)
Return true if the atom has a user-defined R group label.
std::vector< RGroupRow > RGroupRows
std::map< int, Atom * > getRlabels(const RWMol &mol)
Get the RLabels,atom mapping for the current molecule.