File: example8.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 (19 lines) | stat: -rw-r--r-- 653 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
//
// Modifying molecules example8.cpp

#include <iostream>

#include <GraphMol/GraphMol.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/MolOps.h>

int main(int argc, char **argv) {
  std::shared_ptr<RDKit::ROMol> mol1(RDKit::SmilesToMol("CCO"));
  std::cout << "Number of atoms : " << mol1->getNumAtoms() << std::endl;
  std::shared_ptr<RDKit::ROMol> mol2(RDKit::MolOps::addHs(*mol1));
  std::cout << "Number of atoms : " << mol2->getNumAtoms() << std::endl;

  std::shared_ptr<RDKit::RWMol> mol3(new RDKit::RWMol(*mol2));
  RDKit::MolOps::removeHs(*mol3);
  std::cout << "Number of atoms : " << mol3->getNumAtoms() << std::endl;
}