File: example15.cpp

package info (click to toggle)
rdkit 202503.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 222,000 kB
  • sloc: cpp: 411,111; python: 78,482; ansic: 26,181; java: 8,285; javascript: 4,404; sql: 2,393; yacc: 1,626; lex: 1,267; cs: 1,090; makefile: 581; xml: 229; fortran: 183; sh: 121
file content (60 lines) | stat: -rw-r--r-- 2,230 bytes parent folder | download | duplicates (2)
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
//
// Substructure searching with stereochemistry - example15.cpp

#include <iostream>
#include <GraphMol/GraphMol.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/Substruct/SubstructMatch.h>

int main(int argc, char **argv) {
  std::shared_ptr<RDKit::ROMol> mol1(RDKit::SmilesToMol("CC[C@H](F)Cl"));
  std::shared_ptr<RDKit::RWMol> patt1(RDKit::SmartsToMol("C[C@H](F)Cl"));
  RDKit::MatchVectType res;
  if (RDKit::SubstructMatch(*mol1, *patt1, res)) {
    std::cout << "SMARTS 1 match" << std::endl;
  } else {
    std::cout << "Not SMARTS 1 match" << std::endl;
  }
  std::shared_ptr<RDKit::RWMol> patt2(RDKit::SmartsToMol("C[C@@H](F)Cl"));
  if (RDKit::SubstructMatch(*mol1, *patt2, res)) {
    std::cout << "SMARTS 2 match" << std::endl;
  } else {
    std::cout << "Not SMARTS 2 match" << std::endl;
  }
  std::shared_ptr<RDKit::RWMol> patt3(RDKit::SmartsToMol("CC(F)Cl"));
  if (RDKit::SubstructMatch(*mol1, *patt3, res)) {
    std::cout << "SMARTS 3 match" << std::endl;
  } else {
    std::cout << "Not SMARTS 3 match" << std::endl;
  }

  if (RDKit::SubstructMatch(*mol1, *patt1, res, true, true)) {
    std::cout << "SMARTS 1 chiral match" << std::endl;
  } else {
    std::cout << "Not SMARTS 1 chiral match" << std::endl;
  }
  if (RDKit::SubstructMatch(*mol1, *patt2, res, true, true)) {
    std::cout << "SMARTS 2 chiral match" << std::endl;
  } else {
    std::cout << "Not SMARTS 2 chiral match" << std::endl;
  }
  if (RDKit::SubstructMatch(*mol1, *patt3, res, true, true)) {
    std::cout << "SMARTS 3 chiral match" << std::endl;
  } else {
    std::cout << "Not SMARTS 3 chiral match" << std::endl;
  }

  std::shared_ptr<RDKit::RWMol> mol2(RDKit::SmilesToMol("CC(F)Cl"));
  if (RDKit::SubstructMatch(*mol1, *mol2, res, true, true)) {
    std::cout << "Chiral mol, non-chiral query : match" << std::endl;
  } else {
    std::cout << "Chiral mol, non-chiral query : NO match" << std::endl;
  }

  std::shared_ptr<RDKit::RWMol> patt5(RDKit::SmilesToMol("C[C@H](F)Cl"));
  if (RDKit::SubstructMatch(*mol2, *patt5, res, true, true)) {
    std::cout << "Non-chiral mol, chiral query : match" << std::endl;
  } else {
    std::cout << "Non-chiral mol, chiral query : NO match" << std::endl;
  }
}