[3ae731] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * PdbParser.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: Aug 17, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
|
---|
[3ae731] | 21 |
|
---|
[ad011c] | 22 | #include "CodePatterns/Assert.hpp"
|
---|
| 23 | #include "CodePatterns/Log.hpp"
|
---|
| 24 | #include "CodePatterns/toString.hpp"
|
---|
| 25 | #include "CodePatterns/Verbose.hpp"
|
---|
[9dba5f] | 26 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
| 27 | #include "World.hpp"
|
---|
[3ae731] | 28 | #include "atom.hpp"
|
---|
[129204] | 29 | #include "Bond/bond.hpp"
|
---|
[bb6193] | 30 | #include "element.hpp"
|
---|
| 31 | #include "molecule.hpp"
|
---|
[3ae731] | 32 | #include "periodentafel.hpp"
|
---|
| 33 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
[4fbca9c] | 34 | #include "Parser/PdbParser.hpp"
|
---|
[073a9e4] | 35 | #include "World.hpp"
|
---|
| 36 | #include "WorldTime.hpp"
|
---|
[bb6193] | 37 |
|
---|
[3ae731] | 38 | #include <map>
|
---|
| 39 | #include <vector>
|
---|
| 40 |
|
---|
[bb6193] | 41 | #include <iostream>
|
---|
| 42 | #include <iomanip>
|
---|
[3ae731] | 43 |
|
---|
| 44 | using namespace std;
|
---|
| 45 |
|
---|
[765f16] | 46 | // declare specialized static variables
|
---|
| 47 | const std::string FormatParserTrait<pdb>::name = "pdb";
|
---|
| 48 | const std::string FormatParserTrait<pdb>::suffix = "pdb";
|
---|
| 49 | const ParserTypes FormatParserTrait<pdb>::type = pdb;
|
---|
| 50 |
|
---|
[3ae731] | 51 | /**
|
---|
| 52 | * Constructor.
|
---|
| 53 | */
|
---|
[765f16] | 54 | FormatParser< pdb >::FormatParser() :
|
---|
| 55 | FormatParser_common(NULL)
|
---|
| 56 | {
|
---|
[4fbca9c] | 57 | knownTokens["ATOM"] = PdbKey::Atom;
|
---|
[16462f] | 58 | knownTokens["HETATM"] = PdbKey::Atom;
|
---|
[4fbca9c] | 59 | knownTokens["TER"] = PdbKey::Filler;
|
---|
[9dba5f] | 60 | knownTokens["END"] = PdbKey::EndOfTimestep;
|
---|
[4fbca9c] | 61 | knownTokens["CONECT"] = PdbKey::Connect;
|
---|
| 62 | knownTokens["REMARK"] = PdbKey::Remark;
|
---|
[9dba5f] | 63 | knownTokens[""] = PdbKey::EndOfTimestep;
|
---|
[16462f] | 64 |
|
---|
| 65 | // argh, why can't just PdbKey::X+(size_t)i
|
---|
| 66 | PositionEnumMap[0] = PdbKey::X;
|
---|
| 67 | PositionEnumMap[1] = PdbKey::Y;
|
---|
| 68 | PositionEnumMap[2] = PdbKey::Z;
|
---|
[3ae731] | 69 | }
|
---|
| 70 |
|
---|
| 71 | /**
|
---|
| 72 | * Destructor.
|
---|
| 73 | */
|
---|
[765f16] | 74 | FormatParser< pdb >::~FormatParser()
|
---|
| 75 | {
|
---|
[873037] | 76 | PdbAtomInfoContainer::clearknownDataKeys();
|
---|
[3ae731] | 77 | additionalAtomData.clear();
|
---|
| 78 | atomIdMap.clear();
|
---|
[4fbca9c] | 79 | }
|
---|
| 80 |
|
---|
| 81 |
|
---|
| 82 | /** Parses the initial word of the given \a line and returns the token type.
|
---|
| 83 | *
|
---|
| 84 | * @param line line to scan
|
---|
| 85 | * @return token type
|
---|
| 86 | */
|
---|
[765f16] | 87 | enum PdbKey::KnownTokens FormatParser< pdb >::getToken(string &line)
|
---|
[4fbca9c] | 88 | {
|
---|
| 89 | // look for first space
|
---|
| 90 | const size_t space_location = line.find(' ');
|
---|
| 91 | const size_t tab_location = line.find('\t');
|
---|
| 92 | size_t location = space_location < tab_location ? space_location : tab_location;
|
---|
| 93 | string token;
|
---|
| 94 | if (location != string::npos) {
|
---|
| 95 | //DoLog(1) && (Log() << Verbose(1) << "Found space at position " << space_location << std::endl);
|
---|
| 96 | token = line.substr(0,space_location);
|
---|
| 97 | } else {
|
---|
| 98 | token = line;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | //DoLog(1) && (Log() << Verbose(1) << "Token is " << token << std::endl);
|
---|
| 102 | if (knownTokens.count(token) == 0)
|
---|
| 103 | return PdbKey::NoToken;
|
---|
| 104 | else
|
---|
| 105 | return knownTokens[token];
|
---|
| 106 |
|
---|
| 107 | return PdbKey::NoToken;
|
---|
[3ae731] | 108 | }
|
---|
| 109 |
|
---|
| 110 | /**
|
---|
[4fbca9c] | 111 | * Loads atoms from a PDB-formatted file.
|
---|
[3ae731] | 112 | *
|
---|
[4fbca9c] | 113 | * \param PDB file
|
---|
[3ae731] | 114 | */
|
---|
[765f16] | 115 | void FormatParser< pdb >::load(istream* file) {
|
---|
[4fbca9c] | 116 | string line;
|
---|
| 117 | size_t linecount = 0;
|
---|
| 118 | enum PdbKey::KnownTokens token;
|
---|
| 119 |
|
---|
[16462f] | 120 | // reset atomIdMap for this file (to correctly parse CONECT entries)
|
---|
| 121 | atomIdMap.clear();
|
---|
| 122 |
|
---|
[9dba5f] | 123 | bool NotEndOfFile = true;
|
---|
[4fbca9c] | 124 | molecule *newmol = World::getInstance().createMolecule();
|
---|
| 125 | newmol->ActiveFlag = true;
|
---|
[b0a2e3] | 126 | unsigned int step = 0;
|
---|
[4fbca9c] | 127 | // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include
|
---|
| 128 | World::getInstance().getMolecules()->insert(newmol);
|
---|
| 129 | while (NotEndOfFile) {
|
---|
[9dba5f] | 130 | bool NotEndOfTimestep = true;
|
---|
[b0a2e3] | 131 | while (NotEndOfTimestep && NotEndOfFile) {
|
---|
[9dba5f] | 132 | std::getline(*file, line, '\n');
|
---|
[b0a2e3] | 133 | if (!line.empty()) {
|
---|
| 134 | // extract first token
|
---|
| 135 | token = getToken(line);
|
---|
| 136 | switch (token) {
|
---|
| 137 | case PdbKey::Atom:
|
---|
| 138 | LOG(3,"INFO: Parsing ATOM entry for time step " << step << ".");
|
---|
| 139 | readAtomDataLine(step, line, newmol);
|
---|
| 140 | break;
|
---|
| 141 | case PdbKey::Remark:
|
---|
| 142 | LOG(3,"INFO: Parsing REM entry for time step " << step << ".");
|
---|
| 143 | break;
|
---|
| 144 | case PdbKey::Connect:
|
---|
| 145 | LOG(3,"INFO: Parsing CONECT entry for time step " << step << ".");
|
---|
| 146 | readNeighbors(step, line);
|
---|
| 147 | break;
|
---|
| 148 | case PdbKey::Filler:
|
---|
| 149 | LOG(3,"INFO: Stumbled upon Filler entry for time step " << step << ".");
|
---|
| 150 | break;
|
---|
| 151 | case PdbKey::EndOfTimestep:
|
---|
| 152 | LOG(3,"INFO: Parsing END entry or empty line for time step " << step << ".");
|
---|
| 153 | NotEndOfTimestep = false;
|
---|
| 154 | break;
|
---|
| 155 | default:
|
---|
| 156 | // TODO: put a throw here
|
---|
| 157 | DoeLog(2) && (eLog() << Verbose(2) << "Unknown token: '" << line << "' for time step " << step << "." << std::endl);
|
---|
[765f16] | 158 | //ASSERT(0, "FormatParser< pdb >::load() - Unknown token in line "+toString(linecount)+": "+line+".");
|
---|
[b0a2e3] | 159 | break;
|
---|
| 160 | }
|
---|
[9dba5f] | 161 | }
|
---|
| 162 | NotEndOfFile = NotEndOfFile && (file->good());
|
---|
| 163 | linecount++;
|
---|
[4fbca9c] | 164 | }
|
---|
[b0a2e3] | 165 | ++step;
|
---|
| 166 | }
|
---|
[48801a] | 167 | BOOST_FOREACH(atom *_atom, World::getInstance().getAllAtoms())
|
---|
| 168 | LOG(4, "INFO: Atom " << _atom->getName() << " " << *dynamic_cast<AtomInfo *>(_atom) << ".");
|
---|
[4afa46] | 169 |
|
---|
| 170 | // refresh atom::nr and atom::name
|
---|
| 171 | newmol->getAtomCount();
|
---|
[3ae731] | 172 | }
|
---|
| 173 |
|
---|
| 174 | /**
|
---|
[73916f] | 175 | * Saves the \a atoms into as a PDB file.
|
---|
[3ae731] | 176 | *
|
---|
| 177 | * \param file where to save the state
|
---|
[73916f] | 178 | * \param atoms atoms to store
|
---|
[3ae731] | 179 | */
|
---|
[765f16] | 180 | void FormatParser< pdb >::save(ostream* file, const std::vector<atom *> &AtomList)
|
---|
[73916f] | 181 | {
|
---|
[bb6193] | 182 | DoLog(0) && (Log() << Verbose(0) << "Saving changes to pdb." << std::endl);
|
---|
[9dba5f] | 183 |
|
---|
| 184 | // check for maximum number of time steps
|
---|
| 185 | size_t max_timesteps = 0;
|
---|
| 186 | BOOST_FOREACH(atom *_atom, World::getInstance().getAllAtoms()) {
|
---|
[48801a] | 187 | LOG(4, "INFO: Atom " << _atom->getName() << " " << *dynamic_cast<AtomInfo *>(_atom) << ".");
|
---|
[9dba5f] | 188 | if (_atom->getTrajectorySize() > max_timesteps)
|
---|
| 189 | max_timesteps = _atom->getTrajectorySize();
|
---|
[bb6193] | 190 | }
|
---|
[9dba5f] | 191 | LOG(2,"INFO: Found a maximum of " << max_timesteps << " time steps to store.");
|
---|
[3ae731] | 192 |
|
---|
[9dba5f] | 193 | // re-distribute serials
|
---|
| 194 | // (new atoms might have been added)
|
---|
| 195 | // (serials must be consistent over time steps)
|
---|
[4fbca9c] | 196 | atomIdMap.clear();
|
---|
[9dba5f] | 197 | int AtomNo = 1; // serial number starts at 1 in pdb
|
---|
| 198 | for (vector<atom *>::const_iterator atomIt = AtomList.begin(); atomIt != AtomList.end(); atomIt++) {
|
---|
| 199 | PdbAtomInfoContainer &atomInfo = getadditionalAtomData(*atomIt);
|
---|
| 200 | setSerial((*atomIt)->getId(), AtomNo);
|
---|
| 201 | atomInfo.set(PdbKey::serial, toString(AtomNo));
|
---|
| 202 | AtomNo++;
|
---|
| 203 | }
|
---|
| 204 |
|
---|
[5c5472] | 205 | // store all time steps (always do first step)
|
---|
| 206 | for (size_t step = 0; (step == 0) || (step < max_timesteps); ++step) {
|
---|
[9dba5f] | 207 | {
|
---|
| 208 | // add initial remark
|
---|
| 209 | *file << "REMARK created by molecuilder on ";
|
---|
| 210 | time_t now = time((time_t *)NULL); // Get the system time and put it into 'now' as 'calender time'
|
---|
| 211 | // ctime ends in \n\0, we have to cut away the newline
|
---|
| 212 | std::string time(ctime(&now));
|
---|
| 213 | size_t pos = time.find('\n');
|
---|
| 214 | if (pos != 0)
|
---|
| 215 | *file << time.substr(0,pos);
|
---|
| 216 | else
|
---|
| 217 | *file << time;
|
---|
| 218 | *file << ", time step " << step;
|
---|
| 219 | *file << endl;
|
---|
[16462f] | 220 | }
|
---|
[9dba5f] | 221 |
|
---|
| 222 | {
|
---|
| 223 | std::map<size_t,size_t> MolIdMap;
|
---|
| 224 | size_t MolNo = 1; // residue number starts at 1 in pdb
|
---|
| 225 | for (vector<atom *>::const_iterator atomIt = AtomList.begin(); atomIt != AtomList.end(); atomIt++) {
|
---|
| 226 | const molecule *mol = (*atomIt)->getMolecule();
|
---|
| 227 | if ((mol != NULL) && (MolIdMap.find(mol->getId()) == MolIdMap.end())) {
|
---|
| 228 | MolIdMap[mol->getId()] = MolNo++;
|
---|
| 229 | }
|
---|
[bb6193] | 230 | }
|
---|
[9dba5f] | 231 | const size_t MaxMol = MolNo;
|
---|
| 232 |
|
---|
| 233 | // have a count per element and per molecule (0 is for all homeless atoms)
|
---|
| 234 | std::vector<int> **elementNo = new std::vector<int>*[MaxMol];
|
---|
| 235 | for (size_t i = 0; i < MaxMol; ++i)
|
---|
| 236 | elementNo[i] = new std::vector<int>(MAX_ELEMENTS,1);
|
---|
| 237 | char name[MAXSTRINGSIZE];
|
---|
| 238 | std::string ResidueName;
|
---|
| 239 |
|
---|
| 240 | // write ATOMs
|
---|
| 241 | for (vector<atom *>::const_iterator atomIt = AtomList.begin(); atomIt != AtomList.end(); atomIt++) {
|
---|
| 242 | PdbAtomInfoContainer &atomInfo = getadditionalAtomData(*atomIt);
|
---|
| 243 | // gather info about residue
|
---|
| 244 | const molecule *mol = (*atomIt)->getMolecule();
|
---|
| 245 | if (mol == NULL) {
|
---|
| 246 | MolNo = 0;
|
---|
| 247 | atomInfo.set(PdbKey::resSeq, "0");
|
---|
| 248 | } else {
|
---|
| 249 | ASSERT(MolIdMap.find(mol->getId()) != MolIdMap.end(),
|
---|
[765f16] | 250 | "FormatParser< pdb >::save() - Mol id "+toString(mol->getId())+" not present despite we set it?!");
|
---|
[9dba5f] | 251 | MolNo = MolIdMap[mol->getId()];
|
---|
| 252 | atomInfo.set(PdbKey::resSeq, toString(MolIdMap[mol->getId()]));
|
---|
| 253 | if (atomInfo.get<std::string>(PdbKey::resName) == "-")
|
---|
| 254 | atomInfo.set(PdbKey::resName, mol->getName().substr(0,3));
|
---|
| 255 | }
|
---|
| 256 | // get info about atom
|
---|
| 257 | const size_t Z = (*atomIt)->getType()->getAtomicNumber();
|
---|
| 258 | if (atomInfo.get<std::string>(PdbKey::name) == "-") { // if no name set, give it a new name
|
---|
| 259 | sprintf(name, "%2s%02d",(*atomIt)->getType()->getSymbol().c_str(), (*elementNo[MolNo])[Z]);
|
---|
| 260 | (*elementNo[MolNo])[Z] = ((*elementNo[MolNo])[Z]+1) % 100; // confine to two digits
|
---|
| 261 | atomInfo.set(PdbKey::name, name);
|
---|
| 262 | }
|
---|
| 263 | // set position
|
---|
| 264 | for (size_t i=0; i<NDIM;++i) {
|
---|
| 265 | stringstream position;
|
---|
| 266 | position << setw(8) << fixed << setprecision(3) << (*atomIt)->getPositionAtStep(step).at(i);
|
---|
| 267 | atomInfo.set(PositionEnumMap[i], position.str());
|
---|
| 268 | }
|
---|
| 269 | // change element and charge if changed
|
---|
[8990879] | 270 | if (atomInfo.get<std::string>(PdbKey::element) != (*atomIt)->getType()->getSymbol()) {
|
---|
| 271 | std::string symbol = (*atomIt)->getType()->getSymbol();
|
---|
| 272 | if ((symbol[1] >= 'a') && (symbol[1] <= 'z'))
|
---|
| 273 | symbol[1] = (symbol[1] - 'a') + 'A';
|
---|
| 274 | atomInfo.set(PdbKey::element, symbol);
|
---|
| 275 | }
|
---|
[9dba5f] | 276 |
|
---|
| 277 | // finally save the line
|
---|
| 278 | saveLine(file, atomInfo);
|
---|
[16462f] | 279 | }
|
---|
[9dba5f] | 280 | for (size_t i = 0; i < MaxMol; ++i)
|
---|
| 281 | delete elementNo[i];
|
---|
| 282 | delete elementNo;
|
---|
[3ae731] | 283 |
|
---|
[9dba5f] | 284 | // write CONECTs
|
---|
| 285 | for (vector<atom *>::const_iterator atomIt = AtomList.begin(); atomIt != AtomList.end(); atomIt++) {
|
---|
| 286 | writeNeighbors(file, 4, *atomIt);
|
---|
| 287 | }
|
---|
[bb6193] | 288 | }
|
---|
[9dba5f] | 289 | // END
|
---|
| 290 | *file << "END" << endl;
|
---|
[3ae731] | 291 | }
|
---|
| 292 |
|
---|
| 293 | }
|
---|
| 294 |
|
---|
[6bc86c] | 295 | /** Add default info, when new atom is added to World.
|
---|
| 296 | *
|
---|
| 297 | * @param id of atom
|
---|
| 298 | */
|
---|
[765f16] | 299 | void FormatParser< pdb >::AtomInserted(atomId_t id)
|
---|
[6bc86c] | 300 | {
|
---|
[765f16] | 301 | //LOG(3, "FormatParser< pdb >::AtomInserted() - notified of atom " << id << "'s insertion.");
|
---|
[6bc86c] | 302 | ASSERT(!isPresentadditionalAtomData(id),
|
---|
[765f16] | 303 | "FormatParser< pdb >::AtomInserted() - additionalAtomData already present for newly added atom "
|
---|
[6bc86c] | 304 | +toString(id)+".");
|
---|
| 305 | // don't insert here as this is our check whether we are in the first time step
|
---|
| 306 | //additionalAtomData.insert( std::make_pair(id, defaultAdditionalData) );
|
---|
| 307 | //SerialSet.insert(id);
|
---|
| 308 | }
|
---|
| 309 |
|
---|
| 310 | /** Remove additional AtomData info, when atom has been removed from World.
|
---|
| 311 | *
|
---|
| 312 | * @param id of atom
|
---|
| 313 | */
|
---|
[765f16] | 314 | void FormatParser< pdb >::AtomRemoved(atomId_t id)
|
---|
[6bc86c] | 315 | {
|
---|
[765f16] | 316 | //LOG(3, "FormatParser< pdb >::AtomRemoved() - notified of atom " << id << "'s removal.");
|
---|
[6bc86c] | 317 | std::map<size_t, PdbAtomInfoContainer>::iterator iter = additionalAtomData.find(id);
|
---|
| 318 | // as we do not insert AtomData on AtomInserted, we cannot be assured of its presence
|
---|
| 319 | // ASSERT(iter != additionalAtomData.end(),
|
---|
[765f16] | 320 | // "FormatParser< pdb >::AtomRemoved() - additionalAtomData is not present for atom "
|
---|
[6bc86c] | 321 | // +toString(id)+" to remove.");
|
---|
| 322 | if (iter != additionalAtomData.end()) {
|
---|
| 323 | ConvertTo<size_t> toSize_t;
|
---|
| 324 | SerialSet.erase(toSize_t((iter->second).get<std::string>(PdbKey::serial)));
|
---|
| 325 | additionalAtomData.erase(iter);
|
---|
| 326 | }
|
---|
| 327 | }
|
---|
| 328 |
|
---|
| 329 |
|
---|
[9dba5f] | 330 | /** Checks whether there is an entry for the given atom's \a _id.
|
---|
| 331 | *
|
---|
| 332 | * @param _id atom's id we wish to check on
|
---|
| 333 | * @return true - entry present, false - only for atom's father or no entry
|
---|
| 334 | */
|
---|
[765f16] | 335 | bool FormatParser< pdb >::isPresentadditionalAtomData(unsigned int _id)
|
---|
[9dba5f] | 336 | {
|
---|
| 337 | return (additionalAtomData.find(_id) != additionalAtomData.end());
|
---|
| 338 | }
|
---|
| 339 |
|
---|
| 340 |
|
---|
[93fd43e] | 341 | /** Either returns reference to present entry or creates new with default values.
|
---|
| 342 | *
|
---|
| 343 | * @param _atom atom whose entry we desire
|
---|
| 344 | * @return
|
---|
| 345 | */
|
---|
[765f16] | 346 | PdbAtomInfoContainer& FormatParser< pdb >::getadditionalAtomData(atom *_atom)
|
---|
[93fd43e] | 347 | {
|
---|
| 348 | if (additionalAtomData.find(_atom->getId()) != additionalAtomData.end()) {
|
---|
| 349 | } else if (additionalAtomData.find(_atom->father->getId()) != additionalAtomData.end()) {
|
---|
| 350 | // use info from direct father
|
---|
| 351 | additionalAtomData[_atom->getId()] = additionalAtomData[_atom->father->getId()];
|
---|
| 352 | } else if (additionalAtomData.find(_atom->GetTrueFather()->getId()) != additionalAtomData.end()) {
|
---|
| 353 | // use info from topmost father
|
---|
| 354 | additionalAtomData[_atom->getId()] = additionalAtomData[_atom->GetTrueFather()->getId()];
|
---|
| 355 | } else {
|
---|
| 356 | // create new entry use default values if nothing else is known
|
---|
| 357 | additionalAtomData[_atom->getId()] = defaultAdditionalData;
|
---|
| 358 | }
|
---|
| 359 | return additionalAtomData[_atom->getId()];
|
---|
| 360 | }
|
---|
| 361 |
|
---|
[3ae731] | 362 | /**
|
---|
[4fbca9c] | 363 | * Writes one line of PDB-formatted data to the provided stream.
|
---|
[3ae731] | 364 | *
|
---|
| 365 | * \param stream where to write the line to
|
---|
[bb6193] | 366 | * \param *currentAtom the atom of which information should be written
|
---|
| 367 | * \param AtomNo serial number of atom
|
---|
[16462f] | 368 | * \param *name name of atom, i.e. H01
|
---|
| 369 | * \param ResidueName Name of molecule
|
---|
[bb6193] | 370 | * \param ResidueNo number of residue
|
---|
[3ae731] | 371 | */
|
---|
[765f16] | 372 | void FormatParser< pdb >::saveLine(
|
---|
[16462f] | 373 | ostream* file,
|
---|
| 374 | const PdbAtomInfoContainer &atomInfo)
|
---|
| 375 | {
|
---|
| 376 | *file << setfill(' ') << left << setw(6)
|
---|
| 377 | << atomInfo.get<std::string>(PdbKey::token);
|
---|
| 378 | *file << setfill(' ') << right << setw(5)
|
---|
| 379 | << atomInfo.get<int>(PdbKey::serial); /* atom serial number */
|
---|
| 380 | *file << " "; /* char 12 is empty */
|
---|
| 381 | *file << setfill(' ') << left << setw(4)
|
---|
| 382 | << atomInfo.get<std::string>(PdbKey::name); /* atom name */
|
---|
| 383 | *file << setfill(' ') << left << setw(1)
|
---|
| 384 | << atomInfo.get<std::string>(PdbKey::altLoc); /* alternate location/conformation */
|
---|
| 385 | *file << setfill(' ') << left << setw(3)
|
---|
| 386 | << atomInfo.get<std::string>(PdbKey::resName); /* residue name */
|
---|
| 387 | *file << " "; /* char 21 is empty */
|
---|
| 388 | *file << setfill(' ') << left << setw(1)
|
---|
| 389 | << atomInfo.get<std::string>(PdbKey::chainID); /* chain identifier */
|
---|
| 390 | *file << setfill(' ') << left << setw(4)
|
---|
| 391 | << atomInfo.get<int>(PdbKey::resSeq); /* residue sequence number */
|
---|
| 392 | *file << setfill(' ') << left << setw(1)
|
---|
| 393 | << atomInfo.get<std::string>(PdbKey::iCode); /* iCode */
|
---|
| 394 | *file << " "; /* char 28-30 are empty */
|
---|
| 395 | // have the following operate on stringstreams such that format specifiers
|
---|
| 396 | // only act on these
|
---|
| 397 | for (size_t i=0;i<NDIM;++i) {
|
---|
| 398 | stringstream position;
|
---|
| 399 | position << fixed << setprecision(3) << showpoint
|
---|
| 400 | << atomInfo.get<double>(PositionEnumMap[i]);
|
---|
| 401 | *file << setfill(' ') << right << setw(8) << position.str();
|
---|
| 402 | }
|
---|
| 403 | {
|
---|
| 404 | stringstream occupancy;
|
---|
| 405 | occupancy << fixed << setprecision(2) << showpoint
|
---|
| 406 | << atomInfo.get<double>(PdbKey::occupancy); /* occupancy */
|
---|
| 407 | *file << setfill(' ') << right << setw(6) << occupancy.str();
|
---|
[3ae731] | 408 | }
|
---|
[16462f] | 409 | {
|
---|
| 410 | stringstream tempFactor;
|
---|
| 411 | tempFactor << fixed << setprecision(2) << showpoint
|
---|
| 412 | << atomInfo.get<double>(PdbKey::tempFactor); /* temperature factor */
|
---|
| 413 | *file << setfill(' ') << right << setw(6) << tempFactor.str();
|
---|
| 414 | }
|
---|
| 415 | *file << " "; /* char 68-76 are empty */
|
---|
| 416 | *file << setfill(' ') << right << setw(2) << atomInfo.get<std::string>(PdbKey::element); /* element */
|
---|
| 417 | *file << setfill(' ') << right << setw(2) << atomInfo.get<int>(PdbKey::charge); /* charge */
|
---|
[3ae731] | 418 |
|
---|
| 419 | *file << endl;
|
---|
| 420 | }
|
---|
| 421 |
|
---|
| 422 | /**
|
---|
| 423 | * Writes the neighbor information of one atom to the provided stream.
|
---|
| 424 | *
|
---|
[9d83b6] | 425 | * Note that ListOfBonds of WorldTime::CurrentTime is used.
|
---|
| 426 | *
|
---|
[473237] | 427 | * Also, we fill up the CONECT line to extend over 80 chars.
|
---|
| 428 | *
|
---|
[bb6193] | 429 | * \param *file where to write neighbor information to
|
---|
| 430 | * \param MaxnumberOfNeighbors of neighbors
|
---|
| 431 | * \param *currentAtom to the atom of which to take the neighbor information
|
---|
[3ae731] | 432 | */
|
---|
[765f16] | 433 | void FormatParser< pdb >::writeNeighbors(ostream* file, int MaxnumberOfNeighbors, atom* currentAtom) {
|
---|
[4c1230] | 434 | int MaxNo = MaxnumberOfNeighbors;
|
---|
[473237] | 435 | int charsleft = 80;
|
---|
[9d83b6] | 436 | const BondList & ListOfBonds = currentAtom->getListOfBonds();
|
---|
| 437 | if (!ListOfBonds.empty()) {
|
---|
| 438 | for(BondList::const_iterator currentBond = ListOfBonds.begin(); currentBond != ListOfBonds.end(); ++currentBond) {
|
---|
[4c1230] | 439 | if (MaxNo >= MaxnumberOfNeighbors) {
|
---|
| 440 | *file << "CONECT";
|
---|
[16462f] | 441 | *file << setw(5) << getSerial(currentAtom->getId());
|
---|
[473237] | 442 | charsleft = 80-6-5;
|
---|
[4c1230] | 443 | MaxNo = 0;
|
---|
[bb6193] | 444 | }
|
---|
[16462f] | 445 | *file << setw(5) << getSerial((*currentBond)->GetOtherAtom(currentAtom)->getId());
|
---|
[473237] | 446 | charsleft -= 5;
|
---|
[bb6193] | 447 | MaxNo++;
|
---|
[473237] | 448 | if (MaxNo == MaxnumberOfNeighbors) {
|
---|
| 449 | for (;charsleft > 0; charsleft--)
|
---|
| 450 | *file << ' ';
|
---|
[4c1230] | 451 | *file << "\n";
|
---|
[473237] | 452 | }
|
---|
[3ae731] | 453 | }
|
---|
[473237] | 454 | if (MaxNo != MaxnumberOfNeighbors) {
|
---|
| 455 | for (;charsleft > 0; charsleft--)
|
---|
| 456 | *file << ' ';
|
---|
[4c1230] | 457 | *file << "\n";
|
---|
[473237] | 458 | }
|
---|
[3ae731] | 459 | }
|
---|
| 460 | }
|
---|
| 461 |
|
---|
[765f16] | 462 | /** Retrieves a value from FormatParser< pdb >::atomIdMap.
|
---|
[21585f] | 463 | * \param atomid key
|
---|
| 464 | * \return value
|
---|
| 465 | */
|
---|
[765f16] | 466 | size_t FormatParser< pdb >::getSerial(const size_t atomid) const
|
---|
[21585f] | 467 | {
|
---|
[765f16] | 468 | ASSERT(atomIdMap.find(atomid) != atomIdMap.end(),
|
---|
| 469 | "FormatParser< pdb >::getAtomId: atomid "+toString(atomid)+" not present in Map.");
|
---|
[21585f] | 470 | return (atomIdMap.find(atomid)->second);
|
---|
| 471 | }
|
---|
| 472 |
|
---|
[765f16] | 473 | /** Sets an entry in FormatParser< pdb >::atomIdMap.
|
---|
[21585f] | 474 | * \param localatomid key
|
---|
| 475 | * \param atomid value
|
---|
| 476 | * \return true - key not present, false - value present
|
---|
| 477 | */
|
---|
[765f16] | 478 | void FormatParser< pdb >::setSerial(const size_t localatomid, const size_t atomid)
|
---|
[21585f] | 479 | {
|
---|
[4fbca9c] | 480 | pair<std::map<size_t,size_t>::iterator, bool > inserter;
|
---|
[765f16] | 481 | // DoLog(1) && (Log() << Verbose(1) << "FormatParser< pdb >::setAtomId() - Inserting ("
|
---|
[16462f] | 482 | // << localatomid << " -> " << atomid << ")." << std::endl);
|
---|
[4fbca9c] | 483 | inserter = atomIdMap.insert( make_pair(localatomid, atomid) );
|
---|
[765f16] | 484 | ASSERT(inserter.second, "FormatParser< pdb >::setAtomId: atomId already present in Map.");
|
---|
[21585f] | 485 | }
|
---|
| 486 |
|
---|
[9dba5f] | 487 | /** Either returns present atom with given id or a newly created one.
|
---|
| 488 | *
|
---|
| 489 | * @param id_string
|
---|
| 490 | * @return
|
---|
| 491 | */
|
---|
[765f16] | 492 | atom* FormatParser< pdb >::getAtomToParse(std::string id_string) const
|
---|
[9dba5f] | 493 | {
|
---|
| 494 | // get the local ID
|
---|
| 495 | ConvertTo<int> toInt;
|
---|
| 496 | unsigned int AtomID = toInt(id_string);
|
---|
| 497 | LOG(4, "INFO: Local id is "+toString(AtomID)+".");
|
---|
| 498 | // get the atomic ID if present
|
---|
| 499 | atom* newAtom = NULL;
|
---|
| 500 | if (atomIdMap.count((size_t)AtomID)) {
|
---|
| 501 | std::map<size_t, size_t>::const_iterator iter = atomIdMap.find(AtomID);
|
---|
| 502 | AtomID = iter->second;
|
---|
| 503 | LOG(4, "INFO: Global id present as " << AtomID << ".");
|
---|
| 504 | // check if atom exists
|
---|
| 505 | newAtom = World::getInstance().getAtom(AtomById(AtomID));
|
---|
| 506 | LOG(5, "INFO: Listing all present atoms with id.");
|
---|
| 507 | BOOST_FOREACH(atom *_atom, World::getInstance().getAllAtoms())
|
---|
| 508 | LOG(5, "INFO: " << *_atom << " with id " << _atom->getId());
|
---|
| 509 | }
|
---|
| 510 | // if not exists, create
|
---|
| 511 | if (newAtom == NULL) {
|
---|
| 512 | newAtom = World::getInstance().createAtom();
|
---|
| 513 | LOG(4, "INFO: No association to global id present, creating atom.");
|
---|
| 514 | } else {
|
---|
| 515 | LOG(4, "INFO: Existing atom found: " << *newAtom << ".");
|
---|
| 516 | }
|
---|
| 517 | return newAtom;
|
---|
| 518 | }
|
---|
| 519 |
|
---|
[5fa2ba] | 520 | /** read a line starting with key ATOM.
|
---|
| 521 | *
|
---|
| 522 | * We check for line's length and parse only up to this value.
|
---|
| 523 | *
|
---|
| 524 | * @param atomInfo container to put information in
|
---|
| 525 | * @param line line containing key ATOM
|
---|
| 526 | */
|
---|
[765f16] | 527 | void FormatParser< pdb >::readPdbAtomInfoContainer(PdbAtomInfoContainer &atomInfo, std::string &line) const
|
---|
[9dba5f] | 528 | {
|
---|
[5fa2ba] | 529 | const size_t length = line.length();
|
---|
| 530 | if (length < 80)
|
---|
[765f16] | 531 | ELOG(2, "FormatParser< pdb >::readPdbAtomInfoContainer() - pdb is mal-formed, containing less than 80 chars!");
|
---|
[5fa2ba] | 532 | if (length >= 6) {
|
---|
| 533 | LOG(4,"INFO: Parsing token from "+line.substr(0,6)+".");
|
---|
| 534 | atomInfo.set(PdbKey::token, line.substr(0,6));
|
---|
| 535 | }
|
---|
| 536 | if (length >= 11) {
|
---|
| 537 | LOG(4,"INFO: Parsing serial from "+line.substr(6,5)+".");
|
---|
| 538 | atomInfo.set(PdbKey::serial, line.substr(6,5));
|
---|
| 539 | ASSERT(atomInfo.get<int>(PdbKey::serial) != 0,
|
---|
[765f16] | 540 | "FormatParser< pdb >::readPdbAtomInfoContainer() - serial 0 is invalid (filler id for conect entries).");
|
---|
[5fa2ba] | 541 | }
|
---|
| 542 |
|
---|
| 543 | if (length >= 16) {
|
---|
| 544 | LOG(4,"INFO: Parsing name from "+line.substr(12,4)+".");
|
---|
| 545 | atomInfo.set(PdbKey::name, line.substr(12,4));
|
---|
| 546 | }
|
---|
| 547 | if (length >= 17) {
|
---|
| 548 | LOG(4,"INFO: Parsing altLoc from "+line.substr(16,1)+".");
|
---|
| 549 | atomInfo.set(PdbKey::altLoc, line.substr(16,1));
|
---|
| 550 | }
|
---|
| 551 | if (length >= 20) {
|
---|
| 552 | LOG(4,"INFO: Parsing resName from "+line.substr(17,3)+".");
|
---|
| 553 | atomInfo.set(PdbKey::resName, line.substr(17,3));
|
---|
| 554 | }
|
---|
| 555 | if (length >= 22) {
|
---|
| 556 | LOG(4,"INFO: Parsing chainID from "+line.substr(21,1)+".");
|
---|
| 557 | atomInfo.set(PdbKey::chainID, line.substr(21,1));
|
---|
| 558 | }
|
---|
| 559 | if (length >= 26) {
|
---|
| 560 | LOG(4,"INFO: Parsing resSeq from "+line.substr(22,4)+".");
|
---|
| 561 | atomInfo.set(PdbKey::resSeq, line.substr(22,4));
|
---|
| 562 | }
|
---|
| 563 | if (length >= 27) {
|
---|
| 564 | LOG(4,"INFO: Parsing iCode from "+line.substr(26,1)+".");
|
---|
| 565 | atomInfo.set(PdbKey::iCode, line.substr(26,1));
|
---|
| 566 | }
|
---|
| 567 |
|
---|
| 568 | if (length >= 60) {
|
---|
| 569 | LOG(4,"INFO: Parsing occupancy from "+line.substr(54,6)+".");
|
---|
| 570 | atomInfo.set(PdbKey::occupancy, line.substr(54,6));
|
---|
| 571 | }
|
---|
| 572 | if (length >= 66) {
|
---|
| 573 | LOG(4,"INFO: Parsing tempFactor from "+line.substr(60,6)+".");
|
---|
| 574 | atomInfo.set(PdbKey::tempFactor, line.substr(60,6));
|
---|
| 575 | }
|
---|
| 576 | if (length >= 80) {
|
---|
| 577 | LOG(4,"INFO: Parsing charge from "+line.substr(78,2)+".");
|
---|
| 578 | atomInfo.set(PdbKey::charge, line.substr(78,2));
|
---|
| 579 | }
|
---|
| 580 | if (length >= 78) {
|
---|
| 581 | LOG(4,"INFO: Parsing element from "+line.substr(76,2)+".");
|
---|
| 582 | atomInfo.set(PdbKey::element, line.substr(76,2));
|
---|
| 583 | } else {
|
---|
| 584 | LOG(4,"INFO: Trying to parse alternative element from name "+line.substr(12,4)+".");
|
---|
| 585 | atomInfo.set(PdbKey::element, line.substr(12,4));
|
---|
| 586 | }
|
---|
[9dba5f] | 587 | }
|
---|
| 588 |
|
---|
[4fbca9c] | 589 | /** Parse an ATOM line from a PDB file.
|
---|
| 590 | *
|
---|
| 591 | * Reads one data line of a pdstatus file and interprets it according to the
|
---|
| 592 | * specifications of the PDB 3.2 format: http://www.wwpdb.org/docs.html
|
---|
| 593 | *
|
---|
| 594 | * A new atom is created and filled with available information, non-
|
---|
| 595 | * standard information is placed in additionalAtomData at the atom's id.
|
---|
[3ae731] | 596 | *
|
---|
[b0a2e3] | 597 | * \param _step time step to use
|
---|
[3ae731] | 598 | * \param line to parse as an atom
|
---|
[4fbca9c] | 599 | * \param newmol molecule to add parsed atoms to
|
---|
[3ae731] | 600 | */
|
---|
[765f16] | 601 | void FormatParser< pdb >::readAtomDataLine(const unsigned int _step, std::string &line, molecule *newmol = NULL) {
|
---|
[4fbca9c] | 602 | vector<string>::iterator it;
|
---|
[9dba5f] | 603 |
|
---|
| 604 | atom* newAtom = getAtomToParse(line.substr(6,5));
|
---|
| 605 | LOG(3,"INFO: Parsing END entry or empty line.");
|
---|
| 606 | bool FirstTimestep = isPresentadditionalAtomData(newAtom->getId()) ? false : true;
|
---|
[b0a2e3] | 607 | ASSERT((FirstTimestep && (_step == 0)) || (!FirstTimestep && (_step !=0)),
|
---|
[765f16] | 608 | "FormatParser< pdb >::readAtomDataLine() - additionalAtomData present though atom is newly parsed.");
|
---|
[9dba5f] | 609 | if (FirstTimestep) {
|
---|
| 610 | LOG(3,"INFO: Parsing new atom.");
|
---|
| 611 | } else {
|
---|
| 612 | LOG(3,"INFO: Parsing present atom "+toString(*newAtom)+".");
|
---|
| 613 | }
|
---|
[93fd43e] | 614 | PdbAtomInfoContainer &atomInfo = getadditionalAtomData(newAtom);
|
---|
[9dba5f] | 615 | LOG(4,"INFO: Information in container is "+toString(atomInfo)+".");
|
---|
| 616 |
|
---|
[4fbca9c] | 617 | string word;
|
---|
| 618 | ConvertTo<size_t> toSize_t;
|
---|
| 619 |
|
---|
[9dba5f] | 620 | // assign highest+1 instead, but then beware of CONECT entries! Another map needed!
|
---|
[4fbca9c] | 621 | // if (!Inserter.second) {
|
---|
| 622 | // const size_t id = (*SerialSet.rbegin())+1;
|
---|
| 623 | // SerialSet.insert(id);
|
---|
| 624 | // atomInfo.set(PdbKey::serial, toString(id));
|
---|
| 625 | // DoeLog(2) && (eLog() << Verbose(2)
|
---|
[16462f] | 626 | // << "Serial " << atomInfo.get<std::string>(PdbKey::serial) << " already present, "
|
---|
[4fbca9c] | 627 | // << "assigning " << toString(id) << " instead." << std::endl);
|
---|
[bb6193] | 628 | // }
|
---|
[4fbca9c] | 629 |
|
---|
| 630 | // check whether serial exists, if so, assign next available
|
---|
| 631 |
|
---|
| 632 | // DoLog(2) && (Log() << Verbose(2) << "Split line:"
|
---|
| 633 | // << line.substr(6,5) << "|"
|
---|
| 634 | // << line.substr(12,4) << "|"
|
---|
| 635 | // << line.substr(16,1) << "|"
|
---|
| 636 | // << line.substr(17,3) << "|"
|
---|
| 637 | // << line.substr(21,1) << "|"
|
---|
| 638 | // << line.substr(22,4) << "|"
|
---|
| 639 | // << line.substr(26,1) << "|"
|
---|
| 640 | // << line.substr(30,8) << "|"
|
---|
| 641 | // << line.substr(38,8) << "|"
|
---|
| 642 | // << line.substr(46,8) << "|"
|
---|
| 643 | // << line.substr(54,6) << "|"
|
---|
| 644 | // << line.substr(60,6) << "|"
|
---|
| 645 | // << line.substr(76,2) << "|"
|
---|
| 646 | // << line.substr(78,2) << std::endl);
|
---|
| 647 |
|
---|
[9dba5f] | 648 | if (FirstTimestep) {
|
---|
| 649 | // first time step
|
---|
| 650 | // then fill info container
|
---|
| 651 | readPdbAtomInfoContainer(atomInfo, line);
|
---|
| 652 | // set the serial
|
---|
| 653 | std::pair< std::set<size_t>::const_iterator, bool> Inserter =
|
---|
| 654 | SerialSet.insert(toSize_t(atomInfo.get<std::string>(PdbKey::serial)));
|
---|
| 655 | ASSERT(Inserter.second,
|
---|
[765f16] | 656 | "FormatParser< pdb >::readAtomDataLine() - ATOM contains entry with serial "
|
---|
[9dba5f] | 657 | +atomInfo.get<std::string>(PdbKey::serial)+" already present!");
|
---|
| 658 | setSerial(toSize_t(atomInfo.get<std::string>(PdbKey::serial)), newAtom->getId());
|
---|
| 659 | // set position
|
---|
| 660 | Vector tempVector;
|
---|
| 661 | LOG(4,"INFO: Parsing position from ("
|
---|
| 662 | +line.substr(30,8)+","
|
---|
| 663 | +line.substr(38,8)+","
|
---|
| 664 | +line.substr(46,8)+").");
|
---|
| 665 | PdbAtomInfoContainer::ScanKey(tempVector[0], line.substr(30,8));
|
---|
| 666 | PdbAtomInfoContainer::ScanKey(tempVector[1], line.substr(38,8));
|
---|
| 667 | PdbAtomInfoContainer::ScanKey(tempVector[2], line.substr(46,8));
|
---|
| 668 | newAtom->setPosition(tempVector);
|
---|
| 669 | // set element
|
---|
[8990879] | 670 | std::string value = atomInfo.get<std::string>(PdbKey::element);
|
---|
| 671 | // make second character lower case if not
|
---|
| 672 | if ((value[1] >= 'A') && (value[1] <= 'Z'))
|
---|
| 673 | value[1] = (value[1] - 'A') + 'a';
|
---|
[9dba5f] | 674 | const element *elem = World::getInstance().getPeriode()
|
---|
[8990879] | 675 | ->FindElement(value);
|
---|
[9dba5f] | 676 | ASSERT(elem != NULL,
|
---|
[765f16] | 677 | "FormatParser< pdb >::readAtomDataLine() - element "+atomInfo.get<std::string>(PdbKey::element)+" is unknown!");
|
---|
[9dba5f] | 678 | newAtom->setType(elem);
|
---|
| 679 |
|
---|
| 680 | if (newmol != NULL)
|
---|
| 681 | newmol->AddAtom(newAtom);
|
---|
| 682 | } else {
|
---|
| 683 | // not first time step
|
---|
| 684 | // then parse into different container
|
---|
| 685 | PdbAtomInfoContainer consistencyInfo;
|
---|
| 686 | readPdbAtomInfoContainer(consistencyInfo, line);
|
---|
| 687 | // then check additional info for consistency
|
---|
| 688 | ASSERT(atomInfo.get<std::string>(PdbKey::token) == consistencyInfo.get<std::string>(PdbKey::token),
|
---|
[765f16] | 689 | "FormatParser< pdb >::readAtomDataLine() - difference in token on multiple time step for atom with id "
|
---|
[9dba5f] | 690 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 691 | ASSERT(atomInfo.get<std::string>(PdbKey::name) == consistencyInfo.get<std::string>(PdbKey::name),
|
---|
[765f16] | 692 | "FormatParser< pdb >::readAtomDataLine() - difference in name on multiple time step for atom with id "
|
---|
[9dba5f] | 693 | +atomInfo.get<std::string>(PdbKey::serial)+":"
|
---|
| 694 | +atomInfo.get<std::string>(PdbKey::name)+"!="
|
---|
| 695 | +consistencyInfo.get<std::string>(PdbKey::name)+".");
|
---|
| 696 | ASSERT(atomInfo.get<std::string>(PdbKey::altLoc) == consistencyInfo.get<std::string>(PdbKey::altLoc),
|
---|
[765f16] | 697 | "FormatParser< pdb >::readAtomDataLine() - difference in altLoc on multiple time step for atom with id "
|
---|
[9dba5f] | 698 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 699 | ASSERT(atomInfo.get<std::string>(PdbKey::resName) == consistencyInfo.get<std::string>(PdbKey::resName),
|
---|
[765f16] | 700 | "FormatParser< pdb >::readAtomDataLine() - difference in resName on multiple time step for atom with id "
|
---|
[9dba5f] | 701 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 702 | ASSERT(atomInfo.get<std::string>(PdbKey::chainID) == consistencyInfo.get<std::string>(PdbKey::chainID),
|
---|
[765f16] | 703 | "FormatParser< pdb >::readAtomDataLine() - difference in chainID on multiple time step for atom with id "
|
---|
[9dba5f] | 704 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 705 | ASSERT(atomInfo.get<std::string>(PdbKey::resSeq) == consistencyInfo.get<std::string>(PdbKey::resSeq),
|
---|
[765f16] | 706 | "FormatParser< pdb >::readAtomDataLine() - difference in resSeq on multiple time step for atom with id "
|
---|
[9dba5f] | 707 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 708 | ASSERT(atomInfo.get<std::string>(PdbKey::iCode) == consistencyInfo.get<std::string>(PdbKey::iCode),
|
---|
[765f16] | 709 | "FormatParser< pdb >::readAtomDataLine() - difference in iCode on multiple time step for atom with id "
|
---|
[9dba5f] | 710 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 711 | ASSERT(atomInfo.get<std::string>(PdbKey::occupancy) == consistencyInfo.get<std::string>(PdbKey::occupancy),
|
---|
[765f16] | 712 | "FormatParser< pdb >::readAtomDataLine() - difference in occupancy on multiple time step for atom with id "
|
---|
[9dba5f] | 713 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 714 | ASSERT(atomInfo.get<std::string>(PdbKey::tempFactor) == consistencyInfo.get<std::string>(PdbKey::tempFactor),
|
---|
[765f16] | 715 | "FormatParser< pdb >::readAtomDataLine() - difference in tempFactor on multiple time step for atom with id "
|
---|
[9dba5f] | 716 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 717 | ASSERT(atomInfo.get<std::string>(PdbKey::charge) == consistencyInfo.get<std::string>(PdbKey::charge),
|
---|
[765f16] | 718 | "FormatParser< pdb >::readAtomDataLine() - difference in charge on multiple time step for atom with id "
|
---|
[9dba5f] | 719 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 720 | ASSERT(atomInfo.get<std::string>(PdbKey::element) == consistencyInfo.get<std::string>(PdbKey::element),
|
---|
[765f16] | 721 | "FormatParser< pdb >::readAtomDataLine() - difference in element on multiple time step for atom with id "
|
---|
[9dba5f] | 722 | +atomInfo.get<std::string>(PdbKey::serial)+"!");
|
---|
| 723 | // and parse in trajectory
|
---|
| 724 | Vector tempVector;
|
---|
| 725 | LOG(4,"INFO: Parsing trajectory position from ("
|
---|
| 726 | +line.substr(30,8)+","
|
---|
| 727 | +line.substr(38,8)+","
|
---|
| 728 | +line.substr(46,8)+").");
|
---|
| 729 | PdbAtomInfoContainer::ScanKey(tempVector[0], line.substr(30,8));
|
---|
| 730 | PdbAtomInfoContainer::ScanKey(tempVector[1], line.substr(38,8));
|
---|
| 731 | PdbAtomInfoContainer::ScanKey(tempVector[2], line.substr(46,8));
|
---|
[b0a2e3] | 732 | LOG(4,"INFO: Adding trajectory point to time step "+toString(_step)+".");
|
---|
[9dba5f] | 733 | // and set position at new time step
|
---|
[b0a2e3] | 734 | newAtom->setPositionAtStep(_step, tempVector);
|
---|
[9dba5f] | 735 | }
|
---|
| 736 |
|
---|
[4fbca9c] | 737 |
|
---|
| 738 | // printAtomInfo(newAtom);
|
---|
[3ae731] | 739 | }
|
---|
| 740 |
|
---|
[4fbca9c] | 741 | /** Prints all PDB-specific information known about an atom.
|
---|
[3ae731] | 742 | *
|
---|
| 743 | */
|
---|
[765f16] | 744 | void FormatParser< pdb >::printAtomInfo(const atom * const newAtom) const
|
---|
[4fbca9c] | 745 | {
|
---|
| 746 | const PdbAtomInfoContainer &atomInfo = additionalAtomData.at(newAtom->getId()); // operator[] const does not exist
|
---|
| 747 |
|
---|
| 748 | DoLog(1) && (Log() << Verbose(1) << "We know about atom " << newAtom->getId() << ":" << std::endl);
|
---|
[16462f] | 749 | DoLog(1) && (Log() << Verbose(1) << "\ttoken is " << atomInfo.get<std::string>(PdbKey::token) << std::endl);
|
---|
| 750 | DoLog(1) && (Log() << Verbose(1) << "\tserial is " << atomInfo.get<int>(PdbKey::serial) << std::endl);
|
---|
| 751 | DoLog(1) && (Log() << Verbose(1) << "\tname is " << atomInfo.get<std::string>(PdbKey::name) << std::endl);
|
---|
| 752 | DoLog(1) && (Log() << Verbose(1) << "\taltLoc is " << atomInfo.get<std::string>(PdbKey::altLoc) << std::endl);
|
---|
| 753 | DoLog(1) && (Log() << Verbose(1) << "\tresName is " << atomInfo.get<std::string>(PdbKey::resName) << std::endl);
|
---|
| 754 | DoLog(1) && (Log() << Verbose(1) << "\tchainID is " << atomInfo.get<std::string>(PdbKey::chainID) << std::endl);
|
---|
| 755 | DoLog(1) && (Log() << Verbose(1) << "\tresSeq is " << atomInfo.get<int>(PdbKey::resSeq) << std::endl);
|
---|
| 756 | DoLog(1) && (Log() << Verbose(1) << "\tiCode is " << atomInfo.get<std::string>(PdbKey::iCode) << std::endl);
|
---|
| 757 | DoLog(1) && (Log() << Verbose(1) << "\tX is " << atomInfo.get<double>(PdbKey::X) << std::endl);
|
---|
| 758 | DoLog(1) && (Log() << Verbose(1) << "\tY is " << atomInfo.get<double>(PdbKey::Y) << std::endl);
|
---|
| 759 | DoLog(1) && (Log() << Verbose(1) << "\tZ is " << atomInfo.get<double>(PdbKey::Z) << std::endl);
|
---|
| 760 | DoLog(1) && (Log() << Verbose(1) << "\toccupancy is " << atomInfo.get<double>(PdbKey::occupancy) << std::endl);
|
---|
| 761 | DoLog(1) && (Log() << Verbose(1) << "\ttempFactor is " << atomInfo.get<double>(PdbKey::tempFactor) << std::endl);
|
---|
[4fbca9c] | 762 | DoLog(1) && (Log() << Verbose(1) << "\telement is '" << *(newAtom->getType()) << "'" << std::endl);
|
---|
[16462f] | 763 | DoLog(1) && (Log() << Verbose(1) << "\tcharge is " << atomInfo.get<int>(PdbKey::charge) << std::endl);
|
---|
[3ae731] | 764 | }
|
---|
| 765 |
|
---|
| 766 | /**
|
---|
[4fbca9c] | 767 | * Reads neighbor information for one atom from the input.
|
---|
| 768 | *
|
---|
[b0a2e3] | 769 | * \param _step time step to use
|
---|
[4fbca9c] | 770 | * \param line to parse as an atom
|
---|
[3ae731] | 771 | */
|
---|
[765f16] | 772 | void FormatParser< pdb >::readNeighbors(const unsigned int _step, std::string &line)
|
---|
[4fbca9c] | 773 | {
|
---|
| 774 | const size_t length = line.length();
|
---|
| 775 | std::list<size_t> ListOfNeighbors;
|
---|
| 776 | ConvertTo<size_t> toSize_t;
|
---|
| 777 |
|
---|
| 778 | // obtain neighbours
|
---|
| 779 | // show split line for debugging
|
---|
| 780 | string output;
|
---|
| 781 | ASSERT(length >=16,
|
---|
[765f16] | 782 | "FormatParser< pdb >::readNeighbors() - CONECT entry has not enough entries: "+line+"!");
|
---|
| 783 | // output = "Split line:|";
|
---|
| 784 | // output += line.substr(6,5) + "|";
|
---|
[4fbca9c] | 785 | const size_t id = toSize_t(line.substr(6,5));
|
---|
| 786 | for (size_t index = 11; index <= 26; index+=5) {
|
---|
| 787 | if (index+5 <= length) {
|
---|
[473237] | 788 | output += line.substr(index,5) + "|";
|
---|
| 789 | // search for digits
|
---|
| 790 | int otherid = -1;
|
---|
| 791 | PdbAtomInfoContainer::ScanKey(otherid, line.substr(index,5));
|
---|
[5fa2ba] | 792 | if (otherid > 0)
|
---|
| 793 | ListOfNeighbors.push_back(otherid);
|
---|
| 794 | else
|
---|
[765f16] | 795 | ELOG(2, "FormatParser< pdb >::readNeighbors() - discarding conect entry with id 0.");
|
---|
[4fbca9c] | 796 | } else {
|
---|
| 797 | break;
|
---|
| 798 | }
|
---|
| 799 | }
|
---|
[473237] | 800 | LOG(4, output);
|
---|
[4fbca9c] | 801 |
|
---|
| 802 | // add neighbours
|
---|
[16462f] | 803 | atom *_atom = World::getInstance().getAtom(AtomById(getSerial(id)));
|
---|
[473237] | 804 | LOG(2, "STATUS: Atom " << _atom->getId() << " gets " << ListOfNeighbors.size() << " more neighbours.");
|
---|
[4fbca9c] | 805 | for (std::list<size_t>::const_iterator iter = ListOfNeighbors.begin();
|
---|
| 806 | iter != ListOfNeighbors.end();
|
---|
| 807 | ++iter) {
|
---|
[16462f] | 808 | atom * const _Otheratom = World::getInstance().getAtom(AtomById(getSerial(*iter)));
|
---|
[473237] | 809 | LOG(3, "INFO: Adding Bond (" << *_atom << "," << *_Otheratom << ")");
|
---|
[b0a2e3] | 810 | _atom->addBond(_step, _Otheratom);
|
---|
[4fbca9c] | 811 | }
|
---|
[3ae731] | 812 | }
|
---|
| 813 |
|
---|
| 814 | /**
|
---|
| 815 | * Replaces atom IDs read from the file by the corresponding world IDs. All IDs
|
---|
| 816 | * IDs of the input string will be replaced; expected separating characters are
|
---|
| 817 | * "-" and ",".
|
---|
| 818 | *
|
---|
| 819 | * \param string in which atom IDs should be adapted
|
---|
| 820 | *
|
---|
| 821 | * \return input string with modified atom IDs
|
---|
| 822 | */
|
---|
[765f16] | 823 | //string FormatParser< pdb >::adaptIdDependentDataString(string data) {
|
---|
[bb6193] | 824 | // // there might be no IDs
|
---|
| 825 | // if (data == "-") {
|
---|
| 826 | // return "-";
|
---|
| 827 | // }
|
---|
| 828 | //
|
---|
| 829 | // char separator;
|
---|
| 830 | // int id;
|
---|
| 831 | // stringstream line, result;
|
---|
| 832 | // line << data;
|
---|
| 833 | //
|
---|
| 834 | // line >> id;
|
---|
| 835 | // result << atomIdMap[id];
|
---|
| 836 | // while (line.good()) {
|
---|
| 837 | // line >> separator >> id;
|
---|
| 838 | // result << separator << atomIdMap[id];
|
---|
| 839 | // }
|
---|
| 840 | //
|
---|
| 841 | // return result.str();
|
---|
[4fbca9c] | 842 | // return "";
|
---|
| 843 | //}
|
---|
[3ae731] | 844 |
|
---|
| 845 |
|
---|
[765f16] | 846 | bool FormatParser< pdb >::operator==(const FormatParser< pdb >& b) const
|
---|
[4fbca9c] | 847 | {
|
---|
| 848 | bool status = true;
|
---|
| 849 | World::AtomComposite atoms = World::getInstance().getAllAtoms();
|
---|
| 850 | for (World::AtomComposite::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) {
|
---|
| 851 | if ((additionalAtomData.find((*iter)->getId()) != additionalAtomData.end())
|
---|
| 852 | && (b.additionalAtomData.find((*iter)->getId()) != b.additionalAtomData.end())) {
|
---|
| 853 | const PdbAtomInfoContainer &atomInfo = additionalAtomData.at((*iter)->getId());
|
---|
| 854 | const PdbAtomInfoContainer &OtheratomInfo = b.additionalAtomData.at((*iter)->getId());
|
---|
| 855 |
|
---|
[16462f] | 856 | status = status && (atomInfo.get<std::string>(PdbKey::serial) == OtheratomInfo.get<std::string>(PdbKey::serial));
|
---|
[4fbca9c] | 857 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in serials!" << std::endl);
|
---|
[16462f] | 858 | status = status && (atomInfo.get<std::string>(PdbKey::name) == OtheratomInfo.get<std::string>(PdbKey::name));
|
---|
[4fbca9c] | 859 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in names!" << std::endl);
|
---|
[16462f] | 860 | status = status && (atomInfo.get<std::string>(PdbKey::altLoc) == OtheratomInfo.get<std::string>(PdbKey::altLoc));
|
---|
| 861 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in altLocs!" << std::endl);
|
---|
| 862 | status = status && (atomInfo.get<std::string>(PdbKey::resName) == OtheratomInfo.get<std::string>(PdbKey::resName));
|
---|
[4fbca9c] | 863 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in resNames!" << std::endl);
|
---|
[16462f] | 864 | status = status && (atomInfo.get<std::string>(PdbKey::chainID) == OtheratomInfo.get<std::string>(PdbKey::chainID));
|
---|
[4fbca9c] | 865 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in chainIDs!" << std::endl);
|
---|
[16462f] | 866 | status = status && (atomInfo.get<std::string>(PdbKey::resSeq) == OtheratomInfo.get<std::string>(PdbKey::resSeq));
|
---|
[4fbca9c] | 867 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in resSeqs!" << std::endl);
|
---|
[16462f] | 868 | status = status && (atomInfo.get<std::string>(PdbKey::iCode) == OtheratomInfo.get<std::string>(PdbKey::iCode));
|
---|
[4fbca9c] | 869 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in iCodes!" << std::endl);
|
---|
[16462f] | 870 | status = status && (atomInfo.get<std::string>(PdbKey::occupancy) == OtheratomInfo.get<std::string>(PdbKey::occupancy));
|
---|
[4fbca9c] | 871 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in occupancies!" << std::endl);
|
---|
[16462f] | 872 | status = status && (atomInfo.get<std::string>(PdbKey::tempFactor) == OtheratomInfo.get<std::string>(PdbKey::tempFactor));
|
---|
[4fbca9c] | 873 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in tempFactors!" << std::endl);
|
---|
[16462f] | 874 | status = status && (atomInfo.get<std::string>(PdbKey::charge) == OtheratomInfo.get<std::string>(PdbKey::charge));
|
---|
[4fbca9c] | 875 | if (!status) DoeLog(1) && (eLog() << Verbose(1) << "Mismatch in charges!" << std::endl);
|
---|
| 876 | }
|
---|
[3ae731] | 877 | }
|
---|
| 878 |
|
---|
[4fbca9c] | 879 | return status;
|
---|
[3ae731] | 880 | }
|
---|
| 881 |
|
---|