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 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
|
/*
* analysis/daca.cc
*
* Copyright 2020 by Medical Research Council
* Author: Paul Emsley
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA
*/
#include <map>
#include <iomanip>
#include <fstream>
#include "compat/coot-sysdep.h"
#include "utils/coot-utils.hh"
#include "geometry/residue-and-atom-specs.hh"
#include "coot-utils/coot-coord-utils.hh"
#include "coot-utils/atom-selection-container.hh"
#include "coot-utils/helix-like.hh"
#include "daca.hh"
coot::daca::box_index_t::box_index_t(const clipper::Coord_orth &pos) {
box_width = 1.0;
idx_x = floor(pos.x()/box_width);
idx_y = floor(pos.y()/box_width);
idx_z = floor(pos.z()/box_width);
}
// the reverse of the above - make a point in the middle of the box
clipper::Coord_orth
coot::daca::box_index_t::coord_orth() const {
double x = static_cast<double>(idx_x) * box_width + 0.5 * box_width;
double y = static_cast<double>(idx_y) * box_width + 0.5 * box_width;
double z = static_cast<double>(idx_z) * box_width + 0.5 * box_width;
return clipper::Coord_orth(x,y,z);
}
float
coot::daca::box_index_t::d_squared() const {
clipper::Coord_orth pt = coord_orth();
return (pt.x() * pt.x() + pt.y() * pt.y() + pt.z() * pt.z());
}
float
coot::daca::box_index_t::d() const {
return sqrtf(d_squared());
}
bool
coot::daca::box_index_t::operator<(const coot::daca::box_index_t &other) const {
if (other.idx_x < idx_x) return true;
if (other.idx_x > idx_x) return false;
if (other.idx_y < idx_y) return true;
if (other.idx_y > idx_y) return false;
if (other.idx_z < idx_z) return true;
if (other.idx_z > idx_z) return false;
return false;
}
float
coot::daca::gompertz_scale(const float &dist_squared) {
float box_width = 1.0; // should match the box width of the box_index_t.
// Should be transfered?
std::map<float, float>::const_iterator it = envelope_distance_map.find(dist_squared);
if (it != envelope_distance_map.end()) {
return it->second;
} else {
float x = sqrtf(dist_squared);
const float m = 9.2 * box_width; // 9.2 not 8.0 - for better tailing off of the function
const float a = 1.0;
const float b = 7.0;
const float c = 1.0;
float g = a * exp(-b * exp(-c * (m - x)));
envelope_distance_map[dist_squared] = g;
return g;
}
}
// I can't get where this should go.
#if 0
std::ostream &
coot::daca::operator<<(std::ostream &s, const coot::daca::box_index_t &bi) {
s << "[box " << bi.x << " " << bi.y << " " << bi.z << "]";
return s;
}
#endif
void
coot::daca::fill_reference_fragments() {
std::string pkg_data_dir = coot::package_data_dir();
std::string fn = util::append_dir_file(pkg_data_dir, "standard-residues.pdb");
if (file_exists(fn)) {
atom_selection_container_t asc = get_atom_selection(fn, false, false, false);
if (asc.read_success) {
// make reference fragments for each of the residues
// std::cout << "Now do things with residues in standard_residues\n";
int imod = 1;
mmdb::Model *model_p = asc.mol->GetModel(imod);
if (model_p) {
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
int nres = chain_p->GetNumberOfResidues();
for (int ires=0; ires<nres; ires++) {
mmdb::Residue *residue_p = chain_p->GetResidue(ires);
if (residue_p) {
std::string res_name(residue_p->GetResName());
std::vector<std::vector<std::string> > atom_name_sets =
atom_names_for_fragments(res_name);
for(unsigned int iset=0; iset<atom_name_sets.size(); iset++) {
std::vector<clipper::Coord_orth> v; // this has special order
const std::vector<std::string> &us = atom_name_sets[iset];
std::vector<std::string>::const_iterator it;
for (it=us.begin(); it!=us.end(); ++it) {
const std::string &frag_atom_name = *it;
int n_residue_atoms;
mmdb::PPAtom residue_atoms = 0;
residue_p->GetAtomTable(residue_atoms, n_residue_atoms);
for (int iat=0; iat<n_residue_atoms; iat++) {
mmdb::Atom *at = residue_atoms[iat];
std::string this_atom_name(at->GetAtomName());
if (this_atom_name == frag_atom_name) {
clipper::Coord_orth pos = co(at);
v.push_back(pos);
break;
}
}
}
if (v.size() == us.size()) {
// add another set of coordinates to reference_fragments[res_name]
clipper::Coord_orth sum(0,0,0); // for calculating the centre of the fragment
for (unsigned int ii=0; ii<v.size(); ii++)
sum += v[ii];
double m = 1.0/static_cast<double>(v.size());
clipper::Coord_orth fragment_centre(sum * m);
for (unsigned int ii=0; ii<v.size(); ii++)
v[ii] -= fragment_centre;
reference_fragments[res_name].push_back(v);
if (false)
std::cout << " filling " << residue_p << " " << res_name << " "
<< v.size() << std::endl;
}
}
}
}
}
}
}
} else {
std::cout << "File not found " << fn << std::endl;
}
if (false) { // debugging
std::map<std::string, std::vector<std::vector<clipper::Coord_orth> > >::const_iterator it;
for (it =reference_fragments.begin(); it!=reference_fragments.end(); it++){
std::cout << "Reference Residue type " << it->first << "\n";
std::vector<std::vector<clipper::Coord_orth> >::const_iterator itvv;
for (itvv=it->second.begin(); itvv!=it->second.end(); itvv++) {
const std::vector<clipper::Coord_orth> &v = *itvv;
std::vector<clipper::Coord_orth>::const_iterator itv;
for (itv=v.begin(); itv!=v.end(); itv++)
std::cout << itv->format() << " " ;
std::cout << std::endl;
}
}
}
}
std::vector<std::pair<mmdb::Atom *, std::string> >
coot::daca::make_typed_atoms(mmdb::Model *model_p, const coot::protein_geometry &geom) const {
std::vector<std::pair<mmdb::Atom *, std::string> > v;
std::map<std::string, dictionary_residue_restraints_t> dictionary_map;
if (model_p) {
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
int nres = chain_p->GetNumberOfResidues();
for (int ires=0; ires<nres; ires++) {
mmdb::Residue *residue_p = chain_p->GetResidue(ires);
if (residue_p) {
std::string res_type = residue_p->GetResName();
std::map<std::string, dictionary_residue_restraints_t>::const_iterator it;
it = dictionary_map.find(res_type);
if (it == dictionary_map.end()) {
std::pair<bool, dictionary_residue_restraints_t> restraints =
geom.get_monomer_restraints(res_type, protein_geometry::IMOL_ENC_ANY);
if (restraints.first) {
dictionary_map[res_type] = restraints.second;
}
}
}
}
}
}
if (model_p) {
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
int nres = chain_p->GetNumberOfResidues();
for (int ires=0; ires<nres; ires++) {
mmdb::Residue *residue_p = chain_p->GetResidue(ires);
if (residue_p) {
int n_atoms = residue_p->GetNumberOfAtoms();
if (n_atoms > 0) {
std::string res_type = residue_p->GetResName();
std::map<std::string, dictionary_residue_restraints_t>::const_iterator it;
it = dictionary_map.find(res_type);
if (it != dictionary_map.end()) {
for (int iat=0; iat<n_atoms; iat++) {
mmdb::Atom *at = residue_p->GetAtom(iat);
if (at) {
std::string atom_name(at->GetAtomName());
const std::string type = it->second.type_energy(atom_name);
// check for atom name being "N" here // C is Correct type
if (atom_name == " N ") {
std::pair<mmdb::Atom *, std::string> p(at, "NH1");
v.push_back(p);
} else {
if (! type.empty()) {
std::pair<mmdb::Atom *, std::string> p(at, type);
v.push_back(p);
}
}
}
}
}
}
}
}
}
}
return v;
}
std::vector<std::vector<std::string> >
coot::daca::atom_names_for_fragments(const std::string &res_name) const {
std::vector<std::vector<std::string> > v;
std::vector<std::string> all{" CA ", " C ", " O "};
v.push_back(all);
if (res_name == "GLY") {
std::vector<std::string> s{" N ", " C ", " CA "};
v.push_back(s);
}
if (res_name == "ALA") {
std::vector<std::string> s{" N ", " C ", " CA ", " CB "};
v.push_back(s);
}
if (res_name == "CYS") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " SG "};
v.push_back(s1);
v.push_back(s2);
}
if (res_name == "ASP") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " OD1", " OD2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "GLU") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD "};
std::vector<std::string> s4{" CG ", " CD ", " OE1", " OE2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
v.push_back(s4);
}
if (res_name == "PHE") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD1", " CD2", " CE1", " CE2", " CZ "};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "HIS") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " ND1", " CE1", " NE2", " CD2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "ILE") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG1", " CG2"};
std::vector<std::string> s3{" CB ", " CG1", " CD1"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "LYS") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD "};
std::vector<std::string> s4{" CG ", " CD ", " CE "};
std::vector<std::string> s5{" CD ", " CE ", " NZ "};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
v.push_back(s4);
v.push_back(s5);
}
if (res_name == "LEU") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD1", " CD2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "MET") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " SD "};
std::vector<std::string> s4{" CG ", " SD ", " CE "};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
v.push_back(s4);
}
if (res_name == "MSE") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " SD "};
std::vector<std::string> s4{" CG ", " SE ", " CE "};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
v.push_back(s4);
}
if (res_name == "ASN") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " OD1", " ND2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "PRO") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB ", " CG ", " CD "};
v.push_back(s1);
}
if (res_name == "GLN") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD "};
std::vector<std::string> s4{" CG ", " CD ", " OE1", " NE2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
v.push_back(s4);
}
if (res_name == "ARG") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD "};
std::vector<std::string> s4{" CG ", " CD ", " NE "};
std::vector<std::string> s5{" NE ", " CZ ", " NH1", " NH2"}; // + CD?
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
v.push_back(s4);
v.push_back(s5);
}
if (res_name == "SER") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " OG "};
v.push_back(s1);
v.push_back(s2);
}
if (res_name == "THR") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " OG1", " CG2"};
v.push_back(s1);
v.push_back(s2);
}
if (res_name == "VAL") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG1", " CG2"};
v.push_back(s1);
v.push_back(s2);
}
if (res_name == "TRP") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD1", " CD2", " NE1", " CE2", " CE3", " CZ2", " CZ3", " CH2"};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
if (res_name == "TYR") {
std::vector<std::string> s1{" N ", " C ", " CA ", " CB "};
std::vector<std::string> s2{" CA ", " CB ", " CG "};
std::vector<std::string> s3{" CB ", " CG ", " CD1", " CD2", " CE1", " CE2", " CZ ", " OH "};
v.push_back(s1);
v.push_back(s2);
v.push_back(s3);
}
return v;
}
std::vector<std::vector<mmdb::Atom *> >
coot::daca::get_daca_fragments(mmdb::Residue *reference_residue_p) const {
std::vector<std::vector<mmdb::Atom *> > v;
std::string res_name(reference_residue_p->GetResName());
std::vector<std::vector<std::string> > atom_name_vec_vec = atom_names_for_fragments(res_name);
std::vector<std::vector<std::string> >::const_iterator it_1;
std::vector<std::string>::const_iterator it_2;
for (it_1=atom_name_vec_vec.begin(); it_1!=atom_name_vec_vec.end(); it_1++){
const std::vector<std::string> &atom_names = *it_1;
std::vector<mmdb::Atom *> atom_vec;
for (it_2=atom_names.begin(); it_2!=atom_names.end(); it_2++) {
const std::string &atom_name = *it_2;
mmdb::PPAtom residue_atoms = 0;
int n_residue_atoms;
reference_residue_p->GetAtomTable(residue_atoms, n_residue_atoms);
for (int iat=0; iat<n_residue_atoms; iat++) {
mmdb::Atom *at = residue_atoms[iat];
std::string this_atom_name(at->GetAtomName());
if (atom_name == this_atom_name) {
std::string alt_loc(at->altLoc);
if (alt_loc.empty())
atom_vec.push_back(at);
}
}
}
if (atom_names.size() == atom_vec.size()) {
v.push_back(atom_vec);
} else {
// debugging
// we can get here when the residue has alt confs.
if (false) // too noisy for now.
std::cout << "INFO:: atom count mismatch in getting fragments for "
<< residue_spec_t(reference_residue_p) << " "
<< reference_residue_p->GetResName() << " "
<< atom_vec.size() << std::endl;
}
}
return v;
}
std::pair<bool, clipper::RTop_orth>
coot::daca::get_frag_to_reference_rtop(const std::string &res_name,
const unsigned int &frag_idx,
const std::vector<mmdb::Atom *> &fragment_atoms) const {
clipper::RTop_orth rtop;
bool status = true;
std::map<std::string, std::vector<std::vector<clipper::Coord_orth> > >::const_iterator it;
it = reference_fragments.find(res_name);
if (it != reference_fragments.end()) {
if (frag_idx < it->second.size()) {
const std::vector<clipper::Coord_orth> &ref_atom_positions = it->second[frag_idx];
// convert fragment_atoms to coordinates
std::vector<clipper::Coord_orth> residue_fragment_atoms;
for (unsigned int i=0; i<fragment_atoms.size(); i++) {
clipper::Coord_orth pos = co(fragment_atoms[i]);
residue_fragment_atoms.push_back(pos);
}
if (ref_atom_positions.size() == residue_fragment_atoms.size()) {
clipper::RTop_orth rtop_1(residue_fragment_atoms, ref_atom_positions);
rtop = rtop_1;
} else {
std::cout << "size error in get_frag_to_reference_rtop()" << std::endl;
status = false;
}
} else {
std::cout << "index vector error in get_frag_to_reference_rtop() " << frag_idx << " res_name"
<< std::endl;
status = false;
}
} else {
std::cout << "index residue error in get_frag_to_reference_rtop() " << frag_idx << " res_name"
<< std::endl;
status = false;
}
return std::pair<bool, clipper::RTop_orth> (status, rtop);
}
void
coot::daca::add_to_box(mode_t mode,
const std::string &residue_type,
bool is_helical_flag,
unsigned int frag_index,
const box_index_t &box_index,
const std::string &atom_type,
unsigned int counts) {
std::string box_key = residue_type + "-non-helical";
if (is_helical_flag) box_key = residue_type + "-helical";
if (mode == REFERENCE) {
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::const_iterator it =
boxes.find(box_key);
if (it == boxes.end()) {
std::cout << "error in boxes " << box_key << std::endl;
} else {
boxes[box_key][frag_index][atom_type][box_index] += counts;
}
}
if (mode == ANALYSIS) {
if (frag_index >= boxes_for_testing[residue_type].size())
boxes_for_testing[box_key].resize(6);
boxes_for_testing[box_key][frag_index][atom_type][box_index] += counts;
}
}
int
coot::daca::get_reference_counts(const std::string &residue_type,
bool is_helical_flag,
unsigned int frag_index,
const box_index_t &box_index,
const std::string &atom_type) const {
int score = -1; // not found
std::string box_key = residue_type + "-non-helical";
if (is_helical_flag) box_key = residue_type + "-helical";
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::const_iterator it =
boxes.find(box_key);
if (it == boxes.end()) // should never happen
return score;
const std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &frag_boxes = it->second;
std::map<std::string, std::map<box_index_t, unsigned int> >::const_iterator it_typed_box =
frag_boxes[frag_index].find(atom_type);
if (it_typed_box != frag_boxes[frag_index].end()) {
std::map<box_index_t, unsigned int>::const_iterator it_box = it_typed_box->second.find(box_index);
if (it_box != it_typed_box->second.end()) {
score = it_box->second;
} else {
std::cout << "Miss " << box_key << " " << frag_index << " " << atom_type << " "
<< std::setw(2) << box_index.idx_x << " "
<< std::setw(2) << box_index.idx_y << " "
<< std::setw(2) << box_index.idx_z << " "
<< std::endl;
}
} else {
std::cout << "Miss:: " << box_key << " atom type " << atom_type << std::endl;
}
return score;
}
void
coot::daca::debug_boxes(const std::string &prefix) const {
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::const_iterator it;
for (it=boxes.begin(); it!=boxes.end(); it++) {
const std::string residue_type = it->first;
std::cout << "========== debug_boxes(): " << prefix << " Residue Type " << residue_type << std::endl;
const std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &frag_boxes = it->second;
std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > >::const_iterator it_v;
for (unsigned int ifrag=0; ifrag<frag_boxes.size(); ifrag++) {
const std::map<std::string, std::map<box_index_t, unsigned int> > &typed_boxes = frag_boxes[ifrag];
std::map<std::string, std::map<box_index_t, unsigned int> >::const_iterator it_typed_box;
for (it_typed_box=typed_boxes.begin(); it_typed_box!=typed_boxes.end(); it_typed_box++) {
std::string atom_type = it_typed_box->first;
if (residue_type.substr(0,3) == "ARG") {
if (ifrag == 0) {
std::cout << "========== debug_boxes(): " << prefix << " Residue Type " << residue_type << " frag index "
<< ifrag << " atom_type " << atom_type << std::endl;
if (true) {
std::map<box_index_t, unsigned int>::const_iterator it_box;
for (it_box=it_typed_box->second.begin(); it_box!=it_typed_box->second.end(); it_box++) {
const box_index_t &bi = it_box->first;
unsigned int count = it_box->second;
std::cout << " "
<< std::setw(2) << bi.idx_x << " " << std::setw(2) << bi.idx_y << " " << std::setw(2) << bi.idx_z << " "
<< std::setw(3) << count << std::endl;
}
}
}
}
}
}
}
}
void
coot::daca::write_tables(const std::string &dir) const {
std::cout << "write_tables(): write " << boxes.size() << " boxes " << std::endl;
coot::util::create_directory(dir);
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::const_iterator it;
for (it=boxes.begin(); it!=boxes.end(); ++it) {
const std::string &residue_type = it->first;
std::cout << "============= write_tables(): Residue Type " << residue_type << std::endl;
const std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &frag_boxes = it->second;
for (unsigned int i=0; i<frag_boxes.size(); i++) {
const std::map<std::string, std::map<box_index_t, unsigned int> > &typed_boxes = frag_boxes[i];
std::map<std::string, std::map<box_index_t, unsigned int> >::const_iterator it_typed_box;
for (it_typed_box=typed_boxes.begin(); it_typed_box!=typed_boxes.end(); ++it_typed_box) {
std::string atom_type = it_typed_box->first;
if (false)
std::cout << "----------------- write_tables(): Residue Type " << residue_type << " " << i << " atom type "
<< atom_type << std::endl;
std::string box_file_name = residue_type + "-" + util::int_to_string(i) + "-" + atom_type + ".table";
std::string full_box_file_name = coot::util::append_dir_file(dir, box_file_name);
std::ofstream f(full_box_file_name.c_str());
if (f) {
std::map<box_index_t, unsigned int>::const_iterator it_box;
for (it_box=it_typed_box->second.begin(); it_box!=it_typed_box->second.end(); ++it_box) {
const box_index_t &bi = it_box->first;
unsigned int count = it_box->second;
f << " "
<< std::setw(2) << bi.idx_x << " " << std::setw(2) << bi.idx_y << " " << std::setw(2) << bi.idx_z << " "
<< std::setw(3) << count << "\n";
}
f.close();
}
}
}
}
}
void
coot::daca::read_many_tables(const std::vector<std::string> &dirs) {
presize_boxes();
for (unsigned int i=0; i<dirs.size(); i++) {
std::cout << "read tables directory " << dirs[i] << std::endl;
read_tables(dirs[i]);
}
}
void
coot::daca::read_tables(const std::string &dir) {
if (! boxes_have_been_resized)
presize_boxes();
std::string glob_pattern = "*.table";
std::vector<std::string> files = coot::util::glob_files(dir, glob_pattern);
for (unsigned int i=0; i<files.size(); i++) {
std::string file_name = files[i];
// std::cout << "read table file " << file_name << std::endl;
std::pair<std::string, std::string> z_parts = coot::util::split_string_on_last_slash(file_name);
std::vector<std::string> fn_parts = coot::util::split_string(z_parts.second, "-");
if (false) {
std::cout << "fn_parts: " << std::endl;
for (unsigned int i=0; i<fn_parts.size(); i++)
std::cout << fn_parts[i] << " ";
std::cout << std::endl;
}
if (fn_parts.size() == 4 || fn_parts.size() == 5) {
try {
std::string res_name = fn_parts[0];
std::string ss_type = "helical";
int ss_type_index = 0;
unsigned int frag_string_index = 2;
unsigned int atom_type_index = 3;
bool is_helical_flag = true;
if (fn_parts[1] == "non") {
ss_type = "non-helical";
ss_type_index = 1;
frag_string_index = 3;
atom_type_index = 4;
is_helical_flag = false;
}
std::string frag_string = fn_parts[frag_string_index];
int frag_index = coot::util::string_to_int(frag_string);
const std::string &at_raw = fn_parts[atom_type_index];
unsigned int l = at_raw.size();
std::string atom_type = at_raw.substr(0,l-6);
if (false)
std::cout << " decoded: " << res_name << " " << ss_type << " " << frag_index
<< " " << atom_type << std::endl;
std::string line;
std::vector<std::string> lines;
std::ifstream f(files[i].c_str());
while (std::getline(f, line)) {
lines.push_back(line);
}
for (unsigned int j=0; j<lines.size(); j++) {
const std::string &line = lines[j];
std::vector<std::string> parts = coot::util::split_string_on_whitespace_no_blanks(line);
if (parts.size() == 4) {
// .. x y z count
try {
int x = coot::util::string_to_int(parts[0]);
int y = coot::util::string_to_int(parts[1]);
int z = coot::util::string_to_int(parts[2]);
int c = coot::util::string_to_int(parts[3]);
box_index_t bi(x,y,z);
add_to_box(REFERENCE, res_name, is_helical_flag, frag_index, bi, atom_type, c);
}
catch (const std::runtime_error &rte) {
std::cout << "failed to parse " << line << " from " << files[i] << " " << rte.what() << std::endl;
}
}
}
}
catch (const std::runtime_error &rte) { }
}
}
}
void
coot::daca::fill_helix_flags(mmdb::Model *model_p, mmdb::Manager *mol) {
std::vector<std::string> ch_ids;
if (model_p) {
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
ch_ids.push_back(chain_p->GetChainID());
}
}
for (unsigned int ich=0; ich<ch_ids.size(); ich++) {
int residue_selection_handle = mol->NewSelection();
mol->Select (residue_selection_handle, mmdb::STYPE_RESIDUE, 0,
ch_ids[ich].c_str(),
mmdb::ANY_RES, "*", // starting res
mmdb::ANY_RES, "*", // ending res
"*", // residue name
"*", // Residue must contain this atom name?
"*", // Residue must contain this Element?
"*", // altLocs
mmdb::SKEY_NEW // selection key
);
std::vector<mmdb::Residue *> helical_residues_in_chain = like_a_helix(mol, residue_selection_handle);
for (unsigned int i=0; i<helical_residues_in_chain.size(); i++)
helical_residues.push_back(helical_residues_in_chain[i]);
mol->DeleteSelection(residue_selection_handle);
}
}
bool
coot::daca::atom_is_close_to_a_residue_atom(mmdb::Atom *at, mmdb::Residue *reference_residue_p) const {
float d_close = 1.7 + 1.7 + 1.5; // or so
float dd_close = d_close * d_close;
bool status = false;
int n_residue_atoms;
mmdb::PPAtom residue_atoms = 0;
reference_residue_p->GetAtomTable(residue_atoms, n_residue_atoms);
for (int iat=0; iat<n_residue_atoms; iat++) {
mmdb::Atom *ref_at = residue_atoms[iat];
float dd =
(at->x - ref_at->x) * (at->x - ref_at->x) +
(at->y - ref_at->y) * (at->y - ref_at->y) +
(at->z - ref_at->z) * (at->z - ref_at->x);
if (dd < dd_close) {
status = true;
break;
}
}
return status;
}
bool
coot::daca::atom_is_neighbour_mainchain(mmdb::Atom *at, mmdb::Residue *reference_residue_p) const {
bool status = false;
int idx_res_1 = reference_residue_p->index;
int idx_res_2 = at->residue->index;
int idx_delta = abs(idx_res_2 - idx_res_1);
if (idx_delta < 2) {
std::string atom_name(at->GetAtomName());
if (atom_name == " N ") { status = true; }
if (atom_name == " CA ") { status = true; }
if (atom_name == " C ") { status = true; }
if (atom_name == " O ") { status = true; }
}
return status;
}
void
coot::daca::presize_boxes(mode_t mode) {
std::vector<std::string> residue_types = { "GLY", "ALA", "CYS", "ASP", "GLU", "PHE", "HIS", "ILE", "LYS", "LEU",
"MET", "MSE", "ASN", "PRO", "GLN", "ARG", "SER", "THR", "VAL", "TRP",
"TYR"};
if (mode == REFERENCE) {
boxes_have_been_resized = true;
for (auto type : residue_types) {
const std::vector<std::string> h_types = {"-helical", "-non-helical"};
for (auto h : h_types) {
std::string key = type + h;
boxes[key].resize(6);
}
}
}
if (mode == ANALYSIS) {
for (auto type : residue_types) {
const std::vector<std::string> h_types = {"-helical", "-non-helical"};
for (auto h : h_types) {
std::string key = type + h;
boxes_for_testing[key].resize(6);
}
}
}
}
#include "geometry/main-chain.hh"
int
coot::daca::calculate_daca(mmdb::Residue *reference_residue_p,
const std::vector<std::pair<mmdb::Atom *, std::string> > &typed_atoms,
coot::daca::mode_t mode) {
bool print_scores = true;
// brain-dead distance search (sad face)
// has fill_helix_flags() been called before now?
double d_crit = 8.0; // or something
double dd_crit = d_crit * d_crit;
presize_boxes();
int reference_counts = 0;
std::string res_name(reference_residue_p->GetResName());
int reference_residue_seqnum = reference_residue_p->GetSeqNum();
std::vector<std::vector<mmdb::Atom *> > fragments = get_daca_fragments(reference_residue_p);
if (false)
std::cout << "debug:: fragments.size() " << fragments.size() << " "
<< residue_spec_t(reference_residue_p)
<< " " << reference_residue_p->GetResName() << std::endl;
for (unsigned int ifrag=0; ifrag<fragments.size(); ifrag++) {
const std::vector<mmdb::Atom *> &atom_vec(fragments[ifrag]);
std::vector<clipper::Coord_orth> reference_positions_vec;
clipper::Coord_orth sum(0,0,0); // for calculating the centre of the fragment
std::vector<mmdb::Atom *>::const_iterator it;
for (it=atom_vec.begin(); it!=atom_vec.end(); it++) {
clipper::Coord_orth pos = co(*it);
reference_positions_vec.push_back(pos);
sum += pos;
}
if (reference_positions_vec.size() > 2) {
if (reference_positions_vec.size() == atom_vec.size()) {
double m = 1.0/static_cast<double>(reference_positions_vec.size());
clipper::Coord_orth frag_centre(sum * m);
// Get the RTop that transforms the fragment to a reference
// fragment at the origin.
std::pair<bool, clipper::RTop_orth> frag_to_reference_rtop_pair =
get_frag_to_reference_rtop(res_name, ifrag, atom_vec);
if (! frag_to_reference_rtop_pair.first) continue;
const clipper::RTop_orth &frag_to_reference_rtop = frag_to_reference_rtop_pair.second;
for (unsigned int ita=0; ita<typed_atoms.size(); ita++) {
mmdb::Atom *at = typed_atoms[ita].first;
const std::string &atom_type = typed_atoms[ita].second;
// don't consider atoms in this residue, of course
if (at->residue == reference_residue_p)
continue;
// don't consider peptide neighbour mainchain
int res_no_delta = at->residue->GetSeqNum() - reference_residue_seqnum;
if (std::abs(res_no_delta) < 2)
if (at->residue->chain == reference_residue_p->chain)
if (is_main_chain_p(at))
continue;
double dd =
(at->x - frag_centre.x()) * (at->x - frag_centre.x()) +
(at->y - frag_centre.y()) * (at->y - frag_centre.y()) +
(at->z - frag_centre.z()) * (at->z - frag_centre.z());
if (dd < dd_crit) {
// Good, found something
if (atom_is_close_to_a_residue_atom(at, reference_residue_p)) {
if (! atom_is_neighbour_mainchain(at, reference_residue_p)) {
clipper::Coord_orth at_pos = co(at);
clipper::Coord_orth transformed_pos = frag_to_reference_rtop * at_pos;
box_index_t box_index(transformed_pos);
bool helical_flag = false;
if (std::find(helical_residues.begin(), helical_residues.end(), reference_residue_p) != helical_residues.end())
helical_flag = true;
if (mode == REFERENCE)
add_to_box(mode, res_name, helical_flag, ifrag, box_index, typed_atoms[ita].second);
if (mode == ANALYSIS) {
// what reference score do we have for this box
std::string box_key = res_name + "-non-helical";
if (helical_flag) box_key = res_name + "-helical";
int counts = get_reference_counts(res_name, helical_flag, ifrag, box_index, typed_atoms[ita].second);
if (counts > 0) {
reference_counts += counts;
if (print_scores)
std::cout << "Score " << residue_spec_t(reference_residue_p) << " "
<< box_key << " " << ifrag << " " << " " << atom_spec_t(at) << " " << atom_type << " "
<< std::setw(2) << box_index.idx_x << " "
<< std::setw(2) << box_index.idx_y << " "
<< std::setw(2) << box_index.idx_z << " "
<< counts << "\n";
} else {
std::cout << "Miss " << residue_spec_t(reference_residue_p) << " "
<< box_key << " " << ifrag << " " << " " << atom_spec_t(at) << " " << atom_type << " "
<< std::setw(2) << box_index.idx_x << " "
<< std::setw(2) << box_index.idx_y << " "
<< std::setw(2) << box_index.idx_z << " "
<< std::endl;
}
}
}
}
}
}
} else {
std::cout << "OOps in atom set vs reference set size test " << std::endl;
}
} else {
std::cout << "ERROR:: in calculate_daca(): This can't happen. reference positions size "
<< reference_positions_vec.size() << " " << residue_spec_t(reference_residue_p)
<< std::endl;
}
}
return reference_counts;
}
void
coot::daca::write_tables_using_reference_structures_from_dir(const std::string &dir_name,
const std::string &output_tables_dir) {
protein_geometry geom;
geom.init_standard();
std::vector<std::string> files = util::glob_files(dir_name, "*.pdb");
std::cout << "in write_tables_using_reference_structures_from_dir() " << dir_name << " "
<< output_tables_dir << std::endl;
for (unsigned int i=0; i<files.size(); i++) {
std::string fn = files[i];
atom_selection_container_t asc = get_atom_selection(fn, false, true, false);
if (asc.read_success) {
std::cout << "write_tables()... read pdb file " << fn << std::endl;
if (false) { // bring this back when the consolidated tables are in place.
bool side_chain_only = false;
std::vector<std::pair<mmdb::Residue *, float> > se = solvent_exposure(asc.mol, side_chain_only);
for (unsigned int ii=0; ii<se.size(); ii++) {
std::string rn(se[ii].first->GetResName());
std::cout << "se " << fn << " " << coot::residue_spec_t(se[ii].first)
<< " " << rn
<< " " << se[ii].second << std::endl;
}
}
mmdb::Model *model_p = asc.mol->GetModel(1);
if (model_p) {
fill_helix_flags(model_p, asc.mol);
std::vector<std::pair<mmdb::Atom *, std::string> > ta = make_typed_atoms(model_p, geom);
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
int nres = chain_p->GetNumberOfResidues();
for (int ires=0; ires<nres; ires++) {
mmdb::Residue *residue_p = chain_p->GetResidue(ires);
if (residue_p) {
std::string res_name(residue_p->GetResName());
if (res_name == "HOH") continue;
if (! util::is_standard_amino_acid_name(res_name)) continue;
calculate_daca(residue_p, ta, REFERENCE);
}
}
}
}
}
}
// debug_boxes("done-write-tables-using-reference-structures");
write_tables(output_tables_dir);
}
void
coot::daca::score_molecule(const std::string &pdb_file_name) {
std::cout << "score_molecule() " << pdb_file_name << std::endl;
int score = 0;
if (coot::file_exists(pdb_file_name)) {
atom_selection_container_t asc = get_atom_selection(pdb_file_name, false, false, false);
if (asc.read_success) {
mmdb::Model *model_p = asc.mol->GetModel(1);
if (model_p) {
std::cout << "INFO:: scoring " << pdb_file_name << std::endl;
protein_geometry geom;
geom.init_standard();
presize_boxes(ANALYSIS);
fill_helix_flags(model_p, asc.mol);
std::vector<std::pair<mmdb::Residue *, float> > se = solvent_exposure(asc.mol);
std::map<mmdb::Residue *, float> se_as_map;
for (unsigned int i=0; i<se.size(); i++)
se_as_map[se[i].first] = se[i].second;
std::vector<std::pair<mmdb::Atom *, std::string> > ta = make_typed_atoms(model_p, geom);
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
int nres = chain_p->GetNumberOfResidues();
for (int ires=0; ires<nres; ires++) {
mmdb::Residue *residue_p = chain_p->GetResidue(ires);
if (residue_p) {
std::string res_name(residue_p->GetResName());
int res_number = residue_p->GetSeqNum();
if (res_name == "HOH") continue;
if (! util::is_standard_amino_acid_name(res_name)) continue;
int daca_score = calculate_daca(residue_p, ta, ANALYSIS);
score += daca_score;
float se_score = -1.0;
std::map<mmdb::Residue *, float>::const_iterator it;
it = se_as_map.find(residue_p);
std::string rt = residue_p->GetResName();
if (it != se_as_map.end()) {
se_score = it->second;
} else {
std::cout << "failed to find residue " << residue_spec_t(residue_p)
<< " " << rt << " in map of size " << se_as_map.size()
<< std::endl;
}
std::string ss_type = "helix";
if (std::find(helical_residues.begin(), helical_residues.end(), residue_p) == helical_residues.end())
ss_type = "non-helical";
std::cout << "residue_number " << res_number << " type " << rt
<< " SS-type " << ss_type << " score " << daca_score
<< " daca_sum_score " << score << " solvent_exposure " << se_score
<< "\n";
}
}
}
//compare_boxes();
}
}
} else {
std::cout << "No such file " << pdb_file_name << std::endl;
}
}
void
coot::daca::compare_boxes() const {
unsigned int n_daca = 0;
unsigned int n_hits = 0;
unsigned int sum = 0;
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::const_iterator it;
for (it =boxes_for_testing.begin(); it!=boxes_for_testing.end(); it++) {
const std::string &res_name_with_ss(it->first);
const std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &v(it->second);
for (unsigned int idx_frag=0; idx_frag<v.size(); idx_frag++) {
const std::map<std::string, std::map<box_index_t, unsigned int> > &m1(v[idx_frag]);
std::map<std::string, std::map<box_index_t, unsigned int> >::const_iterator it_1;
for (it_1=m1.begin(); it_1!=m1.end(); it_1++) {
const std::string &atom_type = it_1->first;
const std::map<box_index_t, unsigned int> &m2(it_1->second);
std::map<box_index_t, unsigned int>::const_iterator it_2;
for (it_2=m2.begin(); it_2!=m2.end(); it_2++) {
const box_index_t &bi = it_2->first;
const unsigned int &count_analysis = it_2->second;
n_daca++;
// does there exist a reference count for that?
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::const_iterator it_ref;
it_ref = boxes.find(res_name_with_ss);
if (it_ref == boxes.end()) {
std::cout << "Failed to find reference for type " << res_name_with_ss << std::endl;
} else {
const std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &v_ref(it_ref->second);
if (! v_ref.empty()) {
const std::map<std::string, std::map<box_index_t, unsigned int> > &m1_ref(v_ref[idx_frag]); // vector sized correctly?
std::map<std::string, std::map<box_index_t, unsigned int> >::const_iterator it_1_ref;
it_1_ref = m1_ref.find(atom_type);
if (it_1_ref == m1_ref.end()) {
std::cout << "Failed to find reference for type " << res_name_with_ss
<< " frag-index " << idx_frag << " atom-type " << atom_type
<< " we have map size " << m1_ref.size() << std::endl;
} else {
const std::map<box_index_t, unsigned int> &m2_ref(it_1_ref->second);
std::map<box_index_t, unsigned int>::const_iterator it_2_ref;
it_2_ref = m2_ref.find(bi);
if (it_2_ref == m2_ref.end()) {
std::cout << "Failed to find reference for " << res_name_with_ss << " "
<< idx_frag << " " << atom_type << " box_index "
<< bi.idx_x << " " << bi.idx_y << " " << bi.idx_z << std::endl;
} else {
int count_ref = it_2_ref->second;
if (false)
std::cout << res_name_with_ss << " " << idx_frag << " " << atom_type << " "
<< bi.idx_x << " " << bi.idx_y << " " << bi.idx_z << " "
<< count_ref << "\n";
sum += count_ref;
// std::cout << "sum " << sum << "\n";
n_hits++;
}
}
} else {
std::cout << "v_ref is empty for " << it_ref->first << std::endl;
}
}
}
}
}
}
std::cout << "compare_boxes() n_daca " << n_daca << " n_hits " << n_hits
<< " sum " << sum << std::endl;
}
void
coot::daca::normalize() {
// iterators not const because we want to modify the contents of the boxes
//
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::iterator it;
for (it =boxes.begin(); it!=boxes.end(); it++) {
const std::string &res_name_with_ss(it->first);
std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &v(it->second);
for (unsigned int idx_frag=0; idx_frag<v.size(); idx_frag++) {
std::map<std::string, std::map<box_index_t, unsigned int> > &m1(v[idx_frag]);
std::map<std::string, std::map<box_index_t, unsigned int> >::iterator it_1;
for (it_1=m1.begin(); it_1!=m1.end(); it_1++) {
const std::string &atom_type = it_1->first;
std::map<box_index_t, unsigned int> &m2(it_1->second);
unsigned int n_count_sum = 0;
std::map<box_index_t, unsigned int>::const_iterator it_2;
for (it_2=m2.begin(); it_2!=m2.end(); it_2++) {
const box_index_t &bi = it_2->first;
const unsigned int &counts = it_2->second;
n_count_sum += counts;
}
if (false)
std::cout << "normalize " << res_name_with_ss << " "
<< "frag-index " << idx_frag << " "
<< "atom_type " << atom_type << " "
<< n_count_sum << std::endl;
float scale_factor = static_cast<int>(1000000.0/static_cast<float>(n_count_sum));
std::map<box_index_t, unsigned int>::iterator it_counts;
for (it_counts=m2.begin(); it_counts!=m2.end(); it_counts++) {
unsigned int counts = it_counts->second;
it_counts->second = static_cast<int>(scale_factor * static_cast<float>(counts));
}
}
}
}
}
void
coot::daca::normalize_v2() {
// this version normalizes every grid point over every atom type
//
// iterators not const because we want to modify the contents of the boxes
//
std::vector<box_index_t> box_indices_vec;
int e = 6;
for (int ix=-e; ix<e; ix++) {
for (int iy=-e; iy<e; iy++) {
for (int iz=-e; iz<e; iz++) {
box_index_t bi(ix,iy,iz);
box_indices_vec.push_back(bi);
}
}
}
std::cout << "box_indices_vec size() " << box_indices_vec.size() << std::endl;
for (unsigned int i=0; i<box_indices_vec.size(); i++) {
unsigned int sum_counts = 0;
unsigned int n_hits = 0;
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::iterator it;
for (it=boxes.begin(); it!=boxes.end(); it++) {
const std::string &res_name_with_ss(it->first);
std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &v(it->second);
for (unsigned int idx_frag=0; idx_frag<v.size(); idx_frag++) {
std::map<std::string, std::map<box_index_t, unsigned int> > &m1(v[idx_frag]);
std::map<std::string, std::map<box_index_t, unsigned int> >::iterator it_1;
for (it_1=m1.begin(); it_1!=m1.end(); it_1++) {
const std::string &atom_type = it_1->first;
std::map<box_index_t, unsigned int> &m2(it_1->second);
std::map<box_index_t, unsigned int>::const_iterator it_2 = m2.find(box_indices_vec[i]);
if (it_2 != m2.end()) {
n_hits++;
const unsigned int &counts = it_2->second;
sum_counts += counts;
}
}
}
}
std::cout << "box "
<< box_indices_vec[i].idx_x << " "
<< box_indices_vec[i].idx_y << " "
<< box_indices_vec[i].idx_z << " "
<< sum_counts << " n_hits " << n_hits << std::endl;
}
}
// 2aaa get the pdb redo model, build on this and check with privateer.
// as in the verb
void
coot::daca::envelope() {
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::iterator it;
for (it =boxes.begin(); it!=boxes.end(); ++it) {
std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &v(it->second);
for (unsigned int idx_frag=0; idx_frag<v.size(); idx_frag++) {
std::map<std::string, std::map<box_index_t, unsigned int> > &m1(v[idx_frag]);
std::map<std::string, std::map<box_index_t, unsigned int> >::iterator it_1;
for (it_1=m1.begin(); it_1!=m1.end(); ++it_1) {
std::map<box_index_t, unsigned int> &m2(it_1->second);
std::map<box_index_t, unsigned int>::iterator it_2;
for (it_2=m2.begin(); it_2!=m2.end(); ++it_2) {
const box_index_t &bi = it_2->first;
const unsigned int &counts = it_2->second;
unsigned int c = counts;
float dd = bi.d_squared();
float scale_factor = gompertz_scale(dd);
it_2->second = static_cast<int>(scale_factor * static_cast<float>(counts));
if (false) // checking that the scaling is sane
std::cout << "d " << sqrt(dd) << " scale " << scale_factor << " " << c
<< " " << it_2->second << std::endl;
}
}
}
}
}
void
coot::daca::smooth() {
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >::iterator it;
std::map<std::string, std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > >
copy_boxes = boxes;
for (it=boxes.begin(); it!=boxes.end(); ++it) {
const std::string &res_name_with_ss(it->first);
std::vector<std::map<std::string, std::map<box_index_t, unsigned int> > > &v(it->second);
for (unsigned int idx_frag=0; idx_frag<v.size(); idx_frag++) {
std::map<std::string, std::map<box_index_t, unsigned int> > &m1(v[idx_frag]);
std::map<std::string, std::map<box_index_t, unsigned int> >::iterator it_1;
for (it_1=m1.begin(); it_1!=m1.end(); ++it_1) {
const std::string &atom_type = it_1->first;
std::map<box_index_t, unsigned int> &m2(it_1->second);
std::map<box_index_t, unsigned int>::const_iterator it_2;
for (it_2=m2.begin(); it_2!=m2.end(); ++it_2) {
const box_index_t &bi = it_2->first;
const unsigned int &counts = it_2->second;
const int box_idx_min = -8;
const int box_idx_max = 7;
for (int delta_x = -1; delta_x <= 1; delta_x++) {
for (int delta_y = -1; delta_y <= 1; delta_y++) {
for (int delta_z = -1; delta_z <= 1; delta_z++) {
if ((delta_x == 0) && (delta_y == 0) && (delta_z == 0)) {
// do nothing
} else {
int idx_neighb_x = bi.idx_x + delta_x;
int idx_neighb_y = bi.idx_y + delta_y;
int idx_neighb_z = bi.idx_z + delta_z;
if (idx_neighb_x >= box_idx_min) {
if (idx_neighb_x <= box_idx_max) {
if (idx_neighb_y >= box_idx_min) {
if (idx_neighb_y <= box_idx_max) {
if (idx_neighb_z >= box_idx_min) {
if (idx_neighb_z <= box_idx_max) {
box_index_t neighb_box_index(idx_neighb_x, idx_neighb_y, idx_neighb_z);
// int contrib = static_cast<int>(0.125 * static_cast<float>(counts));
int contrib = counts;
copy_boxes[res_name_with_ss][idx_frag][atom_type][neighb_box_index] += contrib;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
boxes = copy_boxes;
}
double
coot::daca::get_radius(const std::string &ele) const {
double radius = 1.70;
if (ele == " H")
radius = 1.20;
if (ele == " N")
radius = 1.55;
if (ele == " O")
radius = 1.52;
if (ele == " S")
radius = 1.8;
// PDBv3
if (ele == "H")
radius = 1.20;
if (ele == "N")
radius = 1.55;
if (ele == "O")
radius = 1.52;
if (ele == "S")
radius = 1.8;
return radius;
}
#include "coot-utils/fib-sphere.hh"
// eposure of the side chain atoms only are considered
//
std::vector<std::pair<mmdb::Residue *, float> >
coot::daca::solvent_exposure(mmdb::Manager *mol, bool side_chain_only) const {
std::vector<std::pair<mmdb::Residue *, float> > v; // return the residue count map, not this
if (! mol) return v;
float max_dist = 2 * (1.7 + 1.4);
mmdb::PPAtom atom_selection = 0;
int n_atoms;
int SelHnd = mol->NewSelection(); // d
mol->SelectAtoms(SelHnd, 1, "*",
mmdb::ANY_RES, "*",
mmdb::ANY_RES, "*",
"*","*","!H","*", mmdb::SKEY_NEW);
std::map<int, std::set<int> > contact_map;
// fill contact_map
mol->GetSelIndex(SelHnd, atom_selection, n_atoms);
if (n_atoms) {
mmdb::Contact *pscontact = NULL; // d
int n_contacts;
long i_contact_group = 1;
mmdb::mat44 my_matt;
mmdb::SymOps symm;
for (int i=0; i<4; i++)
for (int j=0; j<4; j++)
my_matt[i][j] = 0.0;
for (int i=0; i<4; i++) my_matt[i][i] = 1.0;
mol->SeekContacts(atom_selection, n_atoms,
atom_selection, n_atoms,
0, max_dist,
0, // allow contacts from atoms in same residue
pscontact, n_contacts,
0, &my_matt, i_contact_group); // makes reverses also
if (n_contacts > 0) {
if (pscontact) {
// we could do the selection wthout waters, but also filter out waters this way
std::vector<bool> is_water(n_atoms, false);
for (int iat=0; iat<n_atoms; iat++) {
std::string rn(atom_selection[iat]->residue->GetResName());
if (rn == "HOH")
is_water[iat] = true;
}
std::vector<float> radius(n_atoms);
for (int iat=0; iat<n_atoms; iat++) {
std::string ele(atom_selection[iat]->element);
radius[iat] = get_radius(ele); // could be more clever, use atom type.
}
for (int i=0; i<n_contacts; i++) {
// check for not a water here. (both ways)
if (is_water[pscontact[i].id1]) continue;
if (is_water[pscontact[i].id2]) continue;
mmdb::Atom *at = atom_selection[pscontact[i].id1];
if (is_main_chain_p(at)) continue;
contact_map[pscontact[i].id1].insert(pscontact[i].id2);
}
delete [] pscontact;
// OK, contact_map is filled.
// so now let's count the dots around each of the atoms
// for faster execution, need a function that takes 2 atoms and a squared dist
// (so that there is no conversion to doubles)
// bool within_distance_criterion(mmdb::Atom *at_1, mmdb::Atom *at_2, float dist_sq);
auto dot_count = [] (int atom_index,
const std::set<int> &neighbour_atoms,
float atom_radius,
mmdb::PPAtom atom_selection,
const std::vector<clipper::Coord_orth> &unit_sphere_points) {
int count = 0;
const float water_radius = 1.8;
float radius = atom_radius + water_radius;
double dd_crit = radius * radius;
mmdb::Atom *at = atom_selection[atom_index];
clipper::Coord_orth atom_position = co(at);
std::set<int>::const_iterator it;
for (unsigned int i=0; i<unit_sphere_points.size(); i++) {
bool inside_another_atom = false;
clipper::Coord_orth pt_on_sphere(radius * unit_sphere_points[i]);
clipper::Coord_orth pt = atom_position + pt_on_sphere;
for (it=neighbour_atoms.begin(); it!=neighbour_atoms.end(); ++it) {
mmdb::Atom *at_neigb = atom_selection[*it];
clipper::Coord_orth pt_neighb = co(at_neigb);
double dd = (pt-pt_neighb).lengthsq();
if (false)
std::cout << i << " pt-on-sphere " << pt_on_sphere.format()
<< " pt " << pt.format()
<< " d " << sqrt(dd) << " " << dd << std::endl;
if (dd < dd_crit) {
inside_another_atom = true;
break;
}
}
if (! inside_another_atom)
count += 1;
}
if (false) {
std::string rn(at->residue->GetResName());
if (rn == "HOH") {
std::cout << "HOH " << residue_spec_t(at->residue)
<< " with n-neighbs " << neighbour_atoms.size()
<< " returning " << count << std::endl;
}
}
return count;
};
const unsigned int n_sphere_points = 106; // so that each point covers about 1A^2
std::vector<clipper::Coord_orth> unit_sphere_points =
coot::fibonacci_sphere(n_sphere_points);
std::map<mmdb::Residue *, int> residue_count_map;
std::map<int, std::set<int> >::const_iterator it;
for (it=contact_map.begin(); it!=contact_map.end(); ++it) {
int atom_index = it->first;
mmdb::Atom *at = atom_selection[atom_index];
const std::set<int> &neighbours = it->second;
int n_dots_for_atom = 0;
if (neighbours.size() == 0)
n_dots_for_atom = n_sphere_points; // nothing can block the sphere points
else
n_dots_for_atom = dot_count(atom_index, neighbours, radius[atom_index],
atom_selection, unit_sphere_points);
residue_count_map[at->residue] += n_dots_for_atom;
}
{
std::cout << "contact map:" << std::endl;
std::map<mmdb::Residue *, int>::const_iterator it_rc;
for (it_rc=residue_count_map.begin(); it_rc!=residue_count_map.end(); ++it_rc) {
std::string rn = it_rc->first->GetResName();
std::cout << " " << residue_spec_t(it->first) << " " << rn << " "
<< it_rc->second << std::endl;
}
for (it_rc=residue_count_map.begin(); it_rc!=residue_count_map.end(); ++it_rc) {
std::pair<mmdb::Residue *, float> p(it_rc->first, it_rc->second);
v.push_back(p);
}
}
}
}
}
return v;
}
std::vector<std::pair<mmdb::Residue *, float> >
coot::daca::solvent_exposure_old_version_v2(mmdb::Manager *mol,
bool side_chain_only) const {
std::vector<std::pair<mmdb::Residue *, float> > v;
if (! mol) return v;
mmdb::PPAtom atom_selection = 0;
int n_atoms;
int SelHnd = mol->NewSelection(); // d
mol->SelectAtoms(SelHnd, 1, "*",
mmdb::ANY_RES, "*",
mmdb::ANY_RES, "*",
"*","*","!H","*", mmdb::SKEY_NEW);
std::map<mmdb::Residue *, std::set<mmdb::Atom *> > residue_neighbouring_atoms;
mol->GetSelIndex(SelHnd, atom_selection, n_atoms);
if (n_atoms) {
float max_dist = 5.7;
mmdb::Contact *pscontact = NULL; // d
int n_contacts;
long i_contact_group = 1;
mmdb::mat44 my_matt;
mmdb::SymOps symm;
for (int i=0; i<4; i++)
for (int j=0; j<4; j++)
my_matt[i][j] = 0.0;
for (int i=0; i<4; i++) my_matt[i][i] = 1.0;
mol->SeekContacts(atom_selection, n_atoms,
atom_selection, n_atoms,
0, max_dist,
0, // in same residue
pscontact, n_contacts,
0, &my_matt, i_contact_group); // makes reverses also
if (n_contacts > 0) {
if (pscontact) {
for (int i=0; i<n_contacts; i++) {
mmdb::Atom *at_1 = atom_selection[pscontact[i].id1];
mmdb::Atom *at_2 = atom_selection[pscontact[i].id2];
mmdb::Residue *residue_p_1 = at_1->GetResidue();
mmdb::Residue *residue_p_2 = at_2->GetResidue();
if (residue_p_2 == residue_p_1) continue;
std::string res_name_1(residue_p_1->GetResName());
std::string res_name_2(at_2->residue->GetResName());
if (res_name_1 == "HOH") continue;
if (res_name_2 == "HOH") continue;
if (! util::is_standard_amino_acid_name(res_name_1)) continue;
if (! side_chain_only)
residue_neighbouring_atoms[residue_p_1].insert(at_2);
else
if (!is_main_chain_p(at_1))
residue_neighbouring_atoms[residue_p_1].insert(at_2);
}
delete [] pscontact;
}
}
int imod = 1;
mmdb::Model *model_p = mol->GetModel(imod);
if (model_p) {
int n_chains = model_p->GetNumberOfChains();
for (int ichain=0; ichain<n_chains; ichain++) {
mmdb::Chain *chain_p = model_p->GetChain(ichain);
int nres = chain_p->GetNumberOfResidues();
for (int ires=0; ires<nres; ires++) {
mmdb::Residue *residue_p = chain_p->GetResidue(ires);
std::map<mmdb::Residue *, std::set<mmdb::Atom *> >::const_iterator it =
residue_neighbouring_atoms.find(residue_p);
if (it != residue_neighbouring_atoms.end()) {
std::pair<mmdb::Residue *, float> p(residue_p, it->second.size());
v.push_back(p);
}
}
}
}
}
mol->DeleteSelection(SelHnd);
return v;
}
std::vector<std::pair<mmdb::Atom *, float> >
coot::daca::solvent_exposure_old_version(int SelHnd_in, mmdb::Manager *mol) const {
std::vector<std::pair<mmdb::Atom *, float> > v;
if (mol) {
double dot_density = 0.5;
//
double phi_step = 5.0 * (M_PI/180.0);
double theta_step = 5.0 * (M_PI/180.0);
phi_step /= dot_density;
theta_step /= dot_density;
double water_radius = 1.4;
double fudge = 1.0;
mmdb::PPAtom atoms = 0;
int n_atoms;
mol->GetSelIndex(SelHnd_in, atoms, n_atoms);
std::vector<double> radius(n_atoms);
for (int iat=0; iat<n_atoms; iat++) {
std::string ele(atoms[iat]->element);
radius[iat] = get_radius(ele);
}
mmdb::PPAtom atoms_all = 0;
int n_atoms_all;
int SelHnd_all = mol->NewSelection();
mol->SelectAtoms(SelHnd_all, 0, "*", mmdb::ANY_RES, "*", mmdb::ANY_RES, "*", "*", "*", "*", "*");
mol->GetSelIndex(SelHnd_all, atoms_all, n_atoms_all);
for (int iatom=0; iatom<n_atoms; iatom++) {
if (! atoms[iatom]->isTer()) {
clipper::Coord_orth centre(atoms[iatom]->x,
atoms[iatom]->y,
atoms[iatom]->z);
bool even = 1;
int n_points = 0;
int n_sa = 0;
for (double theta=0; theta<M_PI; theta+=theta_step) {
double phi_step_inner = phi_step + 0.1 * pow(theta-0.5*M_PI, 2);
for (double phi=0; phi<2*M_PI; phi+=phi_step_inner) {
if (even) {
double r = fudge * (radius[iatom] + water_radius);
clipper::Coord_orth pt(r*cos(phi)*sin(theta),
r*sin(phi)*sin(theta),
r*cos(theta));
pt += centre;
n_points++;
// now, is pt closer to (a water centre around)
// another atom?
bool is_solvent_accessible = true;
for (int i_all=0; i_all<n_atoms_all; i_all++) {
// don't exclude from self
mmdb::Atom *other_at = atoms_all[i_all];
std::string other_res_name = other_at->GetResName();
if (other_res_name != "HOH") {
if (atoms[iatom] != other_at) {
std::string other_ele = other_at->element;
if (other_ele != " H") {
double other_atom_r = fudge * (get_radius(other_ele) + water_radius);
double other_atom_r_sq = other_atom_r * other_atom_r;
clipper::Coord_orth pt_other(other_at->x, other_at->y, other_at->z);
if ((pt-pt_other).lengthsq() < other_atom_r_sq) {
is_solvent_accessible = 0;
break;
}
}
}
}
}
if (is_solvent_accessible)
n_sa++;
}
even = 1 - even;
}
}
double exposure_frac = double(n_sa)/double(n_points);
if (0)
std::cout << "Atom " << atoms[iatom]->name << " has exposure " << n_sa << "/" << n_points
<< " = " << exposure_frac << std::endl;
std::pair<mmdb::Atom *, float> p(atoms[iatom], exposure_frac);
v.push_back(p);
}
}
mol->DeleteSelection(SelHnd_all); // presumably this was missing before... 20101230
}
return v;
}
void
coot::daca::cook() {
// smooth();
// envelope();
normalize_v2();
}
|