forked from wcatykid/Graph-Based-Molecular-Synthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Linker.cpp
80 lines (64 loc) · 2.16 KB
/
Linker.cpp
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
/*
* This file is part of esynth.
*
* esynth is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* esynth is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with esynth. If not, see <http://www.gnu.org/licenses/>.
*/
#include <vector>
#include <iostream>
#include <string>
#include <map>
#include <sstream>
#include <openbabel/mol.h>
#include <openbabel/bond.h>
#include "Linker.h"
#include "LinkerConnectableAtom.h"
Linker::Linker(OpenBabel::OBMol* obmol, const std::string& name) : Molecule(obmol, name)
{
//
// Acquire the comment data, make a copy, parse that comment.
//
OpenBabel::OBCommentData* comment = static_cast<OpenBabel::OBCommentData*>(obmol->GetData("Comment"));
std::string commentStr = comment->GetData();
parseAppendix(commentStr, obmol->NumAtoms());
// if (Options::OPENBABEL) OBWriter::ScrubAndConvertToSMIInternal(obmol, this->smi);
}
//
// Parse suffix to add max connection for each atom.
//
void Linker::parseAppendix(std::string& suffix, int numAtoms)
{
// std::cerr << "Linker::parseAppendix: " << suffix << "|" << std::endl;
// Use a string stream instead of manipulatiing the string
std::stringstream suffStream(suffix);
//
// Read until we get "> <"
//
std::string line = "";
while(line.find("> <") == std::string::npos)
{
getline(suffStream, line);
}
//
// Now, read the MAX Connections for each atom.
//
int maxConnections = -1;
std::string atomType;
for(int x = 0; x < numAtoms; x++)
{
suffStream >> maxConnections;
suffStream >> atomType;
// A linker can link to any atom.
this->atoms.push_back(new LinkerConnectableAtom(maxConnections, atomType, this));
}
}