RDKit
Open-source cheminformatics and machine learning.
ProximityBonds.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2013-2017 Greg Landrum and NextMove Software
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_PROXIMITYBONDS_H_
12 #define _RD_PROXIMITYBONDS_H_
13 #include <GraphMol/RWMol.h>
14 
15 namespace RDKit {
16 static const unsigned int ctdIGNORE_H_H_CONTACTS = 0x1;
17 // static const unsigned int ctdALL_FLAGS = 0xFFFFFFFF;
18 class AtomPDBResidueInfo;
19 RDKIT_FILEPARSERS_EXPORT bool IsBlacklistedPair(Atom *beg_atom, Atom *end_atom);
20 RDKIT_FILEPARSERS_EXPORT void ConnectTheDots(RWMol *mol, unsigned int flags = 0);
23 }
24 
25 #endif // _RD_PROXIMITYBONDS_H_
static const unsigned int ctdIGNORE_H_H_CONTACTS
#define RDKIT_FILEPARSERS_EXPORT
Definition: export.h:203
RWMol is a molecule class that is intended to be edited.
Definition: RWMol.h:31
RDKIT_FILEPARSERS_EXPORT void StandardPDBResidueBondOrders(RWMol *mol)
Std stuff.
Definition: Atom.h:30
RDKIT_FILEPARSERS_EXPORT bool IsBlacklistedPair(Atom *beg_atom, Atom *end_atom)
RDKIT_FILEPARSERS_EXPORT bool SamePDBResidue(AtomPDBResidueInfo *p, AtomPDBResidueInfo *q)
Captures atom-level information about peptide residues.
Definition: MonomerInfo.h:50
The class for representing atoms.
Definition: Atom.h:69
RDKIT_FILEPARSERS_EXPORT void ConnectTheDots(RWMol *mol, unsigned int flags=0)
Defines the editable molecule class RWMol.