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 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
|
/*
* Molecular file formats export
*
* (c) 2016 Schrodinger, Inc.
*/
#include <vector>
#include <map>
#include <algorithm>
#include <cstdarg>
#include "os_std.h"
#include "MoleculeExporter.h"
#include "Selector.h"
#include "SelectorDef.h"
#include "Executive.h"
#include "Vector.h"
#include "ObjectMolecule.h"
#include "CoordSet.h"
#include "Mol2Typing.h"
#include "MmodTyping.h"
#include "Color.h"
#include "Util.h"
#include "Lex.h"
#include "P.h"
#include "PConv.h"
#include "CifDataValueFormatter.h"
#ifdef _PYMOL_IP_EXTRAS
#include "Property.h"
#endif
#ifdef _PYMOL_NO_CXX11
#define emplace_back push_back
#endif
/*
* Get the capitalized element symbol. Assume that ai->elem is either all
* caps (e.g. loaded from PDB) or capitalized.
*/
class ElemCanonicalizer {
ElemName m_buffer;
public:
const char * operator() (const AtomInfoType * ai) {
const char * elem = ai->elem;
if (ai->protons < 1 || !elem[0] || !elem[1] || islower(elem[1]))
return elem;
m_buffer[0] = elem[0];
UtilNCopyToLower(m_buffer + 1, elem + 1, sizeof(ElemName) - 1);
return m_buffer;
}
};
/*
* "sprintf" into VLA string buffer. Will grow (and reallocate) the VLA if
* needed.
*
* Returns the number of characters written (excluding the null byte).
*/
static
int VLAprintf(char *&vla, int offset, const char * format, ...) {
int n, size = VLAGetSize(vla) - offset;
va_list ap;
va_start(ap, format);
n = vsnprintf(vla + offset, std::max(0, size), format, ap);
va_end(ap);
#ifdef WIN32
// Windows API: If len > count, then count characters are stored in buffer,
// no null-terminator is appended, and a negative value is returned.
if (n < 0) {
va_start(ap, format);
n = _vscprintf(format, ap);
va_end(ap);
}
#endif
// C99 standard: a return value of size or more means that the output was
// truncated (glibc since 2.1; not on Windows)
if (n >= size) {
VLACheck(vla, char, offset + n);
va_start(ap, format);
vsprintf(vla + offset, format, ap);
va_end(ap);
}
return n;
}
// for "multisave" behavior
enum {
cMolExportGlobal = 0,
cMolExportByObject = 1,
cMolExportByCoordSet = 2,
};
// for re-indexed bonds
struct BondRef {
BondType * ref;
int id1, id2;
};
// for re-indexed atoms
struct AtomRef {
AtomInfoType * ref;
float coord[3];
int id;
};
/*
* Abstract base class for exporting molecular selections
*/
struct MoleculeExporter {
char* m_buffer = NULL; // out
int m_offset = 0;
protected:
CoordSet * m_last_cs = NULL;
ObjectMolecule * m_last_obj = NULL;
int m_last_state = -1;
PyMOLGlobals * G = NULL;
SeleCoordIterator m_iter;
bool m_retain_ids = false;
int m_id = 0;
struct matrix_t {
double storage[16];
const double * ptr;
} m_mat_ref, // inverse of reference object transformation
m_mat_full, // for ANISOU
m_mat_move; // for coordinates (TTT)
// atom coordinate
private:
float m_coord_tmp[3];
protected:
const float *m_coord;
// how to restart models
int m_multi;
std::vector<BondRef> m_bonds;
std::vector<int> m_tmpids;
public:
// quasi constructor (easier to inherit than a real constructor)
virtual void init(PyMOLGlobals * G_) {
G = G_;
m_buffer = VLAlloc(char, 1280);
m_buffer[0] = '\0';
setMulti(getMultiDefault());
}
// destructor
virtual ~MoleculeExporter() {
VLAFreeP(m_buffer);
}
/*
* Do the export (e.g. populate "m_buffer" with file contents)
*/
void execute(int sele, int state);
/*
* how to handle selections which span multiple objects
*/
void setMulti(int multi) {
if (multi != -1)
m_multi = multi;
}
private:
/*
* Reset the "index" fields in the selector table
*/
void resetTmpIDs() {
m_tmpids.resize(m_iter.obj->NAtom, 0);
std::fill(m_tmpids.begin(), m_tmpids.end(), 0);
}
protected:
/*
* Get the current atom's running index (1-based). Most formats use
* this index to reference atoms from the bonds table. If "retain_ids"
* is true, then this is AtomInfoType::id.
*/
int getTmpID() {
return m_tmpids[m_iter.getAtm()];
}
/*
* Get the running index for the given atom.
*/
int getTmpID(int atm) {
return m_tmpids[atm];
}
/*
* Get the current state title if not empty, or the object name otherwise.
*/
const char * getTitleOrName() {
return m_iter.cs->Name[0] ? m_iter.cs->Name : m_iter.obj->Obj.Name;
}
public:
/*
* Set the reference coordinate frame to the inverse of the given
* object's transformation matrix.
*/
void setRefObject(const char * ref_object, int ref_state);
private:
/*
* Update a transformation matrix for the current state
*/
void updateMatrix(matrix_t& matrix, bool history);
/*
* Populates the "m_bonds" vector
*/
void populateBondRefs();
protected:
// functions to be implemented by derived classes
virtual int getMultiDefault() const = 0;
virtual bool isExcludedBond(int atm1, int atm2);
virtual void writeAtom() = 0;
virtual void writeBonds() = 0;
virtual void beginObject();
virtual void beginCoordSet();
virtual void endObject();
virtual void endCoordSet();
virtual void beginMolecule() {}
virtual void beginFile() {}
};
/*
* Return true if this bond should not be exported
*/
bool MoleculeExporter::isExcludedBond(int atm1, int atm2) {
return false;
}
void MoleculeExporter::beginObject() {
if (m_multi != cMolExportByCoordSet) {
resetTmpIDs();
}
if (m_multi == cMolExportByObject) {
beginMolecule();
}
}
void MoleculeExporter::beginCoordSet() {
if (m_multi == cMolExportByCoordSet) {
resetTmpIDs();
beginMolecule();
}
}
void MoleculeExporter::endObject() {
if (m_multi != cMolExportByCoordSet) {
populateBondRefs();
}
if (m_multi == cMolExportByObject) {
writeBonds();
m_id = 0;
}
}
void MoleculeExporter::endCoordSet() {
if (m_multi == cMolExportByCoordSet) {
populateBondRefs();
writeBonds();
m_id = 0;
}
}
void MoleculeExporter::execute(int sele, int state) {
m_iter.init(G, sele, state);
m_iter.setPerObject(m_multi != cMolExportGlobal);
beginFile();
while (m_iter.next()) {
if (m_last_cs != m_iter.cs) {
if (m_last_cs) {
endCoordSet();
} else if (m_multi == cMolExportGlobal) {
beginMolecule();
}
if (m_last_obj != m_iter.obj) {
if (m_last_obj)
endObject();
beginObject();
m_last_obj = m_iter.obj;
}
// update transformation matrices
updateMatrix(m_mat_full, true);
updateMatrix(m_mat_move, false);
beginCoordSet();
m_last_cs = m_iter.cs;
}
// for bonds
if (!m_tmpids[m_iter.getAtm()]) {
m_id = m_retain_ids ? m_iter.getAtomInfo()->id : (m_id + 1);
m_tmpids[m_iter.getAtm()] = m_id;
}
// atom coordinate
m_coord = m_iter.getCoord();
if (m_mat_move.ptr) {
transform44d3f(m_mat_move.ptr, m_coord, m_coord_tmp);
m_coord = m_coord_tmp;
}
writeAtom();
}
if (m_last_cs)
endCoordSet();
if (m_last_obj)
endObject();
if (m_multi == cMolExportGlobal) {
writeBonds();
}
}
void MoleculeExporter::setRefObject(const char * ref_object, int ref_state) {
double matrix[16];
m_mat_ref.ptr = NULL;
if (!ref_object || !ref_object[0])
return;
auto base = ExecutiveFindObjectByName(G, ref_object);
if (!base)
return;
if(ref_state < 0) {
ref_state = ObjectGetCurrentState(base, true);
}
if(ObjectGetTotalMatrix(base, ref_state, true, matrix)) {
invert_special44d44d(matrix, m_mat_ref.storage);
m_mat_ref.ptr = m_mat_ref.storage;
}
}
void MoleculeExporter::updateMatrix(matrix_t& matrix, bool history) {
const auto& ref = m_mat_ref.ptr;
if (ObjectGetTotalMatrix(reinterpret_cast<CObject*>(m_iter.obj),
m_iter.state, history, matrix.storage)) {
if (ref) {
left_multiply44d44d(ref, matrix.storage);
}
matrix.ptr = matrix.storage;
} else {
matrix.ptr = ref;
}
}
void MoleculeExporter::populateBondRefs() {
auto& obj = m_last_obj;
int id1, id2;
for (auto bond = obj->Bond, bond_end = obj->Bond + obj->NBond;
bond != bond_end; ++bond) {
auto atm1 = bond->index[0];
auto atm2 = bond->index[1];
if (!(id1 = getTmpID(atm1)) ||
!(id2 = getTmpID(atm2)))
continue;
if (isExcludedBond(atm1, atm2))
continue;
if (id1 > id2)
std::swap(id1, id2);
// emit bond
m_bonds.emplace_back(BondRef { bond, id1, id2 });
}
}
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterPDB : public MoleculeExporter {
bool m_conect_all = false;
bool m_conect_nodup = false;
bool m_mdl_written = false;
PDBInfoRec m_pdb_info;
// quasi constructor
void init(PyMOLGlobals * G_) {
MoleculeExporter::init(G_);
UtilZeroMem((void *) &m_pdb_info, sizeof(PDBInfoRec));
m_conect_nodup = SettingGetGlobal_b(G, cSetting_pdb_conect_nodup);
m_retain_ids = SettingGetGlobal_b(G, cSetting_pdb_retain_ids);
}
int getMultiDefault() const {
// single entry format by default, but we also support writing multiple
// entries by writing a HEADER record for every object (1) or state (2)
return cMolExportGlobal;
}
void writeENDMDL() {
if (m_mdl_written) {
m_offset += VLAprintf(m_buffer, m_offset, "ENDMDL\n");
m_mdl_written = false;
}
}
void writeEND() {
if (!SettingGetGlobal_b(G, cSetting_pdb_no_end_record)) {
m_offset += VLAprintf(m_buffer, m_offset, "END\n");
}
}
void writeAtom() {
CoordSetAtomToPDBStrVLA(G, &m_buffer, &m_offset, m_iter.getAtomInfo(),
m_coord, getTmpID() - 1, &m_pdb_info, m_mat_full.ptr);
}
void writeBonds() {
writeENDMDL();
std::map<int, std::vector<int>> conect;
for (auto& bond : m_bonds) {
int order = m_conect_nodup ? 1 : bond.ref->order;
for (int i = 0; i < 2; ++i) {
for (int d = 0; d < order; ++d) {
conect[bond.id1].push_back(bond.id2);
}
std::swap(bond.id1, bond.id2);
}
}
m_bonds.clear();
for (auto& rec : conect) {
for (int i = 0, i_end = rec.second.size(); i != i_end;) {
m_offset += VLAprintf(m_buffer, m_offset, "CONECT%5d", rec.first);
// up to 4 bonds per record
for (int j = std::min(i + 4, i_end); i != j; ++i) {
m_offset += VLAprintf(m_buffer, m_offset, "%5d", rec.second[i]);
}
m_offset += VLAprintf(m_buffer, m_offset, "\n");
}
}
writeEND();
}
void writeCryst1() {
const auto& sym = m_iter.cs->Symmetry ? m_iter.cs->Symmetry : m_iter.obj->Symmetry;
if (sym && sym->Crystal) {
const auto& dim = sym->Crystal->Dim;
const auto& angle = sym->Crystal->Angle;
m_offset += VLAprintf(m_buffer, m_offset,
"CRYST1%9.3f%9.3f%9.3f%7.2f%7.2f%7.2f %-11s%4d\n",
dim[0], dim[1], dim[2], angle[0], angle[1], angle[2],
sym->SpaceGroup, sym->PDBZValue);
}
}
void beginObject() {
MoleculeExporter::beginObject();
m_conect_all = SettingGet_b(G, m_iter.obj->Obj.Setting, NULL, cSetting_pdb_conect_all);
if (m_multi == cMolExportByObject) {
m_offset += VLAprintf(m_buffer, m_offset, "HEADER %.40s\n", m_iter.obj->Obj.Name);
writeCryst1();
}
}
void beginCoordSet() {
MoleculeExporter::beginCoordSet();
if (m_multi == cMolExportByCoordSet) {
m_offset += VLAprintf(m_buffer, m_offset, "HEADER %.40s\n", getTitleOrName());
writeCryst1();
}
if (m_iter.isMultistate()
&& (m_iter.isPerObject() || m_iter.state != m_last_state)) {
m_offset += VLAprintf(m_buffer, m_offset, "MODEL %4d\n", m_iter.state + 1);
m_last_state = m_iter.state;
m_mdl_written = true;
}
}
void endCoordSet() {
MoleculeExporter::endCoordSet();
if (m_iter.isPerObject() || m_iter.state != m_last_state) {
writeENDMDL();
}
}
bool isExcludedBond(int atm1, int atm2) {
const auto& atInfo = m_last_obj->AtomInfo;
return !(m_conect_all || atInfo[atm1].hetatm || atInfo[atm2].hetatm);
}
};
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterPQR: public MoleculeExporterPDB {
// quasi constructor
void init(PyMOLGlobals * G_) {
MoleculeExporterPDB::init(G_);
m_pdb_info.variant = PDB_VARIANT_PQR;
m_pdb_info.pqr_workarounds = SettingGetGlobal_b(G, cSetting_pqr_workarounds);
}
bool isExcludedBond(int atm1, int atm2) {
// no bonds for PQR format
return true;
}
};
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterCIF : public MoleculeExporter {
const char * m_molecule_name;
CifDataValueFormatter cifrepr;
// quasi constructor
void init(PyMOLGlobals * G_) {
MoleculeExporter::init(G_);
// The formatter uses a circular buffer of the given size. The size
// must be at least equal to the maximum number of invocations of `cifrepr`
// in any member function (count two for each call with type `char`).
cifrepr.m_buf.resize(10);
m_retain_ids = SettingGetGlobal_b(G, cSetting_pdb_retain_ids);
m_molecule_name = "multi";
m_offset += VLAprintf(m_buffer, m_offset,
"# generated by PyMOL " _PyMOL_VERSION "\n");
}
int getMultiDefault() const {
return cMolExportByObject;
}
void writeCellSymmetry() {
const auto& sym = m_iter.cs->Symmetry ? m_iter.cs->Symmetry : m_iter.obj->Symmetry;
if (sym && sym->Crystal) {
const auto& dim = sym->Crystal->Dim;
const auto& angle = sym->Crystal->Angle;
m_offset += VLAprintf(m_buffer, m_offset, "#\n"
"_cell.entry_id %s\n"
"_cell.length_a %.3f\n"
"_cell.length_b %.3f\n"
"_cell.length_c %.3f\n"
"_cell.angle_alpha %.2f\n"
"_cell.angle_beta %.2f\n"
"_cell.angle_gamma %.2f\n"
"_symmetry.entry_id %s\n"
"_symmetry.space_group_name_H-M %s\n",
cifrepr(m_molecule_name),
dim[0], dim[1], dim[2], angle[0], angle[1], angle[2],
cifrepr(m_molecule_name),
cifrepr(sym->SpaceGroup));
}
}
void beginMolecule() {
MoleculeExporter::beginMolecule();
switch (m_multi) {
case cMolExportByObject: m_molecule_name = m_iter.obj->Obj.Name; break;
case cMolExportByCoordSet: m_molecule_name = getTitleOrName(); break;
}
// data header
m_offset += VLAprintf(m_buffer, m_offset, "#\n"
"data_%s\n_entry.id %s\n", m_molecule_name,
cifrepr(m_molecule_name));
// symmetry
writeCellSymmetry();
// atom table header
m_offset += VLAprintf(m_buffer, m_offset, "#\n"
"loop_\n"
"_atom_site.group_PDB\n"
"_atom_site.id\n"
"_atom_site.type_symbol\n"
"_atom_site.label_atom_id\n"
"_atom_site.label_alt_id\n"
"_atom_site.label_comp_id\n"
"_atom_site.label_asym_id\n"
"_atom_site.label_entity_id\n"
"_atom_site.label_seq_id\n"
"_atom_site.pdbx_PDB_ins_code\n"
"_atom_site.Cartn_x\n"
"_atom_site.Cartn_y\n"
"_atom_site.Cartn_z\n"
"_atom_site.occupancy\n"
"_atom_site.B_iso_or_equiv\n"
"_atom_site.pdbx_formal_charge\n"
"_atom_site.auth_asym_id\n"
"_atom_site.pdbx_PDB_model_num\n");
}
void writeAtom() {
const AtomInfoType * ai = m_iter.getAtomInfo();
const char * entity_id = NULL;
#ifdef _PYMOL_IP_EXTRAS
char entity_id_buf[16];
if (ai->prop_id) {
entity_id = PropertyGetAsString(G, ai->prop_id, "entity_id", entity_id_buf);
}
#endif
if (!entity_id) {
entity_id = LexStr(G, ai->custom);
}
m_offset += VLAprintf(m_buffer, m_offset,
"%-6s %-3d %s %-3s " // type .. name
"%s %-3s %s %s " // alt .. entity_id
"%d %s %6.3f %6.3f %6.3f " // resv .. z
"%4.2f %6.2f %d %s %d\n", // q .. state
ai->hetatm ? "HETATM" : "ATOM",
getTmpID(),
cifrepr(ai->elem),
cifrepr(LexStr(G, ai->name)),
cifrepr(ai->alt),
cifrepr(LexStr(G, ai->resn)),
cifrepr(LexStr(G, ai->segi)),
cifrepr(entity_id),
ai->resv,
cifrepr(ai->inscode, "?"),
m_coord[0], m_coord[1], m_coord[2],
ai->q, ai->b, ai->formalCharge,
cifrepr(LexStr(G, ai->chain)),
m_iter.state + 1);
}
void writeBonds() {
// TODO
m_bonds.clear();
}
bool isExcludedBond(int atm1, int atm2) {
// TODO
return true;
}
};
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterMOL : public MoleculeExporter {
int m_chiral_flag;
std::vector<AtomRef> m_atoms;
ElemCanonicalizer elemGetter;
int getMultiDefault() const {
// single entry format
return cMolExportGlobal;
}
void writeAtom() {
const auto ai = m_iter.getAtomInfo();
if (ai->stereo)
m_chiral_flag = 1;
m_atoms.emplace_back(AtomRef { ai, { m_coord[0], m_coord[1], m_coord[2] }, getTmpID() });
}
void writeCTabV3000() {
m_offset += VLAprintf(m_buffer, m_offset,
" 0 0 0 0 0 0 0 0 0 0999 V3000\n"
"M V30 BEGIN CTAB\n"
"M V30 COUNTS %d %d 0 0 %d\n"
"M V30 BEGIN ATOM\n",
m_atoms.size(), m_bonds.size(), m_chiral_flag);
// write atoms
for (auto& atom : m_atoms) {
auto ai = atom.ref;
m_offset += VLAprintf(m_buffer, m_offset, "M V30 %d %s %.4f %.4f %.4f 0",
atom.id, elemGetter(ai), atom.coord[0], atom.coord[1], atom.coord[2]);
if (ai->formalCharge)
m_offset += VLAprintf(m_buffer, m_offset, " CHG=%d", ai->formalCharge);
if (ai->stereo)
m_offset += VLAprintf(m_buffer, m_offset, " CFG=%d", ai->stereo);
m_offset += VLAprintf(m_buffer, m_offset, "\n");
}
m_atoms.clear();
m_offset += VLAprintf(m_buffer, m_offset,
"M V30 END ATOM\n"
"M V30 BEGIN BOND\n");
// write bonds
int n_bonds = 0;
for (auto& bond : m_bonds) {
m_offset += VLAprintf(m_buffer, m_offset, "M V30 %d %d %d %d\n",
++n_bonds, bond.ref->order, bond.id1, bond.id2);
}
m_bonds.clear();
// end
m_offset += VLAprintf(m_buffer, m_offset,
"M V30 END BOND\n"
"M V30 END CTAB\n"
"M END\n");
}
void writeCTabV2000() {
// counts line
m_offset += VLAprintf(m_buffer, m_offset,
"%3d%3d 0 0%3d 0 0 0 0 0999 V2000\n",
(int) m_atoms.size(), (int) m_bonds.size(), m_chiral_flag);
// write atoms
for (auto& atom : m_atoms) {
auto ai = atom.ref;
int chg = ai->formalCharge;
m_offset += VLAprintf(m_buffer, m_offset,
"%10.4f%10.4f%10.4f %-3s 0 %1d %1d 0 0 0 0 0 0 0 0 0\n",
atom.coord[0], atom.coord[1], atom.coord[2],
elemGetter(ai), chg ? (4 - chg) : 0, (int) ai->stereo);
}
m_atoms.clear();
// write bonds
for (auto& bond : m_bonds) {
m_offset += VLAprintf(m_buffer, m_offset, "%3d%3d%3d%3d 0 0 0\n",
bond.id1, bond.id2, bond.ref->order, (int) bond.ref->stereo);
}
m_bonds.clear();
// end
m_offset += VLAprintf(m_buffer, m_offset, "M END\n");
}
void writeBonds() {
if (m_atoms.size() > 999 || m_bonds.size() > 999) {
PRINTFB(G, FB_ObjectMolecule, FB_Warnings)
" Warning: MOL/SDF 999 atom/bond limit reached, using V3000\n" ENDFB(G);
writeCTabV3000();
} else {
writeCTabV2000();
}
}
void beginMolecule() {
MoleculeExporter::beginMolecule();
m_offset += VLAprintf(m_buffer, m_offset,
"%s\n PyMOL%03d 3D 0\n\n",
getTitleOrName(), (_PyMOL_VERSION_int / 10) % 1000);
m_chiral_flag = 0;
}
};
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterSDF : public MoleculeExporterMOL {
int getMultiDefault() const {
// multi-entry format
return cMolExportByCoordSet;
}
void writeProperties() {
#ifdef _PYMOL_IP_EXTRAS
#endif
}
void writeBonds() {
MoleculeExporterMOL::writeBonds();
writeProperties();
m_offset += VLAprintf(m_buffer, m_offset, "$$$$\n");
}
};
// ---------------------------------------------------------------------------------- //
struct MOL2_SubSt {
AtomInfoType * ai;
int root_id;
const char * resn;
};
static const char MOL2_bondTypes[][3] = {
"nc", "1", "2", "3", "ar"
};
struct MoleculeExporterMOL2 : public MoleculeExporter {
int m_n_atoms; // atom count
int m_counts_offset; // offset for deferred counts writing
std::vector<MOL2_SubSt> m_substs; // substructures
int getMultiDefault() const {
// multi-entry format
return cMolExportByCoordSet;
}
void beginFile() {
m_offset += VLAprintf(m_buffer, m_offset,
"# created with PyMOL " _PyMOL_VERSION "\n");
}
void beginMolecule() {
MoleculeExporter::beginMolecule();
// RTI MOLECULE
m_offset += VLAprintf(m_buffer, m_offset, "@<TRIPOS>MOLECULE\n"
"%s\n", getTitleOrName());
// defer until number of substructures known
m_counts_offset = m_offset;
m_offset += VLAprintf(m_buffer, m_offset,
"X X X \n" // deferred
"SMALL\n"
"USER_CHARGES\n"
"@<TRIPOS>ATOM\n");
m_n_atoms = 0;
}
void beginObject() {
MoleculeExporter::beginObject();
ObjectMoleculeVerifyChemistry(m_iter.obj, m_iter.state);
}
void writeAtom() {
const auto ai = m_iter.getAtomInfo();
if (m_substs.empty() ||
!AtomInfoSameResidue(G, ai, m_substs.back().ai)) {
m_substs.emplace_back(MOL2_SubSt { ai, getTmpID(),
ai->resn ? LexStr(G, ai->resn) : "UNK" });
}
// RTI ATOM
// atom_id atom_name x y z atom_type [subst_id
// [subst_name [charge [status_bit]]]]
m_offset += VLAprintf(m_buffer, m_offset,
"%d\t%4s\t%.3f\t%.3f\t%.3f\t%2s\t%d\t%s%d%.1s\t%.3f\t%s\n",
getTmpID(),
ai->name ? LexStr(G, ai->name) : ai->elem[0] ? ai->elem : "X",
m_coord[0], m_coord[1], m_coord[2],
getMOL2Type(m_iter.obj, m_iter.getAtm()),
m_substs.size(),
m_substs.back().resn, ai->resv, &ai->inscode, // subst_name
ai->partialCharge,
(ai->flags & cAtomFlag_solvent) ? "WATER" : "");
++m_n_atoms;
}
void writeBonds() {
// atom count
m_counts_offset += sprintf(m_buffer + m_counts_offset, "%d %d %d",
m_n_atoms, (int) m_bonds.size(), (int) m_substs.size());
m_buffer[m_counts_offset] = ' '; // overwrite terminator
// RTI BOND
// bond_id origin_atom_id target_atom_id bond_type [status_bits]
m_offset += VLAprintf(m_buffer, m_offset, "@<TRIPOS>BOND\n");
int bond_id = 0;
for (auto& bond : m_bonds) {
m_offset += VLAprintf(m_buffer, m_offset, "%d %d %d %s\n",
++bond_id,
bond.id1,
bond.id2,
MOL2_bondTypes[bond.ref->order % 5]);
}
m_bonds.clear();
// RTI SUBSTRUCTURE
// subst_id subst_name root_atom [subst_type [dict_type
// [chain [sub_type [inter_bonds [status [comment]]]]]]]
m_offset += VLAprintf(m_buffer, m_offset, "@<TRIPOS>SUBSTRUCTURE\n");
int subst_id = 0;
for (auto& subst : m_substs) {
const auto& ai = subst.ai;
m_offset += VLAprintf(m_buffer, m_offset, "%d\t%s%d%.1s\t%d\t%s\t1 %s\t%s\n",
++subst_id,
subst.resn, ai->resv, &ai->inscode, // subst_name
subst.root_id, // root_atom
(ai->flags & cAtomFlag_polymer) ? "RESIDUE" : "GROUP",
ai->chain ? LexStr(G, ai->chain) : ai->segi ? LexStr(G, ai->segi) : "****",
subst.resn);
}
m_substs.clear();
}
};
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterMAE : public MoleculeExporter {
int m_n_atoms;
int m_n_atoms_offset;
int m_n_arom_bonds = 0;
int getMultiDefault() const {
// multi-entry format
return cMolExportByCoordSet;
}
void beginFile() {
m_offset += VLAprintf(m_buffer, m_offset,
"{ s_m_m2io_version ::: 2.0.0 }\n"
"# created with PyMOL " _PyMOL_VERSION " #\n");
}
void beginMolecule() {
MoleculeExporter::beginMolecule();
m_offset += VLAprintf(m_buffer, m_offset,
"\nf_m_ct {\n"
"s_m_title\n"
":::\n"
"\"%s\"\n",
getTitleOrName());
// defer until number of atoms known
m_n_atoms_offset = m_offset;
m_offset += VLAprintf(m_buffer, m_offset,
"m_atom[X] {\n" // place holder
"# First column is atom index #\n"
"i_m_mmod_type\n"
"r_m_x_coord\n"
"r_m_y_coord\n"
"r_m_z_coord\n"
"i_m_residue_number\n"
"s_m_insertion_code\n"
"s_m_chain_name\n"
"s_m_pdb_residue_name\n"
"s_m_pdb_atom_name\n"
"i_m_atomic_number\n"
"i_m_formal_charge\n"
"s_m_color_rgb\n"
"i_m_secondary_structure\n"
"r_m_pdb_occupancy\n"
"i_pdb_PDB_serial\n"
":::\n");
m_n_atoms = 0;
}
void beginObject() {
MoleculeExporter::beginObject();
ObjectMoleculeVerifyChemistry(m_iter.obj, m_iter.state);
}
void writeAtom() {
const auto ai = m_iter.getAtomInfo();
const float * rgb = ColorGet(G, ai->color);
char inscode[3] = { ai->inscode, 0 };
if (!inscode[0]) {
strcpy(inscode, "<>");
}
m_offset += VLAprintf(m_buffer, m_offset,
"%d %d %.3f %.3f %.3f %d %s %s %s %s %d %d %02X%02X%02X %d %.2f %d\n", // %d %d\n",
getTmpID(),
getMacroModelAtomType(ai),
m_coord[0], m_coord[1], m_coord[2],
ai->resv,
inscode,
ai->chain ? LexStr(G, ai->chain) : "\" \"",
ai->resn ? LexStr(G, ai->resn) : "\"\"",
ai->name ? LexStr(G, ai->name) : "X",
ai->protons,
ai->formalCharge,
int(rgb[0] * 255),
int(rgb[1] * 255),
int(rgb[2] * 255),
ai->ssType[0] == 'H' ? 1 : ai->ssType[0] == 'S' ? 2 : 0,
ai->q,
ai->id);
++m_n_atoms;
}
void writeBonds() {
// atom count
m_n_atoms_offset += sprintf(m_buffer + m_n_atoms_offset, "m_atom[%d]", m_n_atoms);
m_buffer[m_n_atoms_offset] = ' '; // overwrite terminator
if (!m_bonds.empty()) {
// table with zero rows not allowed
m_offset += VLAprintf(m_buffer, m_offset,
":::\n"
"}\n" // end atoms table
"m_bond[%d] {\n"
"# First column is bond index #\n"
"i_m_from\n"
"i_m_to\n"
"i_m_order\n"
":::\n", (int) m_bonds.size());
int b = 0;
for (auto& bond : m_bonds) {
int order = bond.ref->order;
if (order > 3) {
++m_n_arom_bonds;
order = 1; // aromatic bonds not supported
}
m_offset += VLAprintf(m_buffer, m_offset, "%d %d %d %d\n", ++b,
bond.id1,
bond.id2,
order);
}
m_bonds.clear();
}
// end molecule
m_offset += VLAprintf(m_buffer, m_offset,
":::\n"
"}\n" // end bonds (or atoms) table
"}\n");
if (m_n_arom_bonds > 0) {
PRINTFB(G, FB_ObjectMolecule, FB_Warnings)
" Warning: aromatic bonds not supported by MAE format, "
"exporting as single bonds\n" ENDFB(G);
m_n_arom_bonds = 0;
}
}
};
// ---------------------------------------------------------------------------------- //
struct MoleculeExporterXYZ : public MoleculeExporter {
int m_n_atoms;
int m_n_atoms_offset;
int getMultiDefault() const {
// multi-entry format
return cMolExportByCoordSet;
}
void beginMolecule() {
MoleculeExporter::beginMolecule();
// defer until number of atoms known
m_n_atoms = 0;
m_n_atoms_offset = m_offset;
m_offset += VLAprintf(m_buffer, m_offset,
"X \n" // natoms (deferred)
"%s\n", // comment
getTitleOrName());
}
void writeAtom() {
const auto ai = m_iter.getAtomInfo();
m_offset += VLAprintf(m_buffer, m_offset,
"%s %f %f %f\n", ai->elem, m_coord[0], m_coord[1], m_coord[2]);
++m_n_atoms;
}
void writeBonds() {
// atom count
m_n_atoms_offset += sprintf(m_buffer + m_n_atoms_offset, "%d", m_n_atoms);
m_buffer[m_n_atoms_offset] = ' '; // overwrite terminator
}
bool isExcludedBond(int atm1, int atm2) {
// no bonds for XYZ format
return true;
}
};
/*========================================================================*/
/*
* Export the given selection to a molecular file format.
*
* Return the file contents as a VLA (must be VLAFree'd by caller) or
* NULL if the format is not known.
*
* format: pdb, sdf, ...
* selection: atom selection expression
* state: object state (-1 for all, -2/-3 for current)
* ref_object: name of a reference object which defines the frame of
* reference for exported coordinates
* ref_state: reference object state
* multi: defines how to handle selections which span multiple objects
* -1: use format-specific default
* 0: one global "molecule" (default for PDB)
* 1: molecules per objects
* 2: molecules per states (default for sdf, mol2)
*/
unique_vla_ptr<char> MoleculeExporterGetStr(PyMOLGlobals * G,
const char *format,
const char *selection,
int state,
const char *ref_object,
int ref_state,
int multi,
bool quiet)
{
SelectorTmp tmpsele1(G, selection);
int sele = tmpsele1.getIndex();
if (sele < 0)
return NULL;
MoleculeExporter * exporter = NULL;
if (ref_state < -1)
ref_state = state;
// do "effective" current states
if (state == -2)
state = -3;
if (strcmp(format, "pdb") == 0) {
exporter = new MoleculeExporterPDB;
} else if (strcmp(format, "cif") == 0) {
exporter = new MoleculeExporterCIF;
} else if (strcmp(format, "sdf") == 0) {
exporter = new MoleculeExporterSDF;
} else if (strcmp(format, "pqr") == 0) {
exporter = new MoleculeExporterPQR;
} else if (strcmp(format, "mol2") == 0) {
exporter = new MoleculeExporterMOL2;
} else if (strcmp(format, "mol") == 0) {
exporter = new MoleculeExporterMOL;
} else if (strcmp(format, "xyz") == 0) {
exporter = new MoleculeExporterXYZ;
} else if (strcmp(format, "mae") == 0) {
exporter = new MoleculeExporterMAE;
} else {
PRINTFB(G, FB_ObjectMolecule, FB_Errors)
" Error: unknown format: '%s'\n", format ENDFB(G);
return NULL;
}
exporter->init(G);
exporter->setMulti(multi);
exporter->setRefObject(ref_object, ref_state);
exporter->execute(sele, state);
char * charVLA = NULL;
std::swap(charVLA, exporter->m_buffer);
delete exporter;
return charVLA;
}
/*========================================================================*/
#ifndef _PYMOL_NOPY
/*
* Creates a `chempy.models.Indexed` instance from a selection.
*
* Changes from the old implementation (SelectorGetChemPyModel):
* - drops support for `cs->Spheroid`
*
*/
struct MoleculeExporterChemPy : public MoleculeExporter {
PyObject *m_model = NULL; // out
protected:
int m_n_cs = 0; // number of coordinate sets
float m_ref_tmp[3];
PyObject *m_atom_list = NULL;
int getMultiDefault() const {
// single-entry format
return cMolExportGlobal;
}
void beginMolecule() {
MoleculeExporter::beginMolecule();
m_model = PYOBJECT_CALLMETHOD(P_models, "Indexed", "");
if (m_model) {
m_atom_list = PyList_New(0);
PyObject_SetAttrString(m_model, "atom", m_atom_list);
Py_DECREF(m_atom_list);
}
}
void beginCoordSet() {
MoleculeExporter::beginCoordSet();
++m_n_cs;
}
const float * getRefPtr() {
RefPosType * ref_pos = m_iter.cs->RefPos;
const float * ref_ptr = NULL;
if (ref_pos) {
ref_pos += m_iter.getIdx();
if (ref_pos->specified) {
ref_ptr = ref_pos->coord;
if (m_mat_move.ptr) {
transform44d3f(m_mat_move.ptr, ref_ptr, m_ref_tmp);
ref_ptr = m_ref_tmp;
}
}
}
return ref_ptr;
}
void writeAtom() {
PyObject *atom = CoordSetAtomToChemPyAtom(G,
m_iter.getAtomInfo(), m_coord, getRefPtr(),
m_iter.getAtm(), m_mat_full.ptr);
if (atom) {
PyList_Append(m_atom_list, atom);
Py_DECREF(atom);
}
}
void writeProperties() {
if (!m_last_cs)
return;
// only support properties if export doesn't span multiple coordsets
if (m_n_cs != 1)
return;
// title
if (m_last_cs->Name[0]) {
PyObject *molecule = PyObject_GetAttrString(m_model, "molecule");
if (molecule) {
PyObject_SetAttrString(molecule, "title", PyString_FromString(m_last_cs->Name));
Py_DECREF(molecule);
}
}
// properties
#ifdef _PYMOL_IP_EXTRAS
#endif
}
void writeBonds() {
if (!m_model)
return;
bool error = false;
size_t nBond = m_bonds.size();
PyObject *bond_list = PyList_New(nBond);
for (size_t b = 0; b < nBond; ++b) {
PyObject *bnd = PYOBJECT_CALLMETHOD(P_chempy, "Bond", "");
if (!bnd) {
error = true;
break;
}
const auto& bond = m_bonds[b];
int index[] = { bond.id1 - 1, bond.id2 - 1 };
PConvInt2ToPyObjAttr(bnd, "index", index);
PConvIntToPyObjAttr(bnd, "order", bond.ref->order);
PConvIntToPyObjAttr(bnd, "id", bond.ref->id);
PConvIntToPyObjAttr(bnd, "stereo", bond.ref->stereo);
PyList_SetItem(bond_list, b, bnd); /* steals bnd reference */
}
if (!error) {
PyObject_SetAttrString(m_model, "bond", bond_list);
}
Py_DECREF(bond_list);
m_bonds.clear();
writeProperties();
}
};
/*========================================================================*/
PyObject *ExecutiveSeleToChemPyModel(PyMOLGlobals * G,
const char *s1, int state,
const char *ref_object, int ref_state)
{
if (state == -1)
state = 0; // no multi-state support
if (ref_state < -1)
ref_state = state;
int sele = SelectorIndexByName(G, s1);
if (sele < 0)
return NULL;
int unblock = PAutoBlock(G);
MoleculeExporterChemPy exporter;
exporter.init(G);
exporter.setRefObject(ref_object, ref_state);
exporter.execute(sele, state);
if (PyErr_Occurred())
PyErr_Print();
PAutoUnblock(G, unblock);
return exporter.m_model;
}
#endif
// vi:sw=2
|