forked from wcatykid/Graph-Based-Molecular-Synthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rigid.cpp
132 lines (107 loc) · 3.18 KB
/
Rigid.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
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
/*
* 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 <cstring>
#include <string>
#include <vector>
#include <map>
#include <sstream>
#include <cctype>
#include "Rigid.h"
#include "Utilities.h"
#include "RigidConnectableAtom.h"
Rigid::Rigid(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);
}
void Rigid::parseAppendix(std::string& suffix, int numAtoms)
{
// 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);
}
//
// Read the Atom Types into a temporary
//
std::string atomType;
std::vector<std::string> atomTypes;
for(int x = 0; x < numAtoms; x++)
{
suffStream >> atomType;
std::cerr << atomType << std::endl;
atomTypes.push_back(atomType);
}
// Get the next line.
getline(suffStream, line);
//
// Read until we get "> <"
//
while(line.find("> <") == std::string::npos)
{
getline(suffStream, line);
}
//
// Read Branches
//
// Parallels the atom arrays
std::vector<std::string>* conns = new std::vector<std::string>[atomTypes.size()];
int atomId = -1;
while (!isspace(suffStream.peek()))
{
suffStream >> atomId;
while (suffStream.peek() != '\n' && suffStream.peek() != '\r')
{
suffStream >> atomType;
conns[atomId - 1].push_back(atomType);
eatWhiteToNewLineOrChar(suffStream);
}
// Get the newline
suffStream.get();
}
//
// Read through the $$$$
//
while(line.find("$$$$") == std::string::npos)
{
getline(suffStream, line);
}
//
// Actually create the atoms for this molecule.
//
for (int a = 0; a < numAtoms; a++)
{
if (conns[a].empty()) this->atoms.push_back(new Atom(atomTypes[a]));
else
{
this->atoms.push_back(new RigidConnectableAtom(atomTypes[a], this, conns[a]));
conns[a].clear();
}
}
delete[] conns;
}