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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
|
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#include <BALL/FORMAT/MOL2File.h>
#include <BALL/DATATYPE/string.h>
#include <BALL/DATATYPE/regularExpression.h>
#include <BALL/KERNEL/residue.h>
#include <BALL/KERNEL/protein.h>
#include <BALL/KERNEL/system.h>
#include <BALL/KERNEL/PDBAtom.h>
#include <BALL/KERNEL/bond.h>
#include <BALL/KERNEL/PTE.h>
#include <BALL/KERNEL/forEach.h>
#include <BALL/MOLMEC/AMBER/GAFFTypeProcessor.h>
using namespace std;
namespace BALL
{
MOL2File::MOL2File()
: GenericMolFile(),
number_of_lines_(0),
found_next_header_(0)
{
}
MOL2File::MOL2File(const String& name, File::OpenMode open_mode)
: GenericMolFile(name, open_mode),
number_of_lines_(0),
found_next_header_(0)
{
}
MOL2File::~MOL2File()
{
}
// the Tripos record type identifier: RTI
const String MOL2File::TRIPOS = "@<TRIPOS>";
const Size MOL2File::MAX_LENGTH_ = 4096;
bool MOL2File::write(const Molecule& molecule)
{
if (!isOpen() || getOpenMode() != std::ios::out)
{
throw (File::CannotWrite(__FILE__, __LINE__, name_));
}
// Assign Sybyl types. For this, we will need a copy of our molecule (sigh)
Molecule new_molecule(molecule, true);
Options options;
options[GAFFTypeProcessor::Option::ATOMTYPE_FILENAME] = "atomtyping/SYBYLTypes.dat";
GAFFTypeProcessor gt(options);
new_molecule.apply(gt);
// create a shorthand for the file of the MOL2File object
File& f = static_cast<File&>(*this);
// write the molecule header
f << TRIPOS << "MOLECULE" << endl;
// if the system name is empty...
String name = new_molecule.getName();
if (name == "")
{
// .. replace it by four stars
name = "****";
}
f << name << endl;
// determine the number of substructures (= fragments)
// and hash the fragment pointers to a substructure ID (Position)
// the vector substr_names holds the assembled names of the
// substructures
HashMap<const AtomContainer*, Position> substructure_map;
vector<String> substructure_name;
vector<const AtomContainer*> substructure_pointers;
AtomContainerConstIterator frag_it = new_molecule.beginAtomContainer();
// we will need to exclude atomcontainers that have only other atom containers as childs
for (; +frag_it; ++frag_it)
{
if(&*frag_it==&new_molecule) continue;
if(containsAtomChilds_(frag_it))
{
name = frag_it->getName();
// if the fragment is a residue...
const Residue* residue = dynamic_cast<const Residue*>(&*frag_it);
if (residue != 0)
{
// ...append its ID (PDB ID) to the name. E.g.: ALA154
name = name + residue->getID();
}
// empty names are replaced by "****"
name.trim();
if (name == "")
{
name = "****";
}
// store the name and the pointer
substructure_map.insert(pair<const AtomContainer*, Position>(&*frag_it, (Size)substructure_name.size()));
substructure_pointers.push_back(&*frag_it);
if(name.has(' '))
{
// spaces are not allowed in fragment names (would cause reading-errors)
name.substitute(" ","_");
}
substructure_name.push_back(name);
}
}
// count the bonds in the molecule
Atom::BondConstIterator bond_it;
AtomConstIterator atom_it;
Size number_of_bonds = 0;
BALL_FOREACH_BOND(new_molecule, atom_it, bond_it)
{
number_of_bonds++;
}
// write the number of atoms, bonds, and substructures
f << new_molecule.countAtoms() << " " << number_of_bonds << " " << substructure_name.size() << endl;
String mol_type = "SMALL";
// if we are in a protein, set the molecule type to PROTEIN
if (RTTI::isKindOf<Protein>(&new_molecule))
{
mol_type = "PROTEIN";
}
// if we are in an nucleic acid,
// set the type to NUCLEIC_ACID
else if (RTTI::isKindOf<NucleicAcid>(&new_molecule))
{
mol_type = "PROTEIN";
}
// write it the molecule type, the charge type, flags, and a comment line
f << mol_type << endl
<< "USER_CHARGES" << endl
<< endl
<< endl;
// done with the molecule header.
// now, write the atoms: Format: atom_id atom_name x y z atom_type subst_id subst_name charge
// the atom pointers are stored in a hash map (required for bond list construction)
f << TRIPOS << "ATOM" << endl;
HashMap<const Atom*, Position> atom_map;
Size number_of_atoms = 0;
atom_it = new_molecule.beginAtom();
for (; +atom_it; ++atom_it)
{
number_of_atoms++;
// remember this atom in the hash map
atom_map.insert(pair<const Atom*, Position>(&*atom_it, number_of_atoms));
f << number_of_atoms << " ";
name = atom_it->getName();
name.trim();
if (name == "")
{
// replace empty names by "****"
name = "****";
}
f << name << " "
<< atom_it->getPosition().x << " "
<< atom_it->getPosition().y << " "
<< atom_it->getPosition().z << " ";
name = getSybylType_(*atom_it);
name.trim();
if (name == "")
{
// replace empty type names by "****"
name = "****";
}
f << name << " ";
// if the atom has a substructure, retrieve its name and ID
const AtomContainer* frag = dynamic_cast<const AtomContainer*>(atom_it->getParent());
if ((frag != 0) && substructure_map.has(frag))
{
f << substructure_map[frag] << " " << substructure_name[substructure_map[frag]] << " ";
}
else
{
// write empty substructure ID and name
f << "1 **** ";
}
// write the charge
f << atom_it->getCharge() << endl;
}
// done with the atom section.
// write the bonds
if (number_of_bonds > 0)
{
f << TRIPOS << "BOND" << endl;
number_of_bonds = 0;
BALL_FOREACH_BOND(new_molecule, atom_it, bond_it)
{
number_of_bonds++;
// check whether both atoms were written
if (atom_map.has(bond_it->getFirstAtom()) && atom_map.has(bond_it->getSecondAtom()))
{
f << number_of_bonds << " " << atom_map[bond_it->getFirstAtom()]
<< " " << atom_map[bond_it->getSecondAtom()] << " ";
// determine the bond type
switch (bond_it->getOrder())
{
case Bond::ORDER__AROMATIC: f << "ar" << endl; break;
case Bond::ORDER__DOUBLE: f << "2" << endl; break;
case Bond::ORDER__TRIPLE: f << "3" << endl; break;
case Bond::ORDER__QUADRUPLE: f << "4" << endl; break;
case Bond::ORDER__UNKNOWN:
case Bond::ORDER__SINGLE: f << "1" << endl;
}
}
else
{
// emit a warning
Log.warn() << "MOL2File::write: could not write bond from "
<< bond_it->getFirstAtom()->getFullName()
<< " to " << bond_it->getSecondAtom()->getFullName()
<< " - not in system!" << endl;
}
}
}
// write the substructure section
// iterate over all substructures and write the substructure parts
//
for (Position i = 0; i < substructure_pointers.size(); i++)
{
f << TRIPOS << "SUBSTRUCTURE" << endl
<< i + 1 << " "
<< substructure_name[i] << " ";
Position root_atom = atom_map[&*(substructure_pointers[i]->beginAtom())];
f << root_atom;
if (RTTI::isKindOf<Residue>(substructure_pointers[i]))
{
f << " RESIDUE";
}
f << endl;
}
// if we have sets, we should write them
if (!sets_.empty())
{
for (Position i=0; i<sets_.size(); i++)
{
SetStruct& set = sets_[i];
String type = set.is_static ? " STATIC " : " DYNAMIC ";
f << TRIPOS << "SET" << endl
<< set.name << type << set.obj_type << " "
<< set.sub_type << " " << set.status << " "
<< set.comment << endl;
// is this a static set?
if (set.is_static)
{
f << set.number_of_members;
for (Position j=0; j<set.number_of_members; j++)
f << " " << set.static_members[j];
}
else
{
f << set.dynamic_rule;
}
f << endl;
}
}
Size no_properties=new_molecule.countNamedProperties();
if(no_properties>0)
{
f << TRIPOS << "COMMENT"<<endl;
for (Position i=0; i<no_properties; i++)
{
const NamedProperty& np(new_molecule.getNamedProperty(i));
f << np.getName() << "=" << np.toString() << endl;
}
}
f << endl;
// done with writing.
return true;
}
bool MOL2File::read(System& system)
{
// remove old rubbish from the system
system.destroy();
// reset the contents of the members
clear_();
// remember the line number for error messages
number_of_lines_ = 0;
Molecule* mol;
while((mol=read()))
{
system.insert(*mol);
// Make sure not to call read() again after reading the last molecule of the file.
// This way, correct information about TRIPOS-Sets of the last molecule can be obtained later (otherwise this information would be deleted).
if(!found_next_header_) break;
}
String name = getName(); // set system-name to file-name
size_t pos = name.find_last_of('/');
if((pos != string::npos) && (name.size() > pos))
{
name = name.substr(pos+1);
}
system.setName(name);
return true;
}
Molecule* MOL2File::read()
{
//reset the contents of the members
clear_();
int mol_ID=0;
while (found_next_header_ || readLine())
{
getLine().toUpper();
getLine().trim();
if (getLine().hasPrefix("#")) continue;
while (startsWith(TRIPOS))
{
// we found a "Record Type Identifier" (RTI)
String RTI = getLine().after(TRIPOS);
RTI.trim();
// interpret the RTI (at least the known ones)
if (RTI == "ATOM")
{
readAtomSection_();
}
else if (RTI == "BOND")
{
readBondSection_();
}
else if (RTI == "MOLECULE")
{
// We have found the beginning of a new molecule !
if(mol_ID>0)
{
Molecule* mol = new Molecule;
bool ok = buildAll_(*mol);
if(!ok)
{
delete mol;
return NULL;
}
found_next_header_ = true;
return mol;
}
found_next_header_=false;
readMoleculeSection_();
mol_ID++;
}
else if (RTI == "SET")
{
readSetSection_();
}
else if (RTI == "SUBSTRUCTURE")
{
readSubstructureSection_();
}
else if (RTI == "COMMENT")
{
readCommentSection_();
}
else
{
// we found an unknown MOL2 section: print a warning message and ignore it!
Log.warn() << "MOL2File::read: section ignored in line "
<< number_of_lines_ << ": " << RTI << endl;
readLine();
}
getLine().toUpper();
}
}
// interpret the section we already read from the file
Molecule* mol;
if(molecule_.type=="PROTEIN") mol = new Protein;
else mol = new Molecule;
bool ok = buildAll_(*mol);
if(!ok)
{
delete mol;
return NULL;
}
return mol;
}
bool MOL2File::write(const System& system)
{
for (MoleculeConstIterator mol_it=system.beginMolecule(); +mol_it; mol_it++)
{
if(!write(*mol_it))
{
return false;
}
}
return true;
}
void MOL2File::readAtomSection_()
{
Size number_of_fields = 1;
while (readLine() && (number_of_fields > 0) && !getLine().hasPrefix(TRIPOS))
{
getLine().trim();
if (getLine().hasPrefix("#")) continue;
Size number_of_fields = getLine().countFields();
if (number_of_fields > 0)
{
if (number_of_fields < 6)
{
throw(Exception::ParseError(__FILE__, __LINE__, getLine(), String("MOL2File::readAtomSection_: too few fields for an atom entry in line ") + String(getLineNumber())));
}
else
{
// split the line into fields
String fields[10];
getLine().split(fields, 10);
// create an atom and assign the fields of the line
AtomStruct atom;
atom.name = fields[1];
atom.position.x = fields[2].toFloat();
atom.position.y = fields[3].toFloat();
atom.position.z = fields[4].toFloat();
atom.type = fields[5];
atom.substructure = fields[6].toUnsignedInt();
atom.substructure_name = fields[7];
atom.charge = fields[8].toFloat();
// remember this atom
atoms_.push_back(atom);
}
}
}
}
void MOL2File::readBondSection_()
{
Size number_of_fields = 1;
while (readLine() && (number_of_fields > 0) && !getLine().hasPrefix(TRIPOS))
{
getLine().trim();
if (getLine().hasPrefix("#")) continue;
Size number_of_fields = getLine().countFields();
if (number_of_fields > 0)
{
if (number_of_fields < 4)
{
Log.error() << "MOL2File::readBondSection_: too few fields for a bond entry in line "
<< number_of_lines_ << endl;
}
else
{
// split the line into fields
String fields[4];
getLine().split(fields, 4);
// create an atom and assign the fields of the line
BondStruct bond;
bond.atom1 = fields[1].toUnsignedInt();
bond.atom2 = fields[2].toUnsignedInt();
bond.type = fields[3];
// remember this bond
bonds_.push_back(bond);
}
}
}
}
// TODO: handle backslash at end of line correctly!
void MOL2File::readSetSection_()
{
Size number_of_fields = 1;
while (readLine() && (number_of_fields > 0) && !getLine().hasPrefix(TRIPOS))
{
if (getLine().hasPrefix("#")) continue;
getLine().trim();
Size number_of_fields = getLine().countFields();
if (number_of_fields > 0)
{
if (number_of_fields < 3)
{
Log.error() << "MOL2File::readSetSection_: too few fields for a set entry in line "
<< number_of_lines_ << endl;
}
else
{
// split the line into fields
std::vector<String> fields;
getLine().split(fields);
// create an atom and assign the fields of the line
SetStruct set;
set.name = fields[0];
String type = fields[1];
type.toUpper();
set.is_static = (type == "STATIC");
set.obj_type = fields[2];
if (number_of_fields > 3)
set.sub_type = fields[3];
if (number_of_fields > 4)
set.status = fields[4];
// all remaining parts of the line were comments
for (Size i=5; i<number_of_fields; i++)
{
set.comment+=fields[i]+" ";
}
if (set.is_static)
{
readLine();
getLine().trim();
Size number_of_fields = getLine().countFields();
set.number_of_members = getLine().getField(0).toInt();
Size read_members = 0;
for (Size i = 1; (read_members < set.number_of_members) && (i < number_of_fields); i++)
{
//If we read a '\' then we need to continue reading in the next line
if(getLine().getField(i) == "\\")
{
readLine();
i = 0;
number_of_fields = getLine().countFields();
}
set.static_members.push_back(getLine().getField(i).toInt());
++read_members;
}
if (set.number_of_members != read_members)
{
Log.warn() << "Warning: inconsistent set definition in MOL2File! Ignoring the set!" << std::endl;
set.static_members.clear();
}
}
else
{
// we just read the rule without interpreting it
readLine();
set.dynamic_rule = getLine();
}
// remember this set
sets_.push_back(set);
}
}
}
}
void MOL2File::readMoleculeSection_()
{
Size number_of_fields = 1;
Size line_number = 0;
while (readLine() && !getLine().hasPrefix(TRIPOS) && (line_number <= 5))
{
getLine().trim();
if (getLine().hasPrefix("#")) continue;
// read four lines
line_number++;
number_of_fields = getLine().countFields();
switch (line_number)
{
case 1:
// read the first line: the molecule name (->BALL system name)
molecule_.name = getLine().trim();
if (molecule_.name == "****")
{
molecule_.name = "";
}
break;
case 2:
if(number_of_fields==0)
{
throw Exception::ParseError(__FILE__, __LINE__, "", "Invalid molecule header! Line 2 of molecule header is empty but it should contain the number of atoms and bonds!");
}
// read the number of atoms, bonds, and substructures
molecule_.number_of_atoms = getLine().getField(0).toUnsignedInt();
if (number_of_fields > 1)
{
molecule_.number_of_bonds = getLine().getField(1).toUnsignedInt();
}
if (number_of_fields > 2)
{
molecule_.number_of_substructures = getLine().getField(2).toUnsignedInt();
}
else // we always need at least one substructure
{
molecule_.number_of_substructures = 1;
}
if (number_of_fields > 3)
{
molecule_.number_of_features = getLine().getField(3).toUnsignedInt();
}
if (number_of_fields > 4)
{
molecule_.number_of_sets = getLine().getField(4).toUnsignedInt();
}
break;
case 3:
if(number_of_fields==0)
{
throw Exception::ParseError(__FILE__, __LINE__, "", "Invalid molecule header! Line 3 of molecule header is empty but it should contain information about the molecule type!");
}
molecule_.type = getLine().getField(0);
case 4:
case 5:
// ignore lines 4 and 5
;
}
}
}
void MOL2File::readSubstructureSection_()
{
while (readLine() && (getLine().countFields() > 0) && !getLine().hasPrefix(TRIPOS))
{
getLine().trim();
if (getLine().hasPrefix("#")) continue;
SubstructureStruct sub;
Size number_of_fields = getLine().countFields();
sub.name = getLine().getField(1);
sub.root_atom = getLine().getField(2).toUnsignedInt();
if (number_of_fields > 3)
{
sub.substructure_type = getLine().getField(3);
}
if (number_of_fields > 4)
{
String dictionary_type = getLine().getField(4);
if (dictionary_type == "****")
{
sub.dictionary_type = 0;
}
else
{
try
{
sub.dictionary_type = getLine().getField(4).toUnsignedInt();
}
catch (Exception::InvalidFormat& e)
{
sub.dictionary_type = 0;
Log.warn() << "MOL2File::read: error in field 5 of line "
<< getLineNumber() << " of " << getName() << ": " << e << endl;
}
}
}
if (number_of_fields > 5)
{
sub.chain = getLine().getField(5);
}
if (number_of_fields > 6)
{
sub.sub_type = getLine().getField(6);
}
if (number_of_fields > 7)
{
try
{
sub.inter_bonds = getLine().getField(7).toUnsignedInt();
}
catch (Exception::InvalidFormat& e)
{
sub.inter_bonds = 0;
Log.warn() << "MOL2File::read: error in field 8 of line "
<< getLineNumber() << " of " << getName() << ": " << e << endl;
}
}
for (Position i = 8; i < number_of_fields; i++)
{
sub.comment += getLine().getField(i) + " ";
}
sub.comment.trimRight();
substructures_.push_back(sub);
}
}
void MOL2File::readCommentSection_()
{
while (readLine() && (getLine().countFields() > 0) && !getLine().hasPrefix(TRIPOS))
{
if(getLine().has('='))
{
CommentStruct comment;
comment.name = ((String)getLine().before('=')).trim();
comment.value = ((String)getLine().after('=')).trim();
comments_.push_back(comment);
}
}
}
void MOL2File::clear_()
{
// clear the structure for the molecule section
molecule_.name = "";
molecule_.number_of_atoms = 0;
molecule_.number_of_bonds = 0;
molecule_.number_of_substructures = 0;
molecule_.number_of_features = 0;
molecule_.number_of_sets = 0;
// clear the vectors for the other sections
atoms_.clear();
bonds_.clear();
substructures_.clear();
comments_.clear();
sets_.clear();
}
bool MOL2File::buildAll_(Molecule& molecule)
{
// consistency check
if (atoms_.size() != molecule_.number_of_atoms)
{
Log.error() << "MOL2File::read: number of atoms in the MOLECULE section ("
<< molecule_.number_of_atoms << ")"
<< " is not consistent with the contents of the ATOM section ("
<< atoms_.size() << " atoms)!" << endl;
return false;
}
if (bonds_.size() != molecule_.number_of_bonds)
{
Log.error() << "MOL2File::read: number of bonds in the MOLECULE section ("
<< molecule_.number_of_bonds << ")"
<< " is not consistent with the contents of the BOND section ("
<< bonds_.size() << " bonds)!" << endl;
return false;
}
if (substructures_.size() != molecule_.number_of_substructures)
{
Log.error() << "MOL2File::read: number of substructures in the MOLECULE section ("
<< molecule_.number_of_substructures << ")"
<< " is not consistent with the contents of the SUBSTRUCTURE section ("
<< substructures_.size() << " substructures)!" << endl;
return false;
}
// if we read anything meaningful at all, store in this flag
bool read_anything = false;
// construct the substructures (if any)
vector<AtomContainer*> sub_ptr(substructures_.size());
Position i;
for (i = 0; i < substructures_.size(); i++)
{
AtomContainer* frag = 0;
if (substructures_[i].substructure_type == "RESIDUE")
{
read_anything = true;
Residue* residue= new Residue;
frag = static_cast<AtomContainer*>(residue);
// Sybyl stores the residue (PDB) ID in the
// residue name (e.g. ALA175)
RegularExpression re("[0-9][0-9A-Z]*$");
Substring ID;
if (re.find(substructures_[i].name, ID))
{
try
{
// assign the ID to the residue
residue->setID(ID.toString());
// and remove it from the fragment name
ID = "";
}
catch (Exception::GeneralException& e)
{
Log.warn() << "MOL2File::read: error in line " << getLineNumber() << ": " << e << endl;
}
}
}
else
{
// create a fragment
frag = static_cast<AtomContainer*>(new Fragment);
}
// set the fragment name
if (frag != 0)
{
frag->setName(substructures_[i].name);
}
// store the pointer to this substructure
sub_ptr[i] = frag;
}
// construct the atoms
vector<Atom*> atom_ptr(atoms_.size());
for (i = 0; i < atoms_.size(); i++)
{
read_anything = true;
// create a new atom and assign its attributes
Atom* atom = new Atom;
atom->setName(atoms_[i].name);
atom->setPosition(atoms_[i].position);
atom->setTypeName(atoms_[i].type);
atom->setCharge(atoms_[i].charge);
// Try to assign the element. MOL2 format
// usually has type names like O.2 or C.ar, so
// we use the portion before the dot or the complete
// name if there's no dot in the name. PTE will translate
// it to the correct element or Element::UNKNOWN otherwise.
if (atoms_[i].type.has('.'))
{
atom->setElement(PTE[atoms_[i].type.before(".")]);
}
else
{
atom->setElement(PTE[atoms_[i].type]);
}
// store the atom pointer for bond construction
atom_ptr[i] = atom;
}
// construct the bonds
for (i = 0; i < bonds_.size(); i++)
{
if ((bonds_[i].atom1 > atom_ptr.size()) || (bonds_[i].atom2 > atom_ptr.size()))
{
Log.error() << "MOL2File::read: cannot build bond between atoms "
<< bonds_[i].atom1 << " and " << bonds_[i].atom2 << endl;
}
else
{
Bond* bond = atom_ptr[bonds_[i].atom1 - 1]->createBond(*atom_ptr[bonds_[i].atom2 - 1]);
if (bonds_[i].type == "ar")
{
bond->setOrder(Bond::ORDER__AROMATIC);
}
else if (bonds_[i].type == "am")
{
// for now we translate the amide bond (am) as a single bond
bond->setOrder(Bond::ORDER__SINGLE);
}
else if (bonds_[i].type == "1")
{
bond->setOrder(Bond::ORDER__SINGLE);
}
else if (bonds_[i].type == "2")
{
bond->setOrder(Bond::ORDER__DOUBLE);
}
else if (bonds_[i].type == "3")
{
bond->setOrder(Bond::ORDER__TRIPLE);
}
else
{
Log.error() << "MOL2File::read: unknown bond type " << bonds_[i].type << endl;
}
}
}
// if there are no substructures, insert the atoms
// into the molecule
if (substructures_.empty())
{
for (i = 0; i < atom_ptr.size(); i++)
{
molecule.insert(*atom_ptr[i]);
}
}
else
{
// Otherwise, insert all atoms into their proper substructures.
// make sure that no substructures with id 0 occur. these would lead to a memory leak later, since we
// rely on MOL2 starting with substructure id 1 (see bug #48)
// we need an extra loop that cannot be merged with the following one, since all ids must be adapted
// if we find a single zero
bool fix_ids = false;
for (i = 0; i < atoms_.size(); i++)
{
if (atoms_[i].substructure == 0)
{
fix_ids = true;
break;
}
}
for (i = 0; i < atoms_.size(); i++)
{
// MOL2 starts counting at 1, we start at zero, ergo: > instead of >=.
if (atoms_[i].substructure > sub_ptr.size())
{
throw Exception::ParseError(__FILE__, __LINE__, String(atoms_[i].substructure_name), "Could not insert atoms into substructure with illegal index.");
}
else
{
if (!fix_ids)
sub_ptr[atoms_[i].substructure - 1]->insert(*atom_ptr[i]);
else
sub_ptr[atoms_[i].substructure]->insert(*atom_ptr[i]);
}
}
// Finally, insert all substructures into the system.
for (i = 0; i < sub_ptr.size(); i++)
{
molecule.insert(*sub_ptr[i]);
}
}
// create NamedProperties (if any)
for (Position i=0; i<comments_.size(); i++)
{
molecule.setProperty(comments_[i].name, comments_[i].value);
}
molecule.setName(molecule_.name);
return read_anything;
}
String MOL2File::getSybylType_(const Atom& atom) const
{
String type = atom.getProperty("atomtype").getString();
// MOL2File needs something in the format of <element>.<number>
// in order to be able to read files correctly!
// Thus, use only element as atom 'type' if no Sybyl type was found for it.
if(type=="DU")
{
type = atom.getElement().getSymbol();
}
return type;
}
bool MOL2File::containsAtomChilds_(AtomContainerConstIterator& frag_it)
{
// iterate over the children of this atom container
AtomContainer::ChildCompositeConstIterator children_it;
for (children_it = frag_it->beginChildComposite(); +children_it; ++children_it)
{
if (RTTI::isKindOf<Atom>(&*children_it))
return true;
}
return false;
}
const MOL2File& MOL2File::operator = (const MOL2File& file)
{
atoms_ = file.atoms_;
bonds_ = file.bonds_;
sets_ = file.sets_;
substructures_ = file.substructures_;
molecule_ = file.molecule_;
number_of_lines_ = file.number_of_lines_;
for (int i=0; i<4096; i++)
{
buffer_[i] = file.buffer_[i];
}
line_ = file.line_;
GenericMolFile::operator = (file);
return *this;
}
} // namespace BALL
|