RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
TransformCatalogUtils.h
Go to the documentation of this file.
1//
2// Copyright (C) 2018-2021 Susan H. Leung and other RDKit contributors
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_TRANSFORM_CATALOG_UTILS_H
12#define RD_TRANSFORM_CATALOG_UTILS_H
13
14#include <GraphMol/RDKitBase.h>
18
19namespace RDKit {
20class ROMol;
21
22namespace MolStandardize {
24
25RDKIT_MOLSTANDARDIZE_EXPORT std::vector<std::shared_ptr<ChemicalReaction>>
26readTransformations(std::string fileName);
27RDKIT_MOLSTANDARDIZE_EXPORT std::vector<std::shared_ptr<ChemicalReaction>>
28readTransformations(std::istream &inStream, int nToRead = -1);
29RDKIT_MOLSTANDARDIZE_EXPORT std::vector<std::shared_ptr<ChemicalReaction>>
31 const std::vector<std::pair<std::string, std::string>> &data);
32
33} // namespace MolStandardize
34} // namespace RDKit
35
36#endif
pulls in the core RDKit functionality
#define RDKIT_MOLSTANDARDIZE_EXPORT
Definition export.h:369
RDKIT_MOLSTANDARDIZE_EXPORT std::vector< std::shared_ptr< ChemicalReaction > > readTransformations(std::string fileName)
Std stuff.