-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileReader.cpp
411 lines (357 loc) · 10.2 KB
/
FileReader.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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
#include "FileReader.h"
#include "xdrfile.h"
#include "xdrfile_xtc.h"
#include <QFile>
#include <QTextStream>
QVector<Atom*>& FileReader::GetAtomVectorRef()
{
return m_AtomVector;
}
void FileReader::setAtomVector(QVector<Atom*> atomVector)
{
m_AtomVector = atomVector;
}
QStringList FileReader::getGroList()
{
return m_GroList;
}
void FileReader::setGroList(QStringList& groList)
{
m_GroList = groList;
}
float FileReader::GetMaxPathCurvature()
{
return m_MaxPathCurvature;
}
float FileReader::GetMaxPathLength()
{
return m_MaxPathLength;
}
float FileReader::GetMaxVelocity()
{
return m_MaxVelocity;
}
float FileReader::GetMinPathCurvature()
{
return m_MinPathCurvature;
}
float FileReader::GetMinPathLength()
{
return m_MinPathLength;
}
float FileReader::GetMinVelocity()
{
return m_MinVelocity;
}
int FileReader::getNumOfResidues()
{
return m_NumOfResidues;
}
void FileReader::setNumOfResidues(int numOfResidues)
{
m_NumOfResidues = numOfResidues;
}
QVector<Residue *> &FileReader::GetResidueVectorRef()
{
return m_ResidueVector;
}
void FileReader::SetResidueVector(QVector<Residue *> residueVector)
{
m_ResidueVector = residueVector;
}
QVector3D &FileReader::GetSimBoxRef()
{
return m_SimBox;
}
void FileReader::setSimBox(float x, float y, float z)
{
m_SimBox.setX(x);
m_SimBox.setY(y);
m_SimBox.setZ(z);
}
FileReader::FileReader()
{
}
void FileReader::addResidue(Residue* residue, int index)
{
GetResidueVectorRef()[index] = residue;
}
void FileReader::CalculatePathCurvature()
{
if(!m_PathCurvature)
{
emit consoleOutput("Calculating Path Curvature",0);
QVector<float> pathCurve;
for (int i = 0; i < GetAtomVectorRef().length(); ++i)
{
GetAtomVectorRef()[i]->CalculatePathCurvature();
pathCurve = GetAtomVectorRef()[i]->GetPathCurvatureRef();
for (int j = 0; j < pathCurve.length(); ++j)
{
if (pathCurve[j] > m_MaxPathCurvature)
{
m_MaxPathCurvature = pathCurve[j];
}
else if (pathCurve[j] < m_MinPathCurvature)
{
m_MinPathCurvature = pathCurve[j];
}
}
}
m_PathCurvature = true;
emit consoleOutput("Path Curvature Calculated",0);
}
}
void FileReader::CalculatePathLength()
{
if(!m_PathLength)
{
emit consoleOutput("Calculating Path Length",0);
QVector<float> pathLength;
for (int i = 0; i < GetAtomVectorRef().length(); ++i)
{
GetAtomVectorRef()[i]->CalculatePathLength();
pathLength = GetAtomVectorRef()[i]->GetPathLengthRef();
if (pathLength.last() > m_MaxPathLength)
{
m_MaxPathLength = pathLength.last();
}
else if (pathLength.last() < m_MinPathLength)
{
m_MinPathLength = pathLength.last();
}
}
m_PathLength = true;
emit consoleOutput("Path Length Calculated",0);
}
}
void FileReader::CalculateVelocity()
{
if(!m_Velocity)
{
emit consoleOutput("Calculating velocity magnitude",0);
QVector<float> velocity;
for (int i = 0; i < GetAtomVectorRef().length(); ++i)
{
GetAtomVectorRef()[i]->CalculateVelocity();
velocity = GetAtomVectorRef()[i]->GetVelocityRef();
for (int j = 0; j < velocity.length(); ++j)
{
if (velocity[j] > m_MaxVelocity)
{
m_MaxVelocity = velocity[j];
}
else if (velocity[j] < m_MinVelocity)
{
m_MinVelocity = velocity[j];
}
}
}
m_Velocity = true;
emit consoleOutput("Velocity Calculated",0);
}
}
void FileReader::clearAtomVector()
{
emit consoleOutput("Clearing atom vector",0);
QVectorIterator<Atom*> atomIterator(GetAtomVectorRef());
while (atomIterator.hasNext())
{
delete atomIterator.next();
}
GetAtomVectorRef().clear();
GetAtomVectorRef().squeeze();
m_PathCurvature = false;
m_PathLength = false;
m_Velocity = false;
}
void FileReader::clearResidueVector()
{
emit consoleOutput("Clearing residue vector",0);
for (int i = 0; i < GetResidueVectorRef().length(); ++i)
{
delete GetResidueVectorRef()[i];
}
GetResidueVectorRef().clear();
GetResidueVectorRef().squeeze();
}
void FileReader::createAtomVector()
{
emit consoleOutput("Creating atom vector...",0);
QStringListIterator groIterator(getGroList());
setNumOfResidues(0);
while (groIterator.hasNext())
{
QString atomDetail = groIterator.next();
Atom* newAtomPtr = new Atom(atomDetail);
int residueNumber = newAtomPtr->GetParentResidueID();
if (residueNumber > getNumOfResidues())
{
setNumOfResidues(residueNumber);
}
GetAtomVectorRef().append(newAtomPtr);
}
}
void FileReader::createGroList(QString groFileData)
{
QStringList groList = groFileData.split(QString("\n"));
groList.removeFirst();
groList.removeFirst();
while (groList.last().isEmpty())
{
groList.removeLast();
}
groList.removeLast();
setGroList(groList);
}
void FileReader::createResidueVector()
{
GetResidueVectorRef().resize(getNumOfResidues());
GetResidueVectorRef().fill(0);
QVectorIterator<Atom*> atomIterator(GetAtomVectorRef());
while (atomIterator.hasNext())
{
Atom* atomPtr = atomIterator.next();
int residueID = atomPtr->GetParentResidueID();
if (GetResidueVectorRef()[residueID - 1] == 0)
{
Residue* residuePtr = new Residue();
residuePtr->SetResidueID(residueID);
QString residueName = atomPtr->GetParentResidue();
residuePtr->SetResidueName(residueName);
addResidue(residuePtr, residueID - 1);
}
GetResidueVectorRef()[residueID - 1]->AddAtom(atomPtr);
}
}
bool FileReader::fetchGroData(const QString& groFilePath)
{
QFile groFile(groFilePath);
QString groFileData;
if (groFile.open(QIODevice::ReadOnly))
{
groFileData = groFile.readAll();
groFile.close();
createGroList(groFileData);
createAtomVector();
return true;
}
else
{
emit consoleOutput("Could not open .gro file.",0);
return false;
}
}
bool FileReader::fetchXtcData(const QString& xtcFilePath)
{
emit consoleOutput("Fetching .xtc data...",0);
char* xtcCharPath = xtcFilePath.toLatin1().data();
int xtcResult;
int xtcNumOfAtoms;
xtcResult = read_xtc_natoms(xtcCharPath,& xtcNumOfAtoms);
if (xtcResult != exdrOK)
{
emit consoleOutput("Failed to open .xtc file.",0);
return false;
}
if (xtcNumOfAtoms != getGroList().length())
{
emit consoleOutput(".gro file and .xtc file "
"have different number of atoms!",0);
return false;
}
XDRFILE* xtcFile;
xtcFile = xdrfile_open(xtcCharPath, "r");
if (xtcFile == NULL)
{
xdrfile_close(xtcFile);
return false;
}
int xtcStep;
float xtcTime;
matrix boxMatrix;
int actualStep = 0;
int startTime;
int stepTime = 0;
while(1)
{
rvec* xtcPosition;
xtcPosition = (rvec* )calloc(xtcNumOfAtoms, sizeof(xtcPosition[0]));
xtcResult = read_xtc(xtcFile,xtcNumOfAtoms,&xtcStep,&xtcTime,
boxMatrix,xtcPosition,&XTC_PREC);
if (xtcResult == exdrOK)
{
if (actualStep == 0)
{
startTime = xtcTime;
}
stepTime = xtcTime - startTime;
int atomIndex = 0;
for (int i = 0; i < GetAtomVectorRef().length(); ++i)
{
float xPos = xtcPosition[atomIndex][X_POSITION];
float yPos = xtcPosition[atomIndex][Y_POSITION];
float zPos = xtcPosition[atomIndex][Z_POSITION];
if ((actualStep > 0)&&
((boxMatrix[X_POSITION][X_POSITION]/xPos > 0.9)||
(boxMatrix[X_POSITION][X_POSITION]/xPos < 0.1)))
{
float prevX = GetAtomVectorRef()[i]->GetTrajectoryRef()[actualStep -1].x();
if (abs(prevX - xPos) > boxMatrix[X_POSITION][X_POSITION] / 2)
{
xPos += (boxMatrix[X_POSITION][X_POSITION]*
(((prevX - xPos) > 0) - ((prevX - xPos) < 0)));
}
}
if ((actualStep > 0)&&
((boxMatrix[Y_POSITION][Y_POSITION]/yPos > 0.9)||
(boxMatrix[Y_POSITION][Y_POSITION]/yPos < 0.1)))
{
float prevY = GetAtomVectorRef()[i]->GetTrajectoryRef()[actualStep -1].y();
if (abs(prevY - yPos) > boxMatrix[Y_POSITION][Y_POSITION] / 2)
{
yPos += (boxMatrix[Y_POSITION][Y_POSITION]*
(((prevY - yPos) > 0) - ((prevY - yPos) < 0)));
}
}
GetAtomVectorRef()[i]->AddTimeStep(xPos, yPos, zPos, stepTime);
++atomIndex;
}
++actualStep;
}
else
{
setSimBox(boxMatrix[X_POSITION][X_POSITION],
boxMatrix[Y_POSITION][Y_POSITION],
boxMatrix[Z_POSITION][Z_POSITION]);
break;
}
}
xdrfile_close(xtcFile);
emit consoleOutput(".xtc data fetching complete!",0);
return true;
}
bool FileReader::LoadData(const QString& groFilePath,
const QString& xtcFilePath)
{
if (GetAtomVectorRef().length() > 0)
{
clearAtomVector();
clearResidueVector();
}
if (!fetchGroData(groFilePath))
{
return false;
}
if (!fetchXtcData(xtcFilePath))
{
return false;
}
// createResidueVector();
return true;
}
void FileReader::print(QString output)
{
QTextStream out(stdout);
out << output << endl;
}