1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
//
// Copyright (C) 2018 Susan H. Leung
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include <RDGeneral/export.h>
#ifndef __RD_FRAGMENT_REMOVER_H__
#define __RD_FRAGMENT_REMOVER_H__
#include <Catalogs/Catalog.h>
#include <GraphMol/MolStandardize/FragmentCatalog/FragmentCatalogEntry.h>
#include <GraphMol/MolStandardize/FragmentCatalog/FragmentCatalogParams.h>
#include <GraphMol/MolStandardize/MolStandardize.h>
namespace RDKit {
class ROMol;
namespace MolStandardize {
RDKIT_MOLSTANDARDIZE_EXPORT extern const CleanupParameters
defaultCleanupParameters;
typedef RDCatalog::HierarchCatalog<FragmentCatalogEntry, FragmentCatalogParams,
int>
FragmentCatalog;
class RDKIT_MOLSTANDARDIZE_EXPORT FragmentRemover {
public:
FragmentRemover();
FragmentRemover(const std::string fragmentFile, const bool leave_last);
// FragmentRemover(bool leave_last) : LEAVE_LAST(leave_last){};
//! making FragmentRemover objects non-copyable
FragmentRemover(const FragmentRemover &other) = delete;
FragmentRemover &operator=(FragmentRemover const &) = delete;
~FragmentRemover();
ROMol *remove(const ROMol &mol);
private:
// Setting leave_last to True will ensure at least one fragment
// is left in the molecule, even if it is matched by a
// FragmentPattern
bool LEAVE_LAST;
FragmentCatalog *d_fcat;
}; // class FragmentRemover
class RDKIT_MOLSTANDARDIZE_EXPORT LargestFragmentChooser {
public:
// LargestFragmentChooser(){};
LargestFragmentChooser(bool prefer_organic = false)
: PREFER_ORGANIC(prefer_organic){};
LargestFragmentChooser(const LargestFragmentChooser &other);
~LargestFragmentChooser(){};
ROMol *choose(const ROMol &mol);
struct Largest {
Largest();
Largest(std::string &smiles, const boost::shared_ptr<ROMol> &fragment,
unsigned int &numatoms, double &weight, bool &organic);
std::string Smiles;
boost::shared_ptr<ROMol> Fragment;
unsigned int NumAtoms;
double Weight;
bool Organic;
};
private:
bool PREFER_ORGANIC;
}; // class LargestFragmentChooser
} // namespace MolStandardize
} // namespace RDKit
#endif
|