File: TestLoadPdb.cpp

package info (click to toggle)
molmodel 3.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,384 kB
  • sloc: cpp: 39,830; perl: 526; ansic: 107; makefile: 41
file content (223 lines) | stat: -rw-r--r-- 6,925 bytes parent folder | download | duplicates (3)
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

#include "molmodel/internal/Compound.h"

#include "SimTKmolmodel.h"
#include "molmodel/internal/Pdb.h"
#include <iostream>
#include <fstream>
#include <string>
#include <ctime>

using namespace SimTK;
using namespace std;

void testExactMatch(const std::string& pdbFileName) 
{
    time_t startTime = time(NULL);
    
    // In order for Biotypes to work correctly, 
    // amber99 parameters must be loaded first?
    CompoundSystem system;
    SimbodyMatterSubsystem matter(system);
    DuMMForceFieldSubsystem forces(system);
    forces.loadAmber99Parameters();

    cout << "Loading Structure from File..." << endl;
    std::ifstream pdbInputStream(pdbFileName.c_str());
    assert(pdbInputStream.is_open());
    
    // Check speed of various pdb file matching operations
    PdbStructure inputPdbStructure(pdbInputStream, PdbStructure::InputType::PDB);
    pdbInputStream.close();
    
    time_t endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Creating internal coordinate model..." << endl;
    RNA rna(inputPdbStructure);
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Noting target atom locations..." << endl;
    Compound::AtomTargetLocations atomTargets = 
            rna.createAtomTargets(inputPdbStructure);
    cout << atomTargets.size() << " matches found" << endl;
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching chirality..." << endl;
    double myMaxObservedSinePlaneDeviation;
    rna.matchDefaultAtomChirality(atomTargets,myMaxObservedSinePlaneDeviation, 0.01);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching bond angles..." << endl;
    rna.matchDefaultBondAngles(atomTargets);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching bond lengths..." << endl;
    rna.matchDefaultBondLengths(atomTargets);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching dihedral angles..." << endl;
    rna.matchDefaultDihedralAngles(atomTargets, Compound::DistortPlanarBonds);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching top level transform..." << endl;
    rna.matchDefaultTopLevelTransform(atomTargets);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Creating simbody system..." << endl;
    system.adoptCompound(rna);
    rna.assignBiotypes();
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Creating multibody model..." << endl;
    system.modelCompounds();
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Writing PDB file" << endl;
    PdbStructure outputPdbStructure(rna);
    std::ofstream pdbOutputStream("test1.pdb");
    outputPdbStructure.write(pdbOutputStream);
    pdbOutputStream.close();
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Done." << endl;
}

void testIdealizedMatch(const std::string& pdbFileName) 
{
    time_t startTime = time(NULL);
    
    // In order for Biotypes to work correctly, 
    // amber99 parameters must be loaded first?
    CompoundSystem system;
    SimbodyMatterSubsystem matter(system);
    DuMMForceFieldSubsystem forces(system);
    forces.loadAmber99Parameters();

    cout << "Loading Structure from File..." << endl;
    std::ifstream pdbInputStream(pdbFileName.c_str());
    assert(pdbInputStream.is_open());
    
    // Check speed of various pdb file matching operations
    PdbStructure inputPdbStructure(pdbInputStream, PdbStructure::InputType::PDB);
    pdbInputStream.close();
    
    time_t endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Creating internal coordinate model..." << endl;
    RNA rna(inputPdbStructure);
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Noting target atom locations..." << endl;
    Compound::AtomTargetLocations atomTargets = 
            rna.createAtomTargets(inputPdbStructure);
    cout << atomTargets.size() << " matches found" << endl;
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching chirality..." << endl;
    double myMaxObservedSinePlaneDeviation;
    rna.matchDefaultAtomChirality(atomTargets,myMaxObservedSinePlaneDeviation, 90*Deg2Rad);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching dihedral angles..." << endl;
    rna.matchDefaultDihedralAngles(atomTargets, Compound::KeepPlanarBonds);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Matching top level transform..." << endl;
    rna.matchDefaultTopLevelTransform(atomTargets);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Final fitting..." << endl;
    rna.fitDefaultConfiguration(atomTargets, 0.005);

    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Creating simbody system..." << endl;
    system.adoptCompound(rna);
    rna.assignBiotypes();
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Creating multibody model..." << endl;
    system.modelCompounds();
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Writing PDB file" << endl;
    PdbStructure outputPdbStructure(rna);
    std::ofstream pdbOutputStream("test2.pdb");
    outputPdbStructure.write(pdbOutputStream);
    pdbOutputStream.close();
    
    endTime = time(NULL);
    cout << endTime - startTime << " s elapsed time" << endl;
    startTime = endTime;
    
    cout << "Done." << endl;
}

int main(int argc, char *argv[]) 
{
    // PDB file name is required as argument
    assert(argc > 1);
    
    const std::string pdbFileName(argv[1]);
    
    testExactMatch(pdbFileName);
    testIdealizedMatch(pdbFileName);
}