RDKit
Open-source cheminformatics and machine learning.
SmilesParseOps.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2001-2016 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_SMILESPARSEOPS_H
12 #define _RD_SMILESPARSEOPS_H
13 #include <GraphMol/Bond.h>
14 
15 namespace RDKit {
16 class RWMol;
17 class Atom;
18 }
19 namespace SmilesParseOps {
21 void ReportParseError(const char *message, bool throwIt = true);
23 void AddFragToMol(RDKit::RWMol *mol, RDKit::RWMol *frag,
26  bool closeRings = false, bool doingQuery = false);
28  const RDKit::Atom *atom1,
29  const RDKit::Atom *atom2);
30 void CloseMolRings(RDKit::RWMol *mol, bool toleratePartials);
33 void parseCXExtensions(RDKit::RWMol &mol, const std::string &extText,
34  std::string::const_iterator &pos);
35 //! removes formal charge, isotope, etc. Primarily useful for QueryAtoms
37 };
38 
39 #endif
void parseCXExtensions(RDKit::RWMol &mol, const std::string &extText, std::string::const_iterator &pos)
void CleanupAfterParsing(RDKit::RWMol *mol)
void CleanupAfterParseError(RDKit::RWMol *mol)
Definition: SLNParseOps.h:304
RWMol is a molecule class that is intended to be edited.
Definition: RWMol.h:31
void AddFragToMol(RDKit::RWMol *mol, RDKit::RWMol *frag, RDKit::Bond::BondType bondOrder=RDKit::Bond::UNSPECIFIED, RDKit::Bond::BondDir bondDir=RDKit::Bond::NONE, bool closeRings=false, bool doingQuery=false)
void ClearAtomChemicalProps(RDKit::Atom *atom)
removes formal charge, isotope, etc. Primarily useful for QueryAtoms
BondType
the type of Bond
Definition: Bond.h:56
RDKit::Bond::BondType GetUnspecifiedBondType(const RDKit::RWMol *mol, const RDKit::Atom *atom1, const RDKit::Atom *atom2)
void CloseMolRings(RDKit::RWMol *mol, bool toleratePartials)
Std stuff.
Definition: Atom.h:30
void ReportParseError(const char *message, bool throwIt=true)
void CheckRingClosureBranchStatus(RDKit::Atom *atom, RDKit::RWMol *mp)
BondDir
the bond&#39;s direction (for chirality)
Definition: Bond.h:83
no special style
Definition: Bond.h:84
void AdjustAtomChiralityFlags(RDKit::RWMol *mol)
The class for representing atoms.
Definition: Atom.h:69