File: testFeatTrees.cpp

package info (click to toggle)
rdkit 201809.1%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 123,688 kB
  • sloc: cpp: 230,509; python: 70,501; java: 6,329; ansic: 5,427; sql: 1,899; yacc: 1,739; lex: 1,243; makefile: 445; xml: 229; fortran: 183; sh: 123; cs: 93
file content (208 lines) | stat: -rw-r--r-- 7,503 bytes parent folder | download | duplicates (5)
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
// $Id$
//
//  Copyright (C) 2005-2006 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 <RDGeneral/test.h>
#include <RDGeneral/RDLog.h>
#include <boost/log/functions.hpp>
#include <GraphMol/RDKitBase.h>
#include <string>
#include <iostream>
#include <GraphMol/FeatTrees/FeatTree.h>
#include <GraphMol/FeatTrees/FeatTreeUtils.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <boost/graph/graph_utility.hpp>

using namespace RDKit;

using namespace FeatTrees;
void showFeatTree(FeatTreeGraph &featGraph) {
  typedef boost::property_map<FeatTreeGraph, FeatTreeNode_t>::type
      FeatTreeNodePMap;
  FeatTreeNodePMap nodes = boost::get(FeatTreeNode_t(), featGraph);
  boost::graph_traits<FeatTreeGraph>::vertex_iterator vtx, endVtx;
  unsigned int i;
  for (boost::tie(vtx, endVtx) = boost::vertices(featGraph), i = 0;
       vtx != endVtx; ++vtx, ++i) {
    UINT_SET s = nodes[*vtx];
    std::cout << "\t" << i << ": [";
    std::copy(s.begin(), s.end(), std::ostream_iterator<int>(std::cout, ","));
    std::cout << "]" << std::endl;
  }
}

void test1() {
  BOOST_LOG(rdInfoLog) << "\t---------------------------------\n";
  BOOST_LOG(rdInfoLog) << "\t test1: building FeatTreeGraphs \n\n";

  std::string smi;
  ROMol *m;
  FeatTreeGraphSPtr fGraph;
  std::vector<unsigned int> atomIndices;

  smi = "CCC";
  std::cout << smi << std::endl;
  m = SmilesToMol(smi);
  TEST_ASSERT(m);
  fGraph.reset(new FeatTreeGraph());
  addRingsAndConnectors(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 0);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  replaceCycles(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 0);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  addRingRingBonds(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 0);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  atomIndices = addNonringAtoms(*m, *fGraph);
  TEST_ASSERT(atomIndices.size() == 3);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  addBondsFromNonringAtoms(*m, *fGraph, atomIndices);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  addZeroNodes(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  fGraph = molToBaseTree(*m);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);

  smi = "C1CC1OOC1CCC1";
  std::cout << smi << std::endl;
  m = SmilesToMol(smi);
  TEST_ASSERT(m);
  fGraph.reset(new FeatTreeGraph());
  addRingsAndConnectors(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  replaceCycles(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  addRingRingBonds(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  atomIndices = addNonringAtoms(*m, *fGraph);
  TEST_ASSERT(atomIndices.size() == 9);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 4);
  TEST_ASSERT(boost::num_edges(*fGraph) == 0);
  addBondsFromNonringAtoms(*m, *fGraph, atomIndices);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 4);
  TEST_ASSERT(boost::num_edges(*fGraph) == 3);
  addZeroNodes(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 4);
  TEST_ASSERT(boost::num_edges(*fGraph) == 3);
  fGraph = molToBaseTree(*m);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 4);
  TEST_ASSERT(boost::num_edges(*fGraph) == 3);

  delete m;
  smi = "C1CC2C1CCC2C(=O)";
  std::cout << smi << std::endl;
  m = SmilesToMol(smi);
  TEST_ASSERT(m);
  fGraph.reset(new FeatTreeGraph());
  addRingsAndConnectors(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  replaceCycles(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  addRingRingBonds(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  atomIndices = addNonringAtoms(*m, *fGraph);
  TEST_ASSERT(atomIndices.size() == 9);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  addBondsFromNonringAtoms(*m, *fGraph, atomIndices);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  addZeroNodes(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  fGraph = molToBaseTree(*m);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);

  delete m;
  smi = "CC12CCCCC1CCCC2";
  std::cout << smi << std::endl;
  m = SmilesToMol(smi);
  TEST_ASSERT(m);
  fGraph.reset(new FeatTreeGraph());
  addRingsAndConnectors(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  replaceCycles(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  addRingRingBonds(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 2);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  atomIndices = addNonringAtoms(*m, *fGraph);
  TEST_ASSERT(atomIndices.size() == 11);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  addBondsFromNonringAtoms(*m, *fGraph, atomIndices);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 3);
  addZeroNodes(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 4);
  TEST_ASSERT(boost::num_edges(*fGraph) == 3);
  fGraph = molToBaseTree(*m);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 4);
  TEST_ASSERT(boost::num_edges(*fGraph) == 3);

  delete m;
  smi = "C1CC2CCCCC2CC1C1CC(CC2)CCC21";
  std::cout << smi << std::endl;
  m = SmilesToMol(smi);
  TEST_ASSERT(m);
  fGraph.reset(new FeatTreeGraph());
  addRingsAndConnectors(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 5);
  TEST_ASSERT(boost::num_edges(*fGraph) == 4);
  replaceCycles(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 1);
  addRingRingBonds(*m, *fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  atomIndices = addNonringAtoms(*m, *fGraph);
  TEST_ASSERT(atomIndices.size() == 18);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  addBondsFromNonringAtoms(*m, *fGraph, atomIndices);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  addZeroNodes(*fGraph);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);
  fGraph = molToBaseTree(*m);
  TEST_ASSERT(boost::num_vertices(*fGraph) == 3);
  TEST_ASSERT(boost::num_edges(*fGraph) == 2);

  BOOST_LOG(rdInfoLog) << "\tDone\n";
}

int main() {
  RDLog::InitLogs();
  // boost::logging::disable_logs("rdApp.info");

  // BOOST_LOG(rdInfoLog) <<
  // "********************************************************\n";
  // BOOST_LOG(rdInfoLog) << "Testing FeatTrees\n";

  test1();

  // BOOST_LOG(rdInfoLog) <<
  // "*******************************************************\n";
  return (0);
}