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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
// $Id: rdmolfiles.cpp 2004 2012-03-26 03:12:37Z glandrum $
//
// Copyright (C) 2003-2010 Greg Landrum and Rational Discovery LLC
//
// @@ 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 "rdmolops.h"
#include <boost/python.hpp>
#include <RDGeneral/types.h>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/SmilesParse/SmilesWrite.h>
#include <GraphMol/SmilesParse/SmartsWrite.h>
#include <GraphMol/FileParsers/FileParsers.h>
#include <RDGeneral/BadFileException.h>
#include <RDGeneral/FileParseException.h>
#include <RDBoost/Wrap.h>
#include <RDBoost/Exceptions.h>
#include <RDGeneral/BadFileException.h>
#include <GraphMol/SanitException.h>
namespace python = boost::python;
using namespace RDKit;
void rdSanitExceptionTranslator(RDKit::MolSanitizeException const& x){
std::ostringstream ss;
ss << "Sanitization error: " << x.message();
PyErr_SetString(PyExc_ValueError,ss.str().c_str());
}
void rdBadFileExceptionTranslator(RDKit::BadFileException const& x){
std::ostringstream ss;
ss << "File error: " << x.message();
PyErr_SetString(PyExc_IOError,ss.str().c_str());
}
namespace RDKit{
ROMol *MolFromSmiles(std::string smiles,bool sanitize,
python::dict replDict){
std::map<std::string,std::string> replacements;
for(unsigned int i=0;i<python::extract<unsigned int>(replDict.keys().attr("__len__")());++i){
replacements[python::extract<std::string>(replDict.keys()[i])]=python::extract<std::string>(replDict.values()[i]);
}
RWMol *newM;
try {
newM = SmilesToMol(smiles,0,sanitize,&replacements);
} catch (...) {
newM=0;
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromSmarts(const char *smarts,bool mergeHs,
python::dict replDict){
std::map<std::string,std::string> replacements;
for(unsigned int i=0;i<python::extract<unsigned int>(replDict.keys().attr("__len__")());++i){
replacements[python::extract<std::string>(replDict.keys()[i])]=python::extract<std::string>(replDict.values()[i]);
}
RWMol *newM;
try {
newM = SmartsToMol(smarts,0,mergeHs,&replacements);
} catch (...) {
newM=0;
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromTPLFile(const char *filename, bool sanitize=true,
bool skipFirstConf=false ) {
RWMol *newM;
try {
newM = TPLFileToMol(filename,sanitize,skipFirstConf);
} catch (RDKit::BadFileException &e) {
PyErr_SetString(PyExc_IOError,e.message());
throw python::error_already_set();
} catch (...) {
newM=0;
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromTPLBlock(std::string tplBlock, bool sanitize=true,
bool skipFirstConf=false ) {
std::istringstream inStream(tplBlock);
unsigned int line = 0;
RWMol *newM;
try {
newM = TPLDataStreamToMol(&inStream,line,sanitize,skipFirstConf);
} catch (...) {
newM=0;
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromMolFile(const char *molFilename, bool sanitize, bool removeHs,bool strictParsing) {
RWMol *newM=0;
try {
newM = MolFileToMol(molFilename, sanitize,removeHs,strictParsing);
} catch (RDKit::BadFileException &e) {
PyErr_SetString(PyExc_IOError,e.message());
throw python::error_already_set();
} catch (RDKit::FileParseException &e) {
BOOST_LOG(rdWarningLog) << e.message() <<std::endl;
} catch (...) {
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromMolBlock(std::string molBlock, bool sanitize, bool removeHs, bool strictParsing) {
std::istringstream inStream(molBlock);
unsigned int line = 0;
RWMol *newM=0;
try {
newM = MolDataStreamToMol(inStream, line, sanitize, removeHs, strictParsing);
} catch (RDKit::FileParseException &e) {
BOOST_LOG(rdWarningLog) << e.message() <<std::endl;
} catch (...) {
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromMol2File(const char *molFilename, bool sanitize=true, bool removeHs=true) {
RWMol *newM;
try {
newM = Mol2FileToMol(molFilename, sanitize,removeHs);
} catch (RDKit::BadFileException &e) {
PyErr_SetString(PyExc_IOError,e.message());
throw python::error_already_set();
} catch (...) {
newM=0;
}
return static_cast<ROMol *>(newM);
}
ROMol *MolFromMol2Block(std::string mol2Block, bool sanitize=true, bool removeHs=true){
std::istringstream inStream(mol2Block);
RWMol *newM;
try {
newM = Mol2DataStreamToMol(inStream, sanitize, removeHs);
} catch (...) {
newM=0;
}
return static_cast<ROMol *>(newM);
}
}
// MolSupplier stuff
#ifdef SUPPORT_COMPRESSED_SUPPLIERS
void wrap_compressedsdsupplier();
#endif
void wrap_sdsupplier();
void wrap_forwardsdsupplier();
void wrap_tdtsupplier();
void wrap_smisupplier();
// mol writer stuff
void wrap_smiwriter();
void wrap_sdwriter();
void wrap_tdtwriter();
BOOST_PYTHON_MODULE(rdmolfiles)
{
std::string docString;
python::scope().attr("__doc__") =
"Module containing RDKit functionality for working with molecular file formats."
;
python::register_exception_translator<IndexErrorException>(&translate_index_error);
python::register_exception_translator<ValueErrorException>(&translate_value_error);
python::register_exception_translator<RDKit::MolSanitizeException>(&rdSanitExceptionTranslator);
python::register_exception_translator<RDKit::BadFileException>(&rdBadFileExceptionTranslator);
docString="Construct a molecule from a TPL file.\n\n\
ARGUMENTS:\n\
\n\
- fileName: name of the file to read\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to True.\n\
\n\
- skipFirstConf: (optional) skips reading the first conformer.\n\
Defaults to False.\n\
This should be set to True when reading TPLs written by \n\
the CombiCode.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromTPLFile", RDKit::MolFromTPLFile,
(python::arg("fileName"),
python::arg("sanitize")=true,
python::arg("skipFirstConf")=false),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Construct a molecule from a TPL block.\n\n\
ARGUMENTS:\n\
\n\
- fileName: name of the file to read\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to True.\n\
\n\
- skipFirstConf: (optional) skips reading the first conformer.\n\
Defaults to False.\n\
This should be set to True when reading TPLs written by \n\
the CombiCode.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromTPLBlock", RDKit::MolFromTPLBlock,
(python::arg("tplBlock"),
python::arg("sanitize")=true,
python::arg("skipFirstConf")=false),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Construct a molecule from a Mol file.\n\n\
ARGUMENTS:\n\
\n\
- fileName: name of the file to read\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to true.\n\
\n\
- removeHs: (optional) toggles removing hydrogens from the molecule.\n\
This only make sense when sanitization is done.\n\
Defaults to true.\n\
\n\
- strictParsing: (optional) if this is false, the parser is more lax about.\n\
correctness of the content.\n\
Defaults to true.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromMolFile", RDKit::MolFromMolFile,
(python::arg("molFileName"),
python::arg("sanitize")=true,
python::arg("removeHs")=true,
python::arg("strictParsing")=true),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Construct a molecule from a Mol block.\n\n\
ARGUMENTS:\n\
\n\
- molBlock: string containing the Mol block\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to 1.\n\
\n\
- removeHs: (optional) toggles removing hydrogens from the molecule.\n\
This only make sense when sanitization is done.\n\
Defaults to true.\n\
\n\
- strictParsing: (optional) if this is false, the parser is more lax about.\n\
correctness of the content.\n\
Defaults to true.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromMolBlock", RDKit::MolFromMolBlock,
(python::arg("molBlock"),
python::arg("sanitize")=true,
python::arg("removeHs")=true,
python::arg("strictParsing")=true),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Construct a molecule from a Tripos Mol2 file.\n\n\
NOTE:\n \
The parser expects the atom-typing scheme used by Corina.\n\
Atom types from Tripos' dbtranslate are less supported.\n\
Other atom typing schemes are unlikely to work.\n\
\n\
ARGUMENTS:\n \
\n\
- fileName: name of the file to read\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to true.\n\
\n\
- removeHs: (optional) toggles removing hydrogens from the molecule.\n\
This only make sense when sanitization is done.\n\
Defaults to true.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromMol2File", RDKit::MolFromMol2File,
(python::arg("molFileName"),
python::arg("sanitize")=true,
python::arg("removeHs")=true),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Construct a molecule from a Tripos Mol2 block.\n\n\
NOTE:\n \
The parser expects the atom-typing scheme used by Corina.\n\
Atom types from Tripos' dbtranslate are less supported.\n\
Other atom typing schemes are unlikely to work.\n\
\n\
ARGUMENTS:\n\
\n\
- mol2Block: string containing the Mol2 block\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to 1.\n\
\n\
- removeHs: (optional) toggles removing hydrogens from the molecule.\n\
This only make sense when sanitization is done.\n\
Defaults to true.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromMol2Block", RDKit::MolFromMol2Block,
(python::arg("molBlock"),
python::arg("sanitize")=true,
python::arg("removeHs")=true),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Returns the a Mol block for a molecule\n\
ARGUMENTS:\n\
\n\
- mol: the molecule\n\
- includeStereo: (optional) toggles inclusion of stereochemical\n\
information in the output\n\
- confId: (optional) selects which conformation to output (-1 = default)\n\
- kekulize: (optional) triggers kekulization of the molecule before it's written,\n\
as suggested by the MDL spec.\n\
\n\
RETURNS:\n\
\n\
a string\n\
\n";
python::def("MolToMolBlock",RDKit::MolToMolBlock,
(python::arg("mol"),python::arg("includeStereo")=false,
python::arg("confId")=-1,python::arg("kekulize")=true),
docString.c_str());
docString="Construct a molecule from a SMILES string.\n\n\
ARGUMENTS:\n\
\n\
- SMILES: the smiles string\n\
\n\
- sanitize: (optional) toggles sanitization of the molecule.\n\
Defaults to 1.\n\
\n\
- replacements: (optional) a dictionary of replacement strings (see below)\n\
Defaults to {}.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n\
The optional replacements dict can be used to do string substitution of abbreviations \n\
in the input SMILES. The set of substitutions is repeatedly looped through until \n\
the string no longer changes. It is the responsiblity of the caller to make sure \n\
that substitutions results in legal and sensible SMILES. \n\
\n\
Examples of replacements: \n\
\n\
CC{Q}C with {'{Q}':'OCCO'} -> CCOCCOC \n\
C{A}C{Q}C with {'{Q}':'OCCO', '{A}':'C1(CC1)'} -> CC1(CC1)COCCOC \n\
C{A}C{Q}C with {'{Q}':'{X}CC{X}', '{A}':'C1CC1', '{X}':'N'} -> CC1CC1CCNCCNC \n\
\n";
python::def("MolFromSmiles",RDKit::MolFromSmiles,
(python::arg("SMILES"),
python::arg("sanitize")=true,
python::arg("replacements")=python::dict()),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Construct a molecule from a SMARTS string.\n\n\
ARGUMENTS:\n\
\n\
- SMARTS: the smarts string\n\
\n\
- mergeHs: (optional) toggles the merging of explicit Hs in the query into the attached\n\
atoms. So, for example, 'C[H]' becomes '[C;!H0]'.\n\
Defaults to 0.\n\
\n\
- replacements: (optional) a dictionary of replacement strings (see below)\n\
Defaults to {}. See the documentation for MolFromSmiles for an explanation.\n\
\n\
RETURNS:\n\
\n\
a Mol object, None on failure.\n\
\n";
python::def("MolFromSmarts",RDKit::MolFromSmarts,
(python::arg("SMARTS"),
python::arg("mergeHs")=false,
python::arg("replacements")=python::dict()),
docString.c_str(),
python::return_value_policy<python::manage_new_object>());
docString="Returns the canonical SMILES string for a molecule\n\
ARGUMENTS:\n\
\n\
- mol: the molecule\n\
- isomericSmiles: (optional) include information about stereochemistry in\n\
the SMILES. Defaults to false.\n\
- kekuleSmiles: (optional) use the Kekule form (no aromatic bonds) in\n\
the SMILES. Defaults to false.\n\
- rootedAtAtom: (optional) if non-negative, this forces the SMILES \n\
to start at a particular atom. Defaults to -1.\n\
- canonical: (optional) if false no attempt will be made to canonicalize\n\
the molecule. Defaults to true.\n\
- allBondsExplicit: (optional) if true, all bond orders will be explicitly indicated\n\
in the output SMILES. Defaults to false.\n\
\n\
RETURNS:\n\
\n\
a string\n\
\n";
python::def("MolToSmiles",RDKit::MolToSmiles,
(python::arg("mol"),
python::arg("isomericSmiles")=false,
python::arg("kekuleSmiles")=false,
python::arg("rootedAtAtom")=-1,
python::arg("canonical")=true,
python::arg("allBondsExplicit")=false),
docString.c_str());
docString="Returns a SMARTS string for a molecule\n\
ARGUMENTS:\n\
\n\
- mol: the molecule\n\
- isomericSmarts: (optional) include information about stereochemistry in\n\
the SMARTS. Defaults to false.\n\
\n\
RETURNS:\n\
\n\
a string\n\
\n";
python::def("MolToSmarts",RDKit::MolToSmarts,
(python::arg("mol"),python::arg("isomericSmiles")=false),
docString.c_str());
docString="Writes a molecule to a TPL file.\n\n\
ARGUMENTS:\n\
\n\
- mol: the molecule\n\
- fileName: name of the file to write\n\
- partialChargeProp: name of the property to use for partial charges\n\
Defaults to '_GasteigerCharge'.\n\
- writeFirstConfTwice: Defaults to False.\n\
This should be set to True when writing TPLs to be read by \n\
the CombiCode.\n\
\n";
python::def("MolToTPLFile", RDKit::MolToTPLFile,
(python::arg("mol"),
python::arg("fileName"),
python::arg("partialChargeProp")="_GasteigerCharge",
python::arg("writeFirstConfTwice")=false),
docString.c_str());
docString="Returns the Tpl block for a molecule.\n\n\
ARGUMENTS:\n\
\n\
- mol: the molecule\n\
- partialChargeProp: name of the property to use for partial charges\n\
Defaults to '_GasteigerCharge'.\n\
- writeFirstConfTwice: Defaults to False.\n\
This should be set to True when writing TPLs to be read by \n\
the CombiCode.\n\
\n\
RETURNS:\n\
\n\
a string\n\
\n";
python::def("MolToTPLBlock", RDKit::MolToTPLText,
(python::arg("mol"),
python::arg("partialChargeProp")="_GasteigerCharge",
python::arg("writeFirstConfTwice")=false),
docString.c_str());
/********************************************************
* MolSupplier stuff
*******************************************************/
#ifdef SUPPORT_COMPRESSED_SUPPLIERS
wrap_compressedsdsupplier();
#endif
wrap_sdsupplier();
wrap_forwardsdsupplier();
wrap_tdtsupplier();
wrap_smisupplier();
/********************************************************
* MolWriter stuff
*******************************************************/
wrap_smiwriter();
wrap_sdwriter();
wrap_tdtwriter();
}
|