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
|
//
// Copyright (C) 2015 Greg Landrum
//
// @@ 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.
//
#define PY_ARRAY_UNIQUE_SYMBOL rdmmpa_array_API
#include <boost/python.hpp>
#include <GraphMol/ROMol.h>
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include <RDBoost/Wrap.h>
#include <GraphMol/MMPA/MMPA.h>
#include <boost/foreach.hpp>
namespace python = boost::python;
namespace {
python::tuple fragmentMolHelper(const RDKit::ROMol& mol, unsigned int maxCuts,
unsigned int maxCutBonds,
const std::string& pattern,
bool resultsAsMols) {
std::vector<std::pair<RDKit::ROMOL_SPTR, RDKit::ROMOL_SPTR> > tres;
bool ok = RDKit::MMPA::fragmentMol(mol, tres, maxCuts, maxCutBonds, pattern);
python::list pyres;
if (ok) {
for (std::vector<std::pair<RDKit::ROMOL_SPTR,
RDKit::ROMOL_SPTR> >::const_iterator pr =
tres.begin();
pr != tres.end(); ++pr) {
python::list lres;
if (resultsAsMols) {
lres.append(pr->first);
lres.append(pr->second);
} else {
if (pr->first) {
lres.append(RDKit::MolToSmiles(*(pr->first), true));
} else {
lres.append("");
}
lres.append(RDKit::MolToSmiles(*(pr->second), true));
}
pyres.append(python::tuple(lres));
}
}
return python::tuple(pyres);
}
}
BOOST_PYTHON_MODULE(rdMMPA) {
python::scope().attr("__doc__") =
"Module containing a C++ implementation of code for doing MMPA";
std::string docString =
"Does the fragmentation necessary for an MMPA analysis";
python::def("FragmentMol", fragmentMolHelper,
(python::arg("mol"), python::arg("maxCuts") = 3,
python::arg("maxCutBonds") = 20,
python::arg("pattern") = "[#6+0;!$(*=,#[!#6])]!@!=!#[*]",
python::arg("resultsAsMols") = true),
docString.c_str());
}
|