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 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
|
//
// Copyright (C) 2022-2023 Tad Hurst, Greg Landrum and other RDKit contributors
//
// @@ 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.
//
// This software is based on the Chemaxon documentation for the MRV format:P
// https://docs.chemaxon.com/display/docs/marvin-documents-mrv.md
// and this implmentation is tested against the parsing and generation in the
// Marvin JS sketcher: https://marvinjs-demo.chemaxon.com/latest/demo.html
#ifndef RD_MARVINDEFS_H
#define RD_MARVINDEFS_H
#include <GraphMol/RDKitBase.h>
#include <RDGeneral/BoostStartInclude.h>
#include <boost/property_tree/xml_parser.hpp>
#include <RDGeneral/BoostEndInclude.h>
#include <float.h> // Needed for DBL_MAX on Clang
using boost::property_tree::ptree;
namespace RDKit {
const std::vector<std::string> sruSgroupConnectChoices{"hh", "ht", "eu"};
const std::vector<std::string> marvinBondOrders{"1", "2", "3", "A"};
const std::vector<std::string> marvinQueryBondsTypes{"SD", "SA", "DA", "Any"};
const std::vector<std::string> marvinConventionTypes{"cxn:coord"};
const std::vector<std::string> marvinStereoDictRefTypes{"cml:W", "cml:H"};
const std::vector<std::string> marvinStereoConventionTypes{"1", "3", "4", "6"};
const std::vector<std::string> marvinRadicalVals{
"monovalent", "divalent", "divalent1", "divalent3",
"trivalent", "trivalent2", "trivalent4", "4"};
const std::map<std::string, int> marvinRadicalToRadicalElectrons{
{"monovalent", 1}, {"divalent", 2}, {"divalent1", 2}, {"divalent3", 2},
{"trivalent", 3}, {"trivalent2", 3}, {"trivalent4", 3}, {"4", 4}};
const std::map<int, std::string> radicalElectronsToMarvinRadical{
{1, "monovalent"}, {2, "divalent"}, {3, "trivalent4"}, {4, "4"}};
enum IsSgroupInAtomSetResult {
SgroupInAtomSet,
SgroupNotInAtomSet,
SgroupBothInAndNotInAtomSet,
};
class MarvinWriterException : public std::runtime_error {
public:
explicit MarvinWriterException(std::string message)
: std::runtime_error(message) {};
};
class MarvinArrow {
public:
std::string type;
double x1;
double y1;
double x2;
double y2;
std::string toString() const;
ptree toPtree() const;
};
class MarvinPlus {
public:
std::string id;
double x1;
double y1;
double x2;
double y2;
std::string toString() const;
ptree toPtree() const;
};
class MarvinCondition {
public:
std::string id;
std::string text;
double x;
double y;
double fontScale = 0.0;
std::string halign;
std::string valign;
std::string toString() const;
ptree toPtree() const;
};
class MarvinAttachmentPoint {
public:
// <attachmentPoint atom="a7" order="1" bond="b6"/>
std::string atom;
std::string bond;
std::string order;
std::string toString() const;
ptree toPtree() const;
};
class MarvinAtom {
public:
std::string id;
std::string elementType;
double x2;
double y2;
double x3;
double y3;
double z3;
int formalCharge;
std::string radical;
int isotope;
int mrvValence;
int hydrogenCount;
std::string mrvAlias;
std::string mrvStereoGroup;
int mrvMap;
std::string sgroupRef;
bool sGroupRefIsSuperatom; // if set, we will not change the sgroupRef - the
// superatom really needs it
std::string sgroupAttachmentPoint;
int rgroupRef;
MarvinAtom();
MarvinAtom(const MarvinAtom &atomToCopy, std::string newId);
bool operator==(const MarvinAtom &rhs) const;
bool operator==(const MarvinAtom *rhs) const;
bool isElement() const;
std::string toString() const;
ptree toPtree(unsigned int coordinatePrecision = 6) const;
};
class MarvinBondStereo {
public:
std::string value;
std::string convention;
std::string conventionValue;
std::string dictRef;
std::string toString() const;
ptree toPtree() const;
};
class MarvinBond {
public:
std::string id;
std::string atomRefs2[2];
std::string order;
MarvinBondStereo bondStereo;
std::string queryType;
std::string convention;
MarvinBond() {}
MarvinBond(const MarvinBond &bondToCopy, std::string newId,
std::string atomRef1, std::string atomRef2);
bool isEqual(const MarvinAtom &other) const;
bool operator==(const MarvinAtom &rhs) const;
const std::string getBondType() const;
std::string toString() const;
ptree toPtree() const;
};
class MarvinRectangle {
protected:
RDGeom::Point3D center;
bool centerIsStale = true;
public:
RDGeom::Point3D upperLeft;
RDGeom::Point3D lowerRight;
MarvinRectangle(double left, double right, double top, double bottom);
MarvinRectangle(const RDGeom::Point3D &upperLeftInit,
const RDGeom::Point3D &lowerRightInit);
MarvinRectangle(const std::vector<MarvinAtom *> &atoms);
MarvinRectangle(const std::vector<MarvinRectangle> &rects);
void extend(const MarvinRectangle &otherRectangle);
RDGeom::Point3D &getCenter();
bool overlapsVertically(const MarvinRectangle &otherRectangle) const;
bool overlapsVHorizontally(const MarvinRectangle &otherRectangle) const;
static bool compareRectanglesByX(MarvinRectangle &r1, MarvinRectangle &r2);
static bool compareRectanglesByYReverse(MarvinRectangle &r1,
MarvinRectangle &r2);
};
template <typename T>
typename std::vector<std::unique_ptr<T>>::iterator findUniquePtr(
std::vector<std ::unique_ptr<T>> &vector, T *itemToFind) {
auto foundUniqIter = find_if(vector.begin(), vector.end(),
[itemToFind](std::unique_ptr<T> &uniquePtr) {
return uniquePtr.get() == itemToFind;
});
if (foundUniqIter == vector.end()) {
throw FileParseException("Unexpected error - item to find not found");
}
return foundUniqIter;
}
template <typename T>
void eraseUniquePtr(std::vector<std ::unique_ptr<T>> &vector, T *itemToErase) {
auto removeUniqIter = findUniquePtr<T>(vector, itemToErase);
if (removeUniqIter == vector.end()) {
throw FileParseException("Unexpected error - item to remove not found");
}
vector.erase(removeUniqIter);
}
class MarvinMolBase {
public:
std::string molID;
std::string id; // used in all sGroups
unsigned int coordinatePrecision = 6;
std::vector<MarvinAtom *> atoms; // owned by parent MarvinMol
std::vector<MarvinBond *> bonds; // owned by parent MarvinMol
std::vector<std::unique_ptr<MarvinMolBase>> sgroups;
MarvinMolBase *parent;
virtual std::string role() const = 0;
virtual bool hasAtomBondBlocks() const = 0;
virtual std::string toString() const = 0;
virtual ptree toPtree() const;
void addSgroupsToPtree(ptree &pt) const;
virtual MarvinMolBase *copyMol(const std::string &idAppend) const = 0;
virtual void pushOwnedAtom(MarvinAtom *atom);
virtual void pushOwnedBond(MarvinBond *bond);
virtual void removeOwnedAtom(MarvinAtom *atom);
virtual void removeOwnedBond(MarvinBond *bond);
void setPrecision(unsigned int precision);
int getExplicitValence(const MarvinAtom &marvinAtom) const;
MarvinMolBase() {}
virtual ~MarvinMolBase();
int getAtomIndex(std::string id) const;
int getBondIndex(std::string id) const;
const std::vector<std::string> getBondList() const;
const std::vector<std::string> getAtomList() const;
bool AnyOverLappingAtoms(const MarvinMolBase *otherMol) const;
void cleanUpNumbering(
int &molCount // this is the starting mol count, and receives the ending
// mol count - THis is used when
// MarvinMol->convertToSuperAtoms is called multiple times
// from a RXN
,
int &atomCount // starting and ending atom count
,
int &bondCount // starting and ending bond count
,
int &sgCount // starting and ending sq count
,
std::map<std::string, std::string>
&sgMap // map from old sg number to new sg number
,
std::map<std::string, std::string>
&atomMap // map from old atom number to new atom number
,
std::map<std::string, std::string>
&bondMap // map from old bond number to new bond number
);
// the following is virtual because some derived classes need to do more than
// just call the base class. Currently, only MarvinSuperatomSgroup does this
public:
virtual void cleanUpNumberingMolsAtomsBonds(
int &molCount, // this is the starting mol count, and receives the ending
// mol count - THis is used when
// MarvinMol->convertToSuperAtoms is called multiple
// times from a RXN
int &atomCount, // starting and ending atom count
int &bondCount, // starting and ending bond count
std::map<std::string, std::string> &sgMap,
std::map<std::string, std::string> &atomMap,
std::map<std::string, std::string> &bondMap);
void cleanUpSgNumbering(int &sgCount,
std::map<std::string, std::string> &sgMap);
// the following is virtual because some derived classes need to do more than
// just call the base class. Currently, only MarvinSuperatomSgroup does this
virtual IsSgroupInAtomSetResult isSgroupInSetOfAtoms(
const std::vector<MarvinAtom *> &setOfAtoms) const;
public:
static bool atomRefInAtoms(MarvinAtom *a, std::string b);
static bool bondRefInBonds(MarvinBond *a, std::string b);
static bool molIDInSgroups(std::string a, std::string b);
MarvinAtom *findAtomByRef(std::string atomId);
MarvinBond *findBondByRef(std::string atomId);
void prepSgroupsForRDKit();
void processSgroupsFromRDKit();
virtual bool isPassiveRoleForExpansion() const;
virtual bool isPassiveRoleForContraction() const;
virtual void processSpecialSgroups();
virtual void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId);
bool has2dCoords() const;
bool has3dCoords() const;
bool hasAny3dCoords() const;
bool hasAny2dCoords() const;
bool hasCoords() const;
void removeCoords();
void parseAtomsAndBonds(ptree &molTree);
};
class MarvinSruCoModSgroup : public MarvinMolBase {
private:
std::string roleName; // could be MarvinSruSgroup, MarvinCopolymerSgroup or
// MarvinModificationSgroup
public:
MarvinMolBase *copyMol(const std::string &idAppend) const override;
MarvinSruCoModSgroup(std::string type, MarvinMolBase *parent);
MarvinSruCoModSgroup(MarvinMolBase *parent, std::string role, ptree &molTree);
std::string title;
std::string connect;
std::string correspondence;
std::string toString() const override;
ptree toPtree() const override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinDataSgroup : public MarvinMolBase {
public:
MarvinDataSgroup(MarvinMolBase *parent);
MarvinDataSgroup(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
std::string context;
std::string fieldName;
std::string placement;
std::string unitsDisplayed;
std::string queryType;
std::string queryOp;
std::string fieldData;
std::string units;
double x;
double y;
std::string toString() const override;
ptree toPtree() const override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinSuperatomSgroupExpanded : public MarvinMolBase {
public:
std::string title;
MarvinSuperatomSgroupExpanded(MarvinMolBase *parent);
MarvinSuperatomSgroupExpanded(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
~MarvinSuperatomSgroupExpanded() override;
MarvinMolBase *convertToOneSuperAtom();
std::string toString() const override;
ptree toPtree() const override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
bool isPassiveRoleForContraction() const override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinMultipleSgroup : public MarvinMolBase {
public:
MarvinMultipleSgroup(MarvinMolBase *parent);
MarvinMultipleSgroup(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
std::string title;
bool isExpanded = false;
std::vector<MarvinAtom *> parentAtoms;
std::vector<MarvinBond *>
bondsToAtomsNotInExpandedGroup; // only when expanded
void expandOneMultipleSgroup();
void contractOneMultipleSgroup();
int getMatchedOrphanBondIndex(std::string atomIdToCheck,
std::vector<MarvinBond *> &bondsToTry,
std::vector<MarvinBond *> &orphanedBonds) const;
std::string toString() const override;
ptree toPtree() const override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
bool isPassiveRoleForExpansion() const override;
bool isPassiveRoleForContraction() const override;
void processSpecialSgroups() override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinMulticenterSgroup : public MarvinMolBase {
// <molecule molID="m2" id="sg1" role="MulticenterSgroup" atomRefs="a2 a6 a5
// a4 a3" center="a18"/>sgroup->
public:
MarvinMulticenterSgroup(MarvinMolBase *parent);
MarvinMulticenterSgroup(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
void processOneMulticenterSgroup();
std::string toString() const override;
ptree toPtree() const override;
MarvinAtom *center;
std::string role() const override;
bool hasAtomBondBlocks() const override;
void processSpecialSgroups() override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinGenericSgroup : public MarvinMolBase {
// <molecule molID="m2" id="sg1" role="GenericSgroup" atomRefs="a1 a2 a3 a4 a5
// a6 a7 a8 a9 a13 a10 a11 a12" charge="onAtoms"/></molecule>
public:
MarvinGenericSgroup(MarvinMolBase *parent);
MarvinGenericSgroup(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
std::string charge; // onAtoms or onBrackets
std::string toString() const override;
ptree toPtree() const override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinMonomerSgroup : public MarvinMolBase {
// <molecule id="sg1" role="MonomerSgroup" title="mon" charge="onAtoms"
// molID="m2" atomRefs="a2 a1 a3 a4">
// </molecule>
public:
MarvinMonomerSgroup(MarvinMolBase *parent);
MarvinMonomerSgroup(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
std::string title;
std::string charge; // onAtoms or onBrackets
std::string toString() const override;
ptree toPtree() const override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
void parseMoleculeSpecific(RDKit::RWMol *mol,
std::unique_ptr<SubstanceGroup> &sgroup,
int sequenceId) override;
};
class MarvinSuperatomSgroup : public MarvinMolBase {
public:
std::string title;
std::vector<std::unique_ptr<MarvinAttachmentPoint>> attachmentPoints;
MarvinSuperatomSgroup(MarvinMolBase *parent);
MarvinSuperatomSgroup(MarvinMolBase *parent, ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
~MarvinSuperatomSgroup() override;
void convertFromOneSuperAtom();
std::string role() const override;
bool hasAtomBondBlocks() const override;
bool isPassiveRoleForExpansion() const override;
std::string toString() const override;
ptree toPtree() const override;
void cleanUpNumberingMolsAtomsBonds(
int &molCount, // this is the starting mol count, and receives the ending
// mol count - THis is used when
// MarvinMol->convertToSuperAtoms is called multiple
// times from a RXN
int &atomCount, // starting and ending atom count
int &bondCount, // starting and ending bond count
std::map<std::string, std::string> &sgMap,
std::map<std::string, std::string> &atomMap,
std::map<std::string, std::string> &bondMap) override;
IsSgroupInAtomSetResult isSgroupInSetOfAtoms(
const std::vector<MarvinAtom *> &setOfAtoms) const override;
void processSpecialSgroups() override;
};
class MarvinMol : public MarvinMolBase {
public:
MarvinMol();
MarvinMol(ptree &molTree);
MarvinMolBase *copyMol(const std::string &idAppend) const override;
~MarvinMol() override;
std::vector<std::unique_ptr<MarvinAtom>> ownedAtoms;
std::vector<std::unique_ptr<MarvinBond>> ownedBonds;
void pushOwnedAtom(MarvinAtom *atom) override;
void pushOwnedBond(MarvinBond *bond) override;
void removeOwnedAtom(MarvinAtom *atom) override;
void removeOwnedBond(MarvinBond *bond) override;
std::string role() const override;
bool hasAtomBondBlocks() const override;
bool isPassiveRoleForContraction() const override;
std::string toString() const override;
ptree toPtree() const override;
std::string generateMolString();
ptree toMolPtree() const;
};
class MarvinReaction {
public:
std::vector<std::unique_ptr<MarvinMol>> reactants;
std::vector<std::unique_ptr<MarvinMol>> agents;
std::vector<std::unique_ptr<MarvinMol>> products;
MarvinArrow arrow;
std::vector<std::unique_ptr<MarvinPlus>> pluses;
std::vector<std::unique_ptr<MarvinCondition>> conditions;
~MarvinReaction();
void prepSgroupsForRDKit();
std::string toString();
ptree toPtree() const;
};
class MarvinStereoGroup {
public:
StereoGroupType groupType; // one of ABS AND OR
int groupNumber;
std::vector<unsigned int> atoms;
MarvinStereoGroup(StereoGroupType grouptypeInit, int groupNumberInit);
};
template <typename T>
bool getCleanNumber(std::string strToParse, T &outInt);
} // namespace RDKit
#endif // RD_MARVINDEFS_H
|