File size: 282,108 Bytes
361724f | 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 | pdb_id,split,case_name,deposition_date,description
154L,train,154L_G2-B_4.03,1994-05-05,"Protein type: mono. Protenix-style input for 154L: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1A47,train,1A47_G4-D_4.12,1998-02-11,"Protein type: mono. Protenix-style input for 1A47: 1 protein chain(s) (residue lengths [683]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1AT5,train,1AT5_G2-B_4.03,1997-08-18,"Protein type: mono. Protenix-style input for 1AT5: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1AX1,train,1AX1_G3-C_4.08,1997-10-24,"Protein type: mono. Protenix-style input for 1AX1: 1 protein chain(s) (residue lengths [239]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1AX2,train,1AX2_G3-C_4.03,1997-10-24,"Protein type: mono. Protenix-style input for 1AX2: 1 protein chain(s) (residue lengths [239]), 1 ligand/glycan slot(s) (CCD_NDG_GAL), 1 covalent-bond record(s)."
1B1Y,train,1B1Y_G2-B_3.30,1998-11-25,"Protein type: mono. Protenix-style input for 1B1Y: 1 protein chain(s) (residue lengths [500]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
1B30,train,1B30_G2-B_3.55,1998-12-15,"Protein type: mono. Protenix-style input for 1B30: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
1B3W,train,1B3W_G2-B_3.28,1998-12-15,"Protein type: mono. Protenix-style input for 1B3W: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_XYP_XYS), 1 covalent-bond record(s)."
1B3X,train,1B3X_G2-B_3.65,1998-12-15,"Protein type: mono. Protenix-style input for 1B3X: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
1B3Y,train,1B3Y_G2-B_3.74,1998-12-15,"Protein type: mono. Protenix-style input for 1B3Y: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
1B3Z,train,1B3Z_G2-B_3.62,1998-12-15,"Protein type: mono. Protenix-style input for 1B3Z: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
1B9Z,train,1B9Z_G2-B_3.41,1999-03-06,"Protein type: mono. Protenix-style input for 1B9Z: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1BAG,train,1BAG_G2-B_3.71,1998-01-30,"Protein type: mono. Protenix-style input for 1BAG: 1 protein chain(s) (residue lengths [425]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC_GLC), 4 covalent-bond record(s)."
1BB5,train,1BB5_G2-D_4.03,1998-04-28,"Protein type: homo. Protenix-style input for 1BB5: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1BCX,train,1BCX_G2-B_3.36,1994-04-01,"Protein type: mono. Protenix-style input for 1BCX: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1BYB,train,1BYB_G2-B_3.46,1994-01-25,"Protein type: mono. Protenix-style input for 1BYB: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1BYC,train,1BYC_G2-B_3.50,1994-01-25,"Protein type: mono. Protenix-style input for 1BYC: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1BYH,train,1BYH_G2-B_3.56,1992-12-31,"Protein type: mono. Protenix-style input for 1BYH: 1 protein chain(s) (residue lengths [214]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1CDG,train,1CDG_G2-D_3.65,1993-08-02,"Protein type: mono. Protenix-style input for 1CDG: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CEN,train,1CEN_G2-B_3.40,1995-12-04,"Protein type: mono. Protenix-style input for 1CEN: 1 protein chain(s) (residue lengths [343]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1CGU,train,1CGU_G2-B_3.56,1992-06-10,"Protein type: mono. Protenix-style input for 1CGU: 1 protein chain(s) (residue lengths [684]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CGV,train,1CGV_G2-B_3.67,1994-08-05,"Protein type: mono. Protenix-style input for 1CGV: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CGW,train,1CGW_G2-B_3.69,1994-08-05,"Protein type: mono. Protenix-style input for 1CGW: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CGX,train,1CGX_G2-B_3.66,1994-08-05,"Protein type: mono. Protenix-style input for 1CGX: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CGY,train,1CGY_G2-D_3.64,1994-08-05,"Protein type: mono. Protenix-style input for 1CGY: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CXE,train,1CXE_G3-E_3.69,1995-07-28,"Protein type: mono. Protenix-style input for 1CXE: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CXF,train,1CXF_G2-B_3.59,1995-07-28,"Protein type: mono. Protenix-style input for 1CXF: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1CXH,train,1CXH_G2-B_3.61,1995-07-31,"Protein type: mono. Protenix-style input for 1CXH: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1CXI,train,1CXI_G2-B_3.74,1995-07-31,"Protein type: mono. Protenix-style input for 1CXI: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1CXK,train,1CXK_G2-B_3.82,1999-02-24,"Protein type: mono. Protenix-style input for 1CXK: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1D0K,train,1D0K_G2-B_3.77,1999-09-12,"Protein type: mono. Protenix-style input for 1D0K: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_AMU_NAG), 1 covalent-bond record(s)."
1D0M,train,1D0M_G2-B_3.64,1999-09-12,"Protein type: mono. Protenix-style input for 1D0M: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 1 covalent-bond record(s)."
1D3C,train,1D3C_G2-B_3.79,1999-09-29,"Protein type: mono. Protenix-style input for 1D3C: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1D6P,train,1D6P_G2-B_4.03,1999-10-15,"Protein type: mono. Protenix-style input for 1D6P: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1D6Q,train,1D6Q_G2-B_3.68,1999-10-15,"Protein type: mono. Protenix-style input for 1D6Q: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1D9U,train,1D9U_G2-C_3.83,1999-10-30,"Protein type: homo. Protenix-style input for 1D9U: 1 protein chain(s) (residue lengths [154]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NDG_NAG_NAG_NAG), 5 covalent-bond record(s)."
1DBN,train,1DBN_G2-D_3.72,1999-11-03,"Protein type: homo. Protenix-style input for 1DBN: 1 protein chain(s) (residue lengths [239]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA), 2 covalent-bond record(s)."
1DL2,train,1DL2_G3-C_5.22,1999-12-08,"Protein type: mono. Protenix-style input for 1DL2: 1 protein chain(s) (residue lengths [511]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
1DTU,train,1DTU_G3-C_3.74,2000-01-13,"Protein type: mono. Protenix-style input for 1DTU: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_G6D), 1 covalent-bond record(s)."
1DWA,train,1DWA_G4-D_6.75,1999-12-05,"Protein type: mono. Protenix-style input for 1DWA: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_XYP_MAN_MAN_FUC), 6 covalent-bond record(s)."
1DWG,train,1DWG_G4-D_6.75,1999-12-05,"Protein type: mono. Protenix-style input for 1DWG: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_XYP_MAN_MAN_FUC), 6 covalent-bond record(s)."
1DZE,train,1DZE_G2-B_4.79,2000-02-25,"Protein type: mono. Protenix-style input for 1DZE: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1E5N,train,1E5N_G2-D_3.76,2000-07-27,"Protein type: homo. Protenix-style input for 1E5N: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
1E6N,train,1E6N_G2-C_3.67,2000-08-21,"Protein type: homo. Protenix-style input for 1E6N: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
1E6R,train,1E6R_G2-C_4.09,2000-08-22,"Protein type: homo. Protenix-style input for 1E6R: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1E6S,train,1E6S_G2-B_4.94,2000-08-23,"Protein type: mono. Protenix-style input for 1E6S: 1 protein chain(s) (residue lengths [501]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1E6Z,train,1E6Z_G2-C_3.68,2000-08-23,"Protein type: homo. Protenix-style input for 1E6Z: 1 protein chain(s) (residue lengths [498]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1E72,train,1E72_G2-B_4.98,2000-08-23,"Protein type: mono. Protenix-style input for 1E72: 1 protein chain(s) (residue lengths [501]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1ECE,train,1ECE_G2-C_3.68,1996-04-04,"Protein type: homo. Protenix-style input for 1ECE: 1 protein chain(s) (residue lengths [358]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
1ECY,train,1ECY_G2-D_4.16,1996-08-06,"Protein type: mono. Protenix-style input for 1ECY: 1 protein chain(s) (residue lengths [142]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1EHN,train,1EHN_G2-B_3.87,2000-02-22,"Protein type: mono. Protenix-style input for 1EHN: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG_NAG_NAG), 7 covalent-bond record(s)."
1EIB,train,1EIB_G2-B_3.86,2000-02-25,"Protein type: mono. Protenix-style input for 1EIB: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG_NAG_NAG), 7 covalent-bond record(s)."
1EO5,train,1EO5_G2-B_3.99,2000-03-22,"Protein type: mono. Protenix-style input for 1EO5: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
1EO7,train,1EO7_G2-B_3.91,2000-03-22,"Protein type: mono. Protenix-style input for 1EO7: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC), 5 covalent-bond record(s)."
1FFQ,train,1FFQ_G2-B_3.70,2000-07-26,"Protein type: mono. Protenix-style input for 1FFQ: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1FFR,train,1FFR_G2-B_3.63,2000-07-26,"Protein type: mono. Protenix-style input for 1FFR: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG_NAG), 6 covalent-bond record(s)."
1G0C,train,1G0C_G2-B_3.57,2000-10-05,"Protein type: mono. Protenix-style input for 1G0C: 1 protein chain(s) (residue lengths [364]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1G9F,train,1G9F_G3-C_6.98,2000-11-23,"Protein type: mono. Protenix-style input for 1G9F: 1 protein chain(s) (residue lengths [253]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_NAG_GAL), 4 covalent-bond record(s)."
1GA2,train,1GA2_G2-C_3.80,2000-11-29,"Protein type: homo. Protenix-style input for 1GA2: 1 protein chain(s) (residue lengths [614]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
1GJW,train,1GJW_G2-B_3.49,2001-08-03,"Protein type: mono. Protenix-style input for 1GJW: 1 protein chain(s) (residue lengths [637]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1GNX,train,1GNX_G2-C_4.12,2001-10-10,"Protein type: homo. Protenix-style input for 1GNX: 1 protein chain(s) (residue lengths [479]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1GOQ,train,1GOQ_G2-B_3.22,2001-10-23,"Protein type: mono. Protenix-style input for 1GOQ: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1GOR,train,1GOR_G2-B_3.34,2001-10-23,"Protein type: mono. Protenix-style input for 1GOR: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_XYS_XYP), 1 covalent-bond record(s)."
1GQJ,train,1GQJ_G2-D_3.55,2001-11-26,"Protein type: homo. Protenix-style input for 1GQJ: 1 protein chain(s) (residue lengths [708]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1GQL,train,1GQL_G2-D_3.20,2001-11-26,"Protein type: homo. Protenix-style input for 1GQL: 1 protein chain(s) (residue lengths [708]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1GZ9,train,1GZ9_G2-B_4.05,2002-05-17,"Protein type: mono. Protenix-style input for 1GZ9: 1 protein chain(s) (residue lengths [239]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_FUC), 2 covalent-bond record(s)."
1H4H,train,1H4H_G2-F_3.47,2001-05-11,"Protein type: homo. Protenix-style input for 1H4H: 1 protein chain(s) (residue lengths [209]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_XYP), 2 covalent-bond record(s)."
1HEW,train,1HEW_G2-B_3.99,1992-01-20,"Protein type: mono. Protenix-style input for 1HEW: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1HF6,train,1HF6_G2-B_3.50,2000-11-29,"Protein type: mono. Protenix-style input for 1HF6: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
1HJV,train,1HJV_G3-L_3.61,2003-02-28,"Protein type: homo. Protenix-style input for 1HJV: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1HJW,train,1HJW_G4-E_3.62,2003-02-28,"Protein type: homo. Protenix-style input for 1HJW: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
1HKK,train,1HKK_G2-C_3.63,2003-03-10,"Protein type: mono. Protenix-style input for 1HKK: 1 protein chain(s) (residue lengths [364]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1HKM,train,1HKM_G2-B_3.79,2003-03-10,"Protein type: mono. Protenix-style input for 1HKM: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1HVQ,train,1HVQ_G2-B_3.86,1994-10-13,"Protein type: mono. Protenix-style input for 1HVQ: 1 protein chain(s) (residue lengths [273]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1IA7,train,1IA7_G2-B_3.58,2001-03-22,"Protein type: mono. Protenix-style input for 1IA7: 1 protein chain(s) (residue lengths [441]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1IS3,train,1IS3_G2-B_3.72,2001-11-12,"Protein type: mono. Protenix-style input for 1IS3: 1 protein chain(s) (residue lengths [135]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1ITC,train,1ITC_G5-E_3.71,2002-01-17,"Protein type: mono. Protenix-style input for 1ITC: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1IW6,train,1IW6_G2-B_5.04,2002-04-22,"Protein type: mono. Protenix-style input for 1IW6: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1IW9,train,1IW9_G2-B_4.99,2002-04-25,"Protein type: mono. Protenix-style input for 1IW9: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1IXF,train,1IXF_G2-B_5.08,2002-06-20,"Protein type: mono. Protenix-style input for 1IXF: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1J0I,train,1J0I_G2-C_3.51,2002-11-14,"Protein type: homo. Protenix-style input for 1J0I: 1 protein chain(s) (residue lengths [588]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
1J0J,train,1J0J_G2-D_3.51,2002-11-14,"Protein type: homo. Protenix-style input for 1J0J: 1 protein chain(s) (residue lengths [588]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1J0K,train,1J0K_G2-C_3.50,2002-11-14,"Protein type: homo. Protenix-style input for 1J0K: 1 protein chain(s) (residue lengths [588]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
1J0Z,train,1J0Z_G3-K_3.32,2002-11-25,"Protein type: homo. Protenix-style input for 1J0Z: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1J10,train,1J10_G2-F_3.62,2002-11-25,"Protein type: homo. Protenix-style input for 1J10: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_XYP_GLC_GLC), 2 covalent-bond record(s)."
1J18,train,1J18_G2-B_3.28,2002-12-02,"Protein type: mono. Protenix-style input for 1J18: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1JEF,train,1JEF_G2-B_4.67,1997-04-23,"Protein type: mono. Protenix-style input for 1JEF: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1JGI,train,1JGI_G2-B_3.33,2001-06-25,"Protein type: mono. Protenix-style input for 1JGI: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1JJ0,train,1JJ0_G2-B_3.74,2001-07-03,"Protein type: mono. Protenix-style input for 1JJ0: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1JPC,train,1JPC_G3-C_3.77,1996-07-30,"Protein type: mono. Protenix-style input for 1JPC: 1 protein chain(s) (residue lengths [109]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
1JS4,train,1JS4_G3-D_3.82,1997-05-30,"Protein type: homo. Protenix-style input for 1JS4: 1 protein chain(s) (residue lengths [605]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1JS8,train,1JS8_G4-E_4.17,2001-08-16,"Protein type: homo. Protenix-style input for 1JS8: 1 protein chain(s) (residue lengths [394]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_BMA), 2 covalent-bond record(s)."
1JSH,train,1JSH_G5-F_4.01,2001-08-17,"Protein type: simple_hetero. Protenix-style input for 1JSH: 2 protein chain(s) (residue lengths [319,176]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
1JSI,train,1JSI_G5-F_4.44,2001-08-17,"Protein type: simple_hetero. Protenix-style input for 1JSI: 2 protein chain(s) (residue lengths [319,176]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
1JSN,train,1JSN_G4-D_4.86,2001-08-17,"Protein type: simple_hetero. Protenix-style input for 1JSN: 2 protein chain(s) (residue lengths [325,176]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
1K1Y,train,1K1Y_G3-D_3.82,2001-09-26,"Protein type: homo. Protenix-style input for 1K1Y: 1 protein chain(s) (residue lengths [659]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1K72,train,1K72_G2-C_3.89,2001-10-18,"Protein type: homo. Protenix-style input for 1K72: 1 protein chain(s) (residue lengths [614]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1K9T,train,1K9T_G2-B_3.52,2001-10-30,"Protein type: mono. Protenix-style input for 1K9T: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1KBG,train,1KBG_G5-E_4.56,1998-08-28,"Protein type: simple_hetero. Protenix-style input for 1KBG: 3 protein chain(s) (residue lengths [274,99,8]), 1 ligand/glycan slot(s) (CCD_GAL_GLA), 1 covalent-bond record(s)."
1KCK,train,1KCK_G2-B_3.77,2001-11-09,"Protein type: mono. Protenix-style input for 1KCK: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_G6D), 1 covalent-bond record(s)."
1KCL,train,1KCL_G4-E_3.65,2001-11-09,"Protein type: mono. Protenix-style input for 1KCL: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1KQY,train,1KQY_G2-B_4.07,2002-01-08,"Protein type: mono. Protenix-style input for 1KQY: 1 protein chain(s) (residue lengths [273]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
1KQZ,train,1KQZ_G2-B_3.80,2002-01-08,"Protein type: mono. Protenix-style input for 1KQZ: 1 protein chain(s) (residue lengths [273]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1KR0,train,1KR0_G2-B_3.80,2002-01-08,"Protein type: mono. Protenix-style input for 1KR0: 1 protein chain(s) (residue lengths [273]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1KR1,train,1KR1_G2-B_3.79,2002-01-08,"Protein type: mono. Protenix-style input for 1KR1: 1 protein chain(s) (residue lengths [273]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1L8N,train,1L8N_G2-B_3.60,2002-03-21,"Protein type: mono. Protenix-style input for 1L8N: 1 protein chain(s) (residue lengths [679]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1LG1,train,1LG1_G2-B_3.50,2002-04-14,"Protein type: mono. Protenix-style input for 1LG1: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1LJN,train,1LJN_G2-B_3.91,2002-04-22,"Protein type: mono. Protenix-style input for 1LJN: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1LL4,train,1LL4_G2-F_3.71,2002-04-26,"Protein type: homo. Protenix-style input for 1LL4: 1 protein chain(s) (residue lengths [392]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1LLO,train,1LLO_G2-B_3.93,1995-11-08,"Protein type: mono. Protenix-style input for 1LLO: 1 protein chain(s) (residue lengths [273]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1LMO,train,1LMO_G2-B_3.80,1994-10-25,"Protein type: mono. Protenix-style input for 1LMO: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1LMP,train,1LMP_G2-B_3.70,1994-10-25,"Protein type: mono. Protenix-style input for 1LMP: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG), 2 covalent-bond record(s)."
1LMQ,train,1LMQ_G2-B_3.85,1994-10-25,"Protein type: mono. Protenix-style input for 1LMQ: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1LMT,train,1LMT_G2-B_4.03,1995-01-13,"Protein type: mono. Protenix-style input for 1LMT: 1 protein chain(s) (residue lengths [136]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1LSZ,train,1LSZ_G2-B_3.88,1994-09-27,"Protein type: mono. Protenix-style input for 1LSZ: 1 protein chain(s) (residue lengths [147]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1LTE,train,1LTE_G3-C_4.17,1991-06-25,"Protein type: mono. Protenix-style input for 1LTE: 1 protein chain(s) (residue lengths [239]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1LZB,train,1LZB_G2-B_3.85,1995-02-10,"Protein type: mono. Protenix-style input for 1LZB: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1LZC,train,1LZC_G2-B_3.83,1995-02-10,"Protein type: mono. Protenix-style input for 1LZC: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1LZE,train,1LZE_G2-B_3.91,1995-02-10,"Protein type: mono. Protenix-style input for 1LZE: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1LZG,train,1LZG_G2-B_3.95,1995-02-10,"Protein type: mono. Protenix-style input for 1LZG: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1LZR,train,1LZR_G2-B_3.98,1994-09-14,"Protein type: mono. Protenix-style input for 1LZR: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1LZS,train,1LZS_G3-D_3.63,1994-09-14,"Protein type: homo. Protenix-style input for 1LZS: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1LZY,train,1LZY_G2-B_3.87,1995-01-09,"Protein type: mono. Protenix-style input for 1LZY: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 1 covalent-bond record(s)."
1MG1,train,1MG1_G2-B_3.54,1999-03-01,"Protein type: mono. Protenix-style input for 1MG1: 1 protein chain(s) (residue lengths [450]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1MS0,train,1MS0_G2-D_3.53,2002-09-19,"Protein type: homo. Protenix-style input for 1MS0: 1 protein chain(s) (residue lengths [648]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1MS9,train,1MS9_G2-D_3.71,2002-09-19,"Protein type: homo. Protenix-style input for 1MS9: 1 protein chain(s) (residue lengths [648]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1MVY,train,1MVY_G3-C_3.79,2002-09-27,"Protein type: mono. Protenix-style input for 1MVY: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1MW0,train,1MW0_G2-B_4.10,2002-09-27,"Protein type: mono. Protenix-style input for 1MW0: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
1MW1,train,1MW1_G2-B_3.78,2002-09-27,"Protein type: mono. Protenix-style input for 1MW1: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1MW2,train,1MW2_G3-C_3.65,2002-09-27,"Protein type: mono. Protenix-style input for 1MW2: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1MW3,train,1MW3_G2-B_3.75,2002-09-27,"Protein type: mono. Protenix-style input for 1MW3: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1NH6,train,1NH6_G2-B_3.72,2002-12-18,"Protein type: mono. Protenix-style input for 1NH6: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
1NPL,train,1NPL_G2-D_3.88,1998-12-17,"Protein type: mono. Protenix-style input for 1NPL: 1 protein chain(s) (residue lengths [109]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
1NWS,train,1NWS_G3-F_3.85,2003-02-06,"Protein type: homo. Protenix-style input for 1NWS: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 1 covalent-bond record(s)."
1NWT,train,1NWT_G4-H_3.62,2003-02-06,"Protein type: homo. Protenix-style input for 1NWT: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NDG_NAG), 4 covalent-bond record(s)."
1NWU,train,1NWU_G3-L_3.58,2003-02-06,"Protein type: homo. Protenix-style input for 1NWU: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NDG), 3 covalent-bond record(s)."
1O84,train,1O84_G2-C_4.51,2002-11-25,"Protein type: homo. Protenix-style input for 1O84: 1 protein chain(s) (residue lengths [70]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1OA7,train,1OA7_G2-B_3.80,2003-01-02,"Protein type: mono. Protenix-style input for 1OA7: 1 protein chain(s) (residue lengths [214]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1OBB,train,1OBB_G2-C_3.72,2003-01-29,"Protein type: homo. Protenix-style input for 1OBB: 1 protein chain(s) (residue lengths [480]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1ODZ,train,1ODZ_G2-C_3.34,2003-03-17,"Protein type: homo. Protenix-style input for 1ODZ: 1 protein chain(s) (residue lengths [386]), 1 ligand/glycan slot(s) (CCD_MAN_BMA), 1 covalent-bond record(s)."
1OGG,train,1OGG_G2-C_4.20,2003-04-30,"Protein type: homo. Protenix-style input for 1OGG: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1OGO,train,1OGO_G2-B_3.77,2003-05-08,"Protein type: mono. Protenix-style input for 1OGO: 1 protein chain(s) (residue lengths [574]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
1OJJ,train,1OJJ_G3-D_3.42,2003-07-10,"Protein type: homo. Protenix-style input for 1OJJ: 1 protein chain(s) (residue lengths [402]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
1OJK,train,1OJK_G2-C_3.45,2003-07-10,"Protein type: homo. Protenix-style input for 1OJK: 1 protein chain(s) (residue lengths [402]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
1OT1,train,1OT1_G4-E_3.83,2003-03-21,"Protein type: mono. Protenix-style input for 1OT1: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1OT2,train,1OT2_G4-E_3.83,2003-03-21,"Protein type: mono. Protenix-style input for 1OT2: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1OVS,train,1OVS_G2-F_3.22,2003-03-27,"Protein type: homo. Protenix-style input for 1OVS: 1 protein chain(s) (residue lengths [114]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
1PEZ,train,1PEZ_G2-B_3.41,2003-05-23,"Protein type: mono. Protenix-style input for 1PEZ: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
1PJ9,train,1PJ9_G2-C_3.41,2003-06-02,"Protein type: mono. Protenix-style input for 1PJ9: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1PT2,train,1PT2_G2-B_3.46,2003-06-22,"Protein type: mono. Protenix-style input for 1PT2: 1 protein chain(s) (residue lengths [447]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1PUU,train,1PUU_G5-E_3.91,2003-06-25,"Protein type: simple_hetero. Protenix-style input for 1PUU: 2 protein chain(s) (residue lengths [249,263]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1PWB,train,1PWB_G2-D_5.06,2003-07-01,"Protein type: homo. Protenix-style input for 1PWB: 1 protein chain(s) (residue lengths [177]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1Q6C,train,1Q6C_G2-B_3.33,2003-08-13,"Protein type: mono. Protenix-style input for 1Q6C: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1Q6D,train,1Q6D_G2-B_3.35,2003-08-13,"Protein type: mono. Protenix-style input for 1Q6D: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1Q6E,train,1Q6E_G2-B_3.36,2003-08-13,"Protein type: mono. Protenix-style input for 1Q6E: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1Q6F,train,1Q6F_G2-B_3.41,2003-08-13,"Protein type: mono. Protenix-style input for 1Q6F: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1Q6G,train,1Q6G_G2-B_3.38,2003-08-13,"Protein type: mono. Protenix-style input for 1Q6G: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1QFO,train,1QFO_G2-E_5.26,1999-04-12,"Protein type: homo. Protenix-style input for 1QFO: 1 protein chain(s) (residue lengths [119]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
1QHO,train,1QHO_G2-C_3.74,1999-05-25,"Protein type: mono. Protenix-style input for 1QHO: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1QHP,train,1QHP_G2-C_3.29,1999-05-25,"Protein type: mono. Protenix-style input for 1QHP: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1QI0,train,1QI0_G2-B_3.66,1999-06-02,"Protein type: mono. Protenix-style input for 1QI0: 1 protein chain(s) (residue lengths [305]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1QK0,train,1QK0_G2-C_3.52,1999-07-08,"Protein type: homo. Protenix-style input for 1QK0: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_XYP_BGC), 1 covalent-bond record(s)."
1QM8,train,1QM8_G2-B_4.79,1999-09-22,"Protein type: mono. Protenix-style input for 1QM8: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1QNR,train,1QNR_G2-B_3.91,1999-10-20,"Protein type: mono. Protenix-style input for 1QNR: 1 protein chain(s) (residue lengths [344]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
1QOS,train,1QOS_G2-D_3.85,1999-11-16,"Protein type: homo. Protenix-style input for 1QOS: 1 protein chain(s) (residue lengths [242]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1QOT,train,1QOT_G2-H_3.39,1999-11-16,"Protein type: homo. Protenix-style input for 1QOT: 1 protein chain(s) (residue lengths [242]), 1 ligand/glycan slot(s) (CCD_GAL_FUC), 1 covalent-bond record(s)."
1R1A,train,1R1A_G5-E_3.25,1989-03-15,"Protein type: simple_hetero. Protenix-style input for 1R1A: 4 protein chain(s) (residue lengths [287,263,238,44]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 2 covalent-bond record(s)."
1R87,train,1R87_G2-B_3.65,2003-10-23,"Protein type: mono. Protenix-style input for 1R87: 1 protein chain(s) (residue lengths [379]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1RE2,train,1RE2_G2-B_3.58,1998-11-05,"Protein type: mono. Protenix-style input for 1RE2: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1REM,train,1REM_G2-B_3.64,1998-01-14,"Protein type: mono. Protenix-style input for 1REM: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_BMA), 1 covalent-bond record(s)."
1REY,train,1REY_G2-B_3.87,1996-08-21,"Protein type: mono. Protenix-style input for 1REY: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1REZ,train,1REZ_G2-B_3.80,1996-08-21,"Protein type: mono. Protenix-style input for 1REZ: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1RQ5,train,1RQ5_G2-B_3.56,2003-12-04,"Protein type: mono. Protenix-style input for 1RQ5: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
1S0I,train,1S0I_G2-B_3.67,2003-12-31,"Protein type: mono. Protenix-style input for 1S0I: 1 protein chain(s) (residue lengths [648]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
1SBD,train,1SBD_G2-B_4.22,1995-07-13,"Protein type: mono. Protenix-style input for 1SBD: 1 protein chain(s) (residue lengths [253]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1SBE,train,1SBE_G2-B_4.37,1995-07-13,"Protein type: mono. Protenix-style input for 1SBE: 1 protein chain(s) (residue lengths [253]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1SBF,train,1SBF_G2-B_4.01,1997-10-21,"Protein type: mono. Protenix-style input for 1SBF: 1 protein chain(s) (residue lengths [253]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1SF4,train,1SF4_G2-B_3.57,2004-02-19,"Protein type: mono. Protenix-style input for 1SF4: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1SF6,train,1SF6_G2-B_3.72,2004-02-19,"Protein type: mono. Protenix-style input for 1SF6: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1SF7,train,1SF7_G2-B_4.03,2004-02-19,"Protein type: mono. Protenix-style input for 1SF7: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
1SFB,train,1SFB_G2-B_4.17,2004-02-19,"Protein type: mono. Protenix-style input for 1SFB: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
1SFG,train,1SFG_G2-B_4.52,2004-02-19,"Protein type: mono. Protenix-style input for 1SFG: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
1SYO,train,1SYO_G2-C_5.79,2004-04-01,"Protein type: homo. Protenix-style input for 1SYO: 1 protein chain(s) (residue lengths [432]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_BMA), 3 covalent-bond record(s)."
1SZ0,train,1SZ0_G2-C_5.22,2004-04-01,"Protein type: homo. Protenix-style input for 1SZ0: 1 protein chain(s) (residue lengths [432]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 3 covalent-bond record(s)."
1TFM,train,1TFM_G6-F_4.98,2004-05-27,"Protein type: simple_hetero. Protenix-style input for 1TFM: 2 protein chain(s) (residue lengths [240,255]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1TVP,train,1TVP_G2-C_3.71,2004-06-30,"Protein type: homo. Protenix-style input for 1TVP: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1TYU,train,1TYU_G2-B_4.50,1996-07-26,"Protein type: mono. Protenix-style input for 1TYU: 1 protein chain(s) (residue lengths [554]), 1 ligand/glycan slot(s) (CCD_RAM_MAN_GLA_RAM_MAN_GLA_TYV_TYV), 7 covalent-bond record(s)."
1TYW,train,1TYW_G2-B_4.46,1996-07-26,"Protein type: mono. Protenix-style input for 1TYW: 1 protein chain(s) (residue lengths [554]), 1 ligand/glycan slot(s) (CCD_RAM_MAN_GLA_RAM_MAN_GLA_TYV_GLC_TYV), 8 covalent-bond record(s)."
1TYX,train,1TYX_G2-B_4.54,1996-07-26,"Protein type: mono. Protenix-style input for 1TYX: 1 protein chain(s) (residue lengths [554]), 1 ligand/glycan slot(s) (CCD_RAM_MAN_GLA_RAM_MAN_GLA_ABE_ABE), 7 covalent-bond record(s)."
1U0A,train,1U0A_G2-E_3.77,2004-07-13,"Protein type: homo. Protenix-style input for 1U0A: 1 protein chain(s) (residue lengths [214]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
1U65,train,1U65_G4-D_4.08,2004-07-29,"Protein type: mono. Protenix-style input for 1U65: 1 protein chain(s) (residue lengths [543]), 1 ligand/glycan slot(s) (CCD_NAG_MAN), 1 covalent-bond record(s)."
1UA7,train,1UA7_G3-C_3.97,2003-03-03,"Protein type: mono. Protenix-style input for 1UA7: 1 protein chain(s) (residue lengths [422]), 1 ligand/glycan slot(s) (CCD_BGC_G6D), 1 covalent-bond record(s)."
1UBZ,train,1UBZ_G2-B_3.66,2003-04-07,"Protein type: mono. Protenix-style input for 1UBZ: 1 protein chain(s) (residue lengths [130]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1UC0,train,1UC0_G2-B_3.82,2003-04-07,"Protein type: mono. Protenix-style input for 1UC0: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1UCQ,train,1UCQ_G2-B_5.05,2003-04-17,"Protein type: mono. Protenix-style input for 1UCQ: 1 protein chain(s) (residue lengths [249]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1UH4,train,1UH4_G2-B_3.58,2003-06-24,"Protein type: mono. Protenix-style input for 1UH4: 1 protein chain(s) (residue lengths [637]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
1UIB,train,1UIB_G2-B_3.78,1996-11-26,"Protein type: mono. Protenix-style input for 1UIB: 1 protein chain(s) (residue lengths [127]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1UIH,train,1UIH_G2-B_3.84,1996-11-26,"Protein type: mono. Protenix-style input for 1UIH: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
1UKQ,train,1UKQ_G3-D_3.80,2003-09-01,"Protein type: homo. Protenix-style input for 1UKQ: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_G6D), 1 covalent-bond record(s)."
1ULC,train,1ULC_G2-D_3.86,2003-09-12,"Protein type: homo. Protenix-style input for 1ULC: 1 protein chain(s) (residue lengths [150]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1ULE,train,1ULE_G2-C_4.12,2003-09-12,"Protein type: homo. Protenix-style input for 1ULE: 1 protein chain(s) (residue lengths [150]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_GLA), 2 covalent-bond record(s)."
1ULF,train,1ULF_G2-D_4.61,2003-09-12,"Protein type: homo. Protenix-style input for 1ULF: 1 protein chain(s) (residue lengths [150]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_FUC_A2G), 3 covalent-bond record(s)."
1UP0,train,1UP0_G2-B_3.62,2003-09-26,"Protein type: mono. Protenix-style input for 1UP0: 1 protein chain(s) (residue lengths [294]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1UQY,train,1UQY_G3-C_3.67,2003-10-23,"Protein type: mono. Protenix-style input for 1UQY: 1 protein chain(s) (residue lengths [378]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
1UQZ,train,1UQZ_G3-C_3.89,2003-10-24,"Protein type: mono. Protenix-style input for 1UQZ: 1 protein chain(s) (residue lengths [378]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_XYP), 2 covalent-bond record(s)."
1UR0,train,1UR0_G2-C_3.71,2003-10-24,"Protein type: homo. Protenix-style input for 1UR0: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_GAL_GAL_GAL), 2 covalent-bond record(s)."
1UR1,train,1UR1_G2-B_3.76,2003-10-24,"Protein type: mono. Protenix-style input for 1UR1: 1 protein chain(s) (residue lengths [378]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_AHR), 2 covalent-bond record(s)."
1UR2,train,1UR2_G2-B_3.64,2003-10-24,"Protein type: mono. Protenix-style input for 1UR2: 1 protein chain(s) (residue lengths [378]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
1UR4,train,1UR4_G2-D_3.65,2003-10-24,"Protein type: homo. Protenix-style input for 1UR4: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 1 covalent-bond record(s)."
1US2,train,1US2_G2-C_4.25,2003-11-17,"Protein type: mono. Protenix-style input for 1US2: 1 protein chain(s) (residue lengths [530]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
1UU4,train,1UU4_G2-B_3.68,2003-12-15,"Protein type: mono. Protenix-style input for 1UU4: 1 protein chain(s) (residue lengths [224]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1UU5,train,1UU5_G2-B_3.67,2003-12-15,"Protein type: mono. Protenix-style input for 1UU5: 1 protein chain(s) (residue lengths [224]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
1UU6,train,1UU6_G2-B_3.56,2003-12-15,"Protein type: mono. Protenix-style input for 1UU6: 1 protein chain(s) (residue lengths [224]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
1V0Z,train,1V0Z_G5-H_4.27,2004-03-12,"Protein type: homo. Protenix-style input for 1V0Z: 1 protein chain(s) (residue lengths [389]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN), 2 covalent-bond record(s)."
1V3H,train,1V3H_G2-B_3.65,2003-11-02,"Protein type: mono. Protenix-style input for 1V3H: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC), 4 covalent-bond record(s)."
1V3I,train,1V3I_G2-B_3.35,2003-11-02,"Protein type: mono. Protenix-style input for 1V3I: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1V3M,train,1V3M_G3-E_3.74,2003-11-03,"Protein type: homo. Protenix-style input for 1V3M: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1V6A,train,1V6A_G2-D_3.66,2003-11-28,"Protein type: homo. Protenix-style input for 1V6A: 1 protein chain(s) (residue lengths [332]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1VBR,train,1VBR_G2-D_3.28,2004-03-02,"Protein type: homo. Protenix-style input for 1VBR: 1 protein chain(s) (residue lengths [328]), 1 ligand/glycan slot(s) (CCD_XYP_XYS), 1 covalent-bond record(s)."
1VEM,train,1VEM_G2-B_3.29,2004-04-03,"Protein type: mono. Protenix-style input for 1VEM: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1VEO,train,1VEO_G2-B_3.34,2004-04-03,"Protein type: mono. Protenix-style input for 1VEO: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
1VEP,train,1VEP_G2-B_3.44,2004-04-03,"Protein type: mono. Protenix-style input for 1VEP: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
1W1X,train,1W1X_G6-I_4.28,2004-06-24,"Protein type: homo. Protenix-style input for 1W1X: 1 protein chain(s) (residue lengths [389]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN), 2 covalent-bond record(s)."
1W20,train,1W20_G2-F_4.04,2004-06-24,"Protein type: homo. Protenix-style input for 1W20: 1 protein chain(s) (residue lengths [389]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1W21,train,1W21_G2-F_4.04,2004-06-25,"Protein type: homo. Protenix-style input for 1W21: 1 protein chain(s) (residue lengths [389]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1W2U,train,1W2U_G2-B_3.56,2004-07-08,"Protein type: mono. Protenix-style input for 1W2U: 1 protein chain(s) (residue lengths [224]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
1W3A,train,1W3A_G2-B_4.00,2004-07-14,"Protein type: mono. Protenix-style input for 1W3A: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
1W3F,train,1W3F_G2-B_3.92,2004-07-15,"Protein type: mono. Protenix-style input for 1W3F: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_NDG_GAL), 1 covalent-bond record(s)."
1W3G,train,1W3G_G2-B_3.85,2004-07-15,"Protein type: mono. Protenix-style input for 1W3G: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_NDG_GAL), 1 covalent-bond record(s)."
1W3L,train,1W3L_G2-B_3.68,2004-07-16,"Protein type: mono. Protenix-style input for 1W3L: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1W8H,train,1W8H_G3-F_4.39,2004-09-21,"Protein type: homo. Protenix-style input for 1W8H: 1 protein chain(s) (residue lengths [115]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
1W8O,train,1W8O_G2-B_5.37,2004-09-24,"Protein type: mono. Protenix-style input for 1W8O: 1 protein chain(s) (residue lengths [601]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
1WDQ,train,1WDQ_G2-B_3.30,2004-05-17,"Protein type: mono. Protenix-style input for 1WDQ: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1WDR,train,1WDR_G2-B_3.38,2004-05-17,"Protein type: mono. Protenix-style input for 1WDR: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
1WDS,train,1WDS_G2-B_3.32,2004-05-17,"Protein type: mono. Protenix-style input for 1WDS: 1 protein chain(s) (residue lengths [495]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
1WHS,train,1WHS_G4-D_4.05,1994-03-07,"Protein type: simple_hetero. Protenix-style input for 1WHS: 2 protein chain(s) (residue lengths [255,153]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
1WLD,train,1WLD_G2-B_3.72,2004-06-22,"Protein type: mono. Protenix-style input for 1WLD: 1 protein chain(s) (residue lengths [135]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1WLW,train,1WLW_G2-B_3.67,2004-06-30,"Protein type: mono. Protenix-style input for 1WLW: 1 protein chain(s) (residue lengths [135]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
1WPC,train,1WPC_G4-E_4.10,2004-09-01,"Protein type: mono. Protenix-style input for 1WPC: 1 protein chain(s) (residue lengths [485]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
1WU6,train,1WU6_G2-B_3.62,2004-12-01,"Protein type: mono. Protenix-style input for 1WU6: 1 protein chain(s) (residue lengths [396]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
1X0K,train,1X0K_G2-B_5.08,2005-03-23,"Protein type: mono. Protenix-style input for 1X0K: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1X0S,train,1X0S_G2-B_5.16,2005-03-28,"Protein type: mono. Protenix-style input for 1X0S: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GLC_MAN_GAL), 2 covalent-bond record(s)."
1X6N,train,1X6N_G2-B_3.83,2004-08-11,"Protein type: mono. Protenix-style input for 1X6N: 1 protein chain(s) (residue lengths [563]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
1XOE,train,1XOE_G2-B_13.70,2004-10-06,"Protein type: mono. Protenix-style input for 1XOE: 1 protein chain(s) (residue lengths [387]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_MAN_MAN_MAN), 5 covalent-bond record(s)."
1XOG,train,1XOG_G2-B_13.77,2004-10-06,"Protein type: mono. Protenix-style input for 1XOG: 1 protein chain(s) (residue lengths [387]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_MAN_MAN_MAN), 5 covalent-bond record(s)."
1XWQ,train,1XWQ_G2-B_3.59,2004-11-02,"Protein type: mono. Protenix-style input for 1XWQ: 1 protein chain(s) (residue lengths [405]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
1Y2U,train,1Y2U_G2-D_3.64,2004-11-23,"Protein type: homo. Protenix-style input for 1Y2U: 1 protein chain(s) (residue lengths [142]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
1Y2V,train,1Y2V_G2-C_3.56,2004-11-23,"Protein type: homo. Protenix-style input for 1Y2V: 1 protein chain(s) (residue lengths [142]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
1Y2W,train,1Y2W_G2-C_3.58,2004-11-23,"Protein type: homo. Protenix-style input for 1Y2W: 1 protein chain(s) (residue lengths [142]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
1Y2X,train,1Y2X_G2-F_3.60,2004-11-23,"Protein type: homo. Protenix-style input for 1Y2X: 1 protein chain(s) (residue lengths [142]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
1YF8,train,1YF8_G6-G_3.85,2004-12-31,"Protein type: simple_hetero. Protenix-style input for 1YF8: 2 protein chain(s) (residue lengths [240,255]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1Z3T,train,1Z3T_G2-B_3.50,2005-03-14,"Protein type: mono. Protenix-style input for 1Z3T: 1 protein chain(s) (residue lengths [431]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
1Z3V,train,1Z3V_G2-B_3.56,2005-03-14,"Protein type: mono. Protenix-style input for 1Z3V: 1 protein chain(s) (residue lengths [431]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
1Z4X,train,1Z4X_G3-D_4.23,2005-03-16,"Protein type: mono. Protenix-style input for 1Z4X: 1 protein chain(s) (residue lengths [532]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
1ZM1,train,1ZM1_G2-C_3.49,2005-05-10,"Protein type: homo. Protenix-style input for 1ZM1: 1 protein chain(s) (residue lengths [241]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
1ZS2,train,1ZS2_G4-D_3.35,2005-05-23,"Protein type: mono. Protenix-style input for 1ZS2: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
1ZU8,train,1ZU8_G2-B_3.65,2005-05-30,"Protein type: mono. Protenix-style input for 1ZU8: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NDG_NDG), 2 covalent-bond record(s)."
2A3E,train,2A3E_G2-D_3.71,2005-06-24,"Protein type: homo. Protenix-style input for 2A3E: 1 protein chain(s) (residue lengths [433]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
2A3H,train,2A3H_G2-B_3.49,1998-01-22,"Protein type: mono. Protenix-style input for 2A3H: 1 protein chain(s) (residue lengths [300]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2ADD,train,2ADD_G4-D_3.39,2005-07-20,"Protein type: mono. Protenix-style input for 2ADD: 1 protein chain(s) (residue lengths [543]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2AEZ,train,2AEZ_G4-D_3.97,2005-07-25,"Protein type: mono. Protenix-style input for 2AEZ: 1 protein chain(s) (residue lengths [543]), 1 ligand/glycan slot(s) (CCD_GLC_FRU_FRU), 2 covalent-bond record(s)."
2ALU,train,2ALU_G4-D_5.15,2005-08-08,"Protein type: mono. Protenix-style input for 2ALU: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_NAG_NDG_NAG_NAG), 3 covalent-bond record(s)."
2AOS,train,2AOS_G3-C_4.48,2005-08-14,"Protein type: simple_hetero. Protenix-style input for 2AOS: 2 protein chain(s) (residue lengths [361,3]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
2ARX,train,2ARX_G2-C_3.45,2005-08-22,"Protein type: homo. Protenix-style input for 2ARX: 1 protein chain(s) (residue lengths [252]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
2B31,train,2B31_G2-B_3.94,2005-09-19,"Protein type: mono. Protenix-style input for 2B31: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NDG_NAG_NAG_NAG), 4 covalent-bond record(s)."
2B46,train,2B46_G2-B_3.33,2005-09-22,"Protein type: mono. Protenix-style input for 2B46: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
2B4F,train,2B4F_G2-B_3.79,2005-09-23,"Protein type: mono. Protenix-style input for 2B4F: 1 protein chain(s) (residue lengths [405]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
2BNJ,train,2BNJ_G2-B_3.52,2005-03-25,"Protein type: mono. Protenix-style input for 2BNJ: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_AHR), 2 covalent-bond record(s)."
2BOF,train,2BOF_G2-B_3.81,2005-04-10,"Protein type: mono. Protenix-style input for 2BOF: 1 protein chain(s) (residue lengths [286]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
2BS5,train,2BS5_G2-B_4.21,2005-05-18,"Protein type: mono. Protenix-style input for 2BS5: 1 protein chain(s) (residue lengths [90]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_FUC), 2 covalent-bond record(s)."
2BS6,train,2BS6_G2-F_4.18,2005-05-18,"Protein type: homo. Protenix-style input for 2BS6: 1 protein chain(s) (residue lengths [90]), 1 ligand/glycan slot(s) (CCD_XYS_GAL_FUC), 2 covalent-bond record(s)."
2BVT,train,2BVT_G2-D_4.04,2005-07-04,"Protein type: homo. Protenix-style input for 2BVT: 1 protein chain(s) (residue lengths [475]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA), 2 covalent-bond record(s)."
2BVW,train,2BVW_G3-D_3.58,1999-02-18,"Protein type: homo. Protenix-style input for 2BVW: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
2C4L,train,2C4L_G2-B_18.23,2005-10-20,"Protein type: mono. Protenix-style input for 2C4L: 1 protein chain(s) (residue lengths [388]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
2CCR,train,2CCR_G2-C_3.68,2006-01-18,"Protein type: homo. Protenix-style input for 2CCR: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_GAL_GAL_GAL), 2 covalent-bond record(s)."
2CIP,train,2CIP_G2-B_3.25,2006-03-24,"Protein type: mono. Protenix-style input for 2CIP: 1 protein chain(s) (residue lengths [282]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2CKR,train,2CKR_G2-C_3.80,2006-04-21,"Protein type: homo. Protenix-style input for 2CKR: 1 protein chain(s) (residue lengths [306]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
2CML,train,2CML_G3-F_4.42,2006-05-10,"Protein type: homo. Protenix-style input for 2CML: 1 protein chain(s) (residue lengths [389]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_MAN), 2 covalent-bond record(s)."
2CNC,train,2CNC_G2-B_3.43,2006-05-19,"Protein type: mono. Protenix-style input for 2CNC: 1 protein chain(s) (residue lengths [386]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_AHR), 2 covalent-bond record(s)."
2CXG,train,2CXG_G2-D_3.61,1998-05-08,"Protein type: mono. Protenix-style input for 2CXG: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2D0G,train,2D0G_G3-C_3.77,2005-08-02,"Protein type: mono. Protenix-style input for 2D0G: 1 protein chain(s) (residue lengths [637]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2D3L,train,2D3L_G3-C_3.76,2005-09-29,"Protein type: mono. Protenix-style input for 2D3L: 1 protein chain(s) (residue lengths [485]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
2D3N,train,2D3N_G4-E_3.84,2005-09-29,"Protein type: mono. Protenix-style input for 2D3N: 1 protein chain(s) (residue lengths [485]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
2D43,train,2D43_G3-D_4.21,2005-10-07,"Protein type: mono. Protenix-style input for 2D43: 1 protein chain(s) (residue lengths [482]), 1 ligand/glycan slot(s) (CCD_AHR_AHR), 1 covalent-bond record(s)."
2D44,train,2D44_G3-C_3.72,2005-10-07,"Protein type: mono. Protenix-style input for 2D44: 1 protein chain(s) (residue lengths [482]), 1 ligand/glycan slot(s) (CCD_XYS_XYS_AHR), 2 covalent-bond record(s)."
2D6O,train,2D6O_G2-B_7.12,2005-11-14,"Protein type: mono. Protenix-style input for 2D6O: 1 protein chain(s) (residue lengths [159]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_NAG_GAL), 3 covalent-bond record(s)."
2DF3,train,2DF3_G2-B_7.46,2006-02-23,"Protein type: mono. Protenix-style input for 2DF3: 1 protein chain(s) (residue lengths [127]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA_SIA), 3 covalent-bond record(s)."
2DIJ,train,2DIJ_G2-B_3.75,1998-05-27,"Protein type: mono. Protenix-style input for 2DIJ: 1 protein chain(s) (residue lengths [686]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2DQA,train,2DQA_G2-D_3.67,2006-05-24,"Protein type: homo. Protenix-style input for 2DQA: 1 protein chain(s) (residue lengths [124]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
2DSU,train,2DSU_G3-C_3.80,2006-07-07,"Protein type: mono. Protenix-style input for 2DSU: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
2DSV,train,2DSV_G3-C_3.74,2006-07-07,"Protein type: mono. Protenix-style input for 2DSV: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
2DSW,train,2DSW_G3-C_3.82,2006-07-07,"Protein type: mono. Protenix-style input for 2DSW: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
2DT0,train,2DT0_G3-C_3.58,2006-07-09,"Protein type: mono. Protenix-style input for 2DT0: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
2DT1,train,2DT1_G3-C_3.77,2006-07-09,"Protein type: mono. Protenix-style input for 2DT1: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
2DT2,train,2DT2_G3-C_3.89,2006-07-09,"Protein type: mono. Protenix-style input for 2DT2: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
2DT3,train,2DT3_G3-C_3.78,2006-07-09,"Protein type: mono. Protenix-style input for 2DT3: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
2DVB,train,2DVB_G2-E_5.66,2006-07-30,"Protein type: homo. Protenix-style input for 2DVB: 1 protein chain(s) (residue lengths [236]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
2DWJ,train,2DWJ_G2-B_4.12,2006-08-15,"Protein type: mono. Protenix-style input for 2DWJ: 1 protein chain(s) (residue lengths [345]), 1 ligand/glycan slot(s) (CCD_FRU_GLC_GAL), 2 covalent-bond record(s)."
2DXY,train,2DXY_G4-D_3.84,2006-09-03,"Protein type: mono. Protenix-style input for 2DXY: 1 protein chain(s) (residue lengths [345]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2E9B,train,2E9B_G4-E_3.75,2007-01-24,"Protein type: homo. Protenix-style input for 2E9B: 1 protein chain(s) (residue lengths [718]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_BGC), 2 covalent-bond record(s)."
2EUM,train,2EUM_G2-B_3.79,2005-10-28,"Protein type: mono. Protenix-style input for 2EUM: 1 protein chain(s) (residue lengths [209]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
2EXJ,train,2EXJ_G2-H_3.35,2005-11-08,"Protein type: homo. Protenix-style input for 2EXJ: 1 protein chain(s) (residue lengths [535]), 1 ligand/glycan slot(s) (CCD_XYS_XYS), 1 covalent-bond record(s)."
2EXK,train,2EXK_G2-F_3.53,2005-11-08,"Protein type: homo. Protenix-style input for 2EXK: 1 protein chain(s) (residue lengths [535]), 1 ligand/glycan slot(s) (CCD_XYS_XYS), 1 covalent-bond record(s)."
2FDM,train,2FDM_G4-D_3.80,2005-12-14,"Protein type: simple_hetero. Protenix-style input for 2FDM: 2 protein chain(s) (residue lengths [361,3]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NDG_NAG_NAG_NAG), 5 covalent-bond record(s)."
2FGL,train,2FGL_G2-D_3.33,2005-12-22,"Protein type: homo. Protenix-style input for 2FGL: 1 protein chain(s) (residue lengths [354]), 1 ligand/glycan slot(s) (CCD_XYS_XYS), 1 covalent-bond record(s)."
2FH8,train,2FH8_G2-B_3.66,2005-12-23,"Protein type: mono. Protenix-style input for 2FH8: 1 protein chain(s) (residue lengths [1083]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
2FHB,train,2FHB_G2-C_3.44,2005-12-23,"Protein type: mono. Protenix-style input for 2FHB: 1 protein chain(s) (residue lengths [1083]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2FHC,train,2FHC_G2-C_3.64,2005-12-23,"Protein type: mono. Protenix-style input for 2FHC: 1 protein chain(s) (residue lengths [1083]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
2FHF,train,2FHF_G3-D_3.65,2005-12-23,"Protein type: mono. Protenix-style input for 2FHF: 1 protein chain(s) (residue lengths [1083]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2G3J,train,2G3J_G2-C_3.76,2006-02-20,"Protein type: mono. Protenix-style input for 2G3J: 1 protein chain(s) (residue lengths [313]), 1 ligand/glycan slot(s) (CCD_XYS_XYS), 1 covalent-bond record(s)."
2G41,train,2G41_G3-C_3.72,2006-02-21,"Protein type: mono. Protenix-style input for 2G41: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
2G8Z,train,2G8Z_G4-D_3.78,2006-03-04,"Protein type: simple_hetero. Protenix-style input for 2G8Z: 2 protein chain(s) (residue lengths [361,3]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
2GDU,train,2GDU_G2-C_3.21,2006-03-17,"Protein type: homo. Protenix-style input for 2GDU: 1 protein chain(s) (residue lengths [504]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2GFT,train,2GFT_G2-C_3.62,2006-03-23,"Protein type: homo. Protenix-style input for 2GFT: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_GAL_GAL_GAL), 2 covalent-bond record(s)."
2GJP,train,2GJP_G4-D_3.81,2006-03-31,"Protein type: mono. Protenix-style input for 2GJP: 1 protein chain(s) (residue lengths [485]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2GN7,train,2GN7_G2-C_4.14,2006-04-09,"Protein type: homo. Protenix-style input for 2GN7: 1 protein chain(s) (residue lengths [252]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_MAN), 2 covalent-bond record(s)."
2GVY,train,2GVY_G3-D_3.24,2006-05-03,"Protein type: homo. Protenix-style input for 2GVY: 1 protein chain(s) (residue lengths [478]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2H5Z,train,2H5Z_G2-C_4.46,2006-05-29,"Protein type: homo. Protenix-style input for 2H5Z: 1 protein chain(s) (residue lengths [122]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
2HIS,train,2HIS_G2-B_3.22,1998-02-23,"Protein type: mono. Protenix-style input for 2HIS: 1 protein chain(s) (residue lengths [312]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 2 covalent-bond record(s)."
2HPA,train,2HPA_G2-E_10.35,1998-09-11,"Protein type: homo. Protenix-style input for 2HPA: 1 protein chain(s) (residue lengths [342]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN), 2 covalent-bond record(s)."
2HRL,train,2HRL_G2-B_4.92,2006-07-20,"Protein type: mono. Protenix-style input for 2HRL: 1 protein chain(s) (residue lengths [127]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA_SIA_NGA), 4 covalent-bond record(s)."
2HRR,train,2HRR_G2-D_3.83,2006-07-20,"Protein type: homo. Protenix-style input for 2HRR: 1 protein chain(s) (residue lengths [532]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2IHO,train,2IHO_G2-B_3.95,2006-09-27,"Protein type: mono. Protenix-style input for 2IHO: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_GAL), 2 covalent-bond record(s)."
2IXU,train,2IXU_G2-B_4.22,2006-07-11,"Protein type: mono. Protenix-style input for 2IXU: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_MUB_NAG), 1 covalent-bond record(s)."
2IXV,train,2IXV_G2-B_4.29,2006-07-11,"Protein type: mono. Protenix-style input for 2IXV: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_MUB_NAG), 1 covalent-bond record(s)."
2J74,train,2J74_G2-E_3.63,2006-10-06,"Protein type: homo. Protenix-style input for 2J74: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_GAL_GAL_GAL), 2 covalent-bond record(s)."
2J8G,train,2J8G_G2-B_4.53,2006-10-25,"Protein type: mono. Protenix-style input for 2J8G: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_NAG_AMU_NAG), 2 covalent-bond record(s)."
2JDH,train,2JDH_G2-G_3.71,2007-01-09,"Protein type: homo. Protenix-style input for 2JDH: 1 protein chain(s) (residue lengths [115]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
2JDK,train,2JDK_G2-G_3.71,2007-01-10,"Protein type: homo. Protenix-style input for 2JDK: 1 protein chain(s) (residue lengths [115]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
2JEQ,train,2JEQ_G2-B_4.10,2007-01-18,"Protein type: mono. Protenix-style input for 2JEQ: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_XYS_XYS_GAL), 6 covalent-bond record(s)."
2MAN,train,2MAN_G2-B_3.82,1998-08-12,"Protein type: mono. Protenix-style input for 2MAN: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_MAN_BMA), 1 covalent-bond record(s)."
2NQY,train,2NQY_G2-D_3.41,2006-11-01,"Protein type: homo. Protenix-style input for 2NQY: 1 protein chain(s) (residue lengths [206]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
2NUV,train,2NUV_G3-C_4.61,2006-11-10,"Protein type: mono. Protenix-style input for 2NUV: 1 protein chain(s) (residue lengths [345]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_MAN_MAN), 3 covalent-bond record(s)."
2NXZ,train,2NXZ_G5-E_3.68,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NXZ: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2NY1,train,2NY1_G5-E_3.68,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NY1: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2NY2,train,2NY2_G5-E_3.58,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NY2: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2NY3,train,2NY3_G5-E_3.59,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NY3: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2NY4,train,2NY4_G5-E_3.63,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NY4: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2NY5,train,2NY5_G5-E_3.69,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NY5: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2NY6,train,2NY6_G5-E_3.72,2006-11-20,"Protein type: simple_hetero. Protenix-style input for 2NY6: 4 protein chain(s) (residue lengths [317,184,214,229]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2O92,train,2O92_G2-B_4.43,2006-12-13,"Protein type: mono. Protenix-style input for 2O92: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
2OK2,train,2OK2_G2-D_3.41,2007-01-15,"Protein type: homo. Protenix-style input for 2OK2: 1 protein chain(s) (residue lengths [402]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2OLH,train,2OLH_G3-C_3.30,2007-01-19,"Protein type: mono. Protenix-style input for 2OLH: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2OVW,train,2OVW_G2-G_3.36,1997-04-04,"Protein type: homo. Protenix-style input for 2OVW: 1 protein chain(s) (residue lengths [411]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2OXB,train,2OXB_G2-B_3.76,2007-02-20,"Protein type: mono. Protenix-style input for 2OXB: 1 protein chain(s) (residue lengths [537]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2P1S,train,2P1S_G4-D_4.10,2007-03-06,"Protein type: mono. Protenix-style input for 2P1S: 1 protein chain(s) (residue lengths [344]), 1 ligand/glycan slot(s) (CCD_GLC_Z9N_GLA), 2 covalent-bond record(s)."
2PHU,train,2PHU_G2-C_3.81,2007-04-12,"Protein type: homo. Protenix-style input for 2PHU: 1 protein chain(s) (residue lengths [252]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_MAN_MAN_MAN), 4 covalent-bond record(s)."
2PI8,train,2PI8_G2-G_3.94,2007-04-13,"Protein type: homo. Protenix-style input for 2PI8: 1 protein chain(s) (residue lengths [345]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
2PWE,train,2PWE_G2-D_3.22,2007-05-11,"Protein type: homo. Protenix-style input for 2PWE: 1 protein chain(s) (residue lengths [556]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2QF8,train,2QF8_G2-B_4.20,2007-06-27,"Protein type: mono. Protenix-style input for 2QF8: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
2QQU,train,2QQU_G4-D_3.41,2007-07-27,"Protein type: mono. Protenix-style input for 2QQU: 1 protein chain(s) (residue lengths [535]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2QQV,train,2QQV_G4-D_3.56,2007-07-27,"Protein type: mono. Protenix-style input for 2QQV: 1 protein chain(s) (residue lengths [537]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2QQW,train,2QQW_G4-D_3.52,2007-07-27,"Protein type: mono. Protenix-style input for 2QQW: 1 protein chain(s) (residue lengths [537]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2QZ2,train,2QZ2_G2-B_3.40,2007-08-16,"Protein type: mono. Protenix-style input for 2QZ2: 1 protein chain(s) (residue lengths [184]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
2QZ3,train,2QZ3_G2-E_3.25,2007-08-16,"Protein type: homo. Protenix-style input for 2QZ3: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
2RFT,train,2RFT_G4-G_4.82,2007-10-01,"Protein type: simple_hetero. Protenix-style input for 2RFT: 2 protein chain(s) (residue lengths [344,176]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_NDG_GAL_SIA), 4 covalent-bond record(s)."
2RFU,train,2RFU_G4-G_5.38,2007-10-01,"Protein type: simple_hetero. Protenix-style input for 2RFU: 2 protein chain(s) (residue lengths [344,176]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
2RFY,train,2RFY_G2-G_3.31,2007-10-02,"Protein type: homo. Protenix-style input for 2RFY: 1 protein chain(s) (residue lengths [430]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2RFZ,train,2RFZ_G2-E_3.27,2007-10-02,"Protein type: homo. Protenix-style input for 2RFZ: 1 protein chain(s) (residue lengths [430]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
2RG0,train,2RG0_G2-I_3.24,2007-10-02,"Protein type: homo. Protenix-style input for 2RG0: 1 protein chain(s) (residue lengths [430]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2RH1,train,2RH1_G2-B_3.53,2007-10-05,"Protein type: mono. Protenix-style input for 2RH1: 1 protein chain(s) (residue lengths [500]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2SBA,train,2SBA_G2-B_4.16,1998-12-03,"Protein type: mono. Protenix-style input for 2SBA: 1 protein chain(s) (residue lengths [253]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
2UVF,train,2UVF_G2-C_3.53,2007-03-09,"Protein type: homo. Protenix-style input for 2UVF: 1 protein chain(s) (residue lengths [608]), 1 ligand/glycan slot(s) (CCD_ADA_ADA), 1 covalent-bond record(s)."
2VBM,train,2VBM_G2-B_6.47,2007-09-14,"Protein type: mono. Protenix-style input for 2VBM: 1 protein chain(s) (residue lengths [514]), 1 ligand/glycan slot(s) (CCD_RAM_RAM_NAG_RAM), 3 covalent-bond record(s)."
2VCO,train,2VCO_G2-C_4.53,2007-09-26,"Protein type: homo. Protenix-style input for 2VCO: 1 protein chain(s) (residue lengths [158]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_MAN_MAN_MAN), 4 covalent-bond record(s)."
2VGD,train,2VGD_G2-B_3.74,2007-11-12,"Protein type: mono. Protenix-style input for 2VGD: 1 protein chain(s) (residue lengths [218]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
2VH9,train,2VH9_G3-H_4.03,2007-11-20,"Protein type: homo. Protenix-style input for 2VH9: 1 protein chain(s) (residue lengths [290]), 1 ligand/glycan slot(s) (CCD_BGC_XYS), 1 covalent-bond record(s)."
2VI0,train,2VI0_G2-B_3.63,2007-11-26,"Protein type: mono. Protenix-style input for 2VI0: 1 protein chain(s) (residue lengths [282]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2VJJ,train,2VJJ_G2-B_3.78,2007-12-11,"Protein type: mono. Protenix-style input for 2VJJ: 1 protein chain(s) (residue lengths [600]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
2VRQ,train,2VRQ_G2-D_3.49,2008-04-09,"Protein type: homo. Protenix-style input for 2VRQ: 1 protein chain(s) (residue lengths [496]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_AHR_XYP), 3 covalent-bond record(s)."
2VX6,train,2VX6_G2-B_3.73,2008-07-01,"Protein type: mono. Protenix-style input for 2VX6: 1 protein chain(s) (residue lengths [396]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA_GLA), 4 covalent-bond record(s)."
2VX7,train,2VX7_G2-B_3.30,2008-07-01,"Protein type: mono. Protenix-style input for 2VX7: 1 protein chain(s) (residue lengths [396]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
2VZV,train,2VZV_G2-C_3.39,2008-08-05,"Protein type: homo. Protenix-style input for 2VZV: 1 protein chain(s) (residue lengths [1032]), 1 ligand/glycan slot(s) (CCD_GCS_GCS), 1 covalent-bond record(s)."
2W39,train,2W39_G2-B_3.53,2008-11-07,"Protein type: mono. Protenix-style input for 2W39: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
2W52,train,2W52_G3-C_4.15,2008-12-03,"Protein type: mono. Protenix-style input for 2W52: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
2W5F,train,2W5F_G2-D_3.81,2008-12-10,"Protein type: homo. Protenix-style input for 2W5F: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
2W5O,train,2W5O_G2-B_3.43,2008-12-11,"Protein type: mono. Protenix-style input for 2W5O: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_AHR_AHR), 1 covalent-bond record(s)."
2W62,train,2W62_G2-C_3.95,2008-12-16,"Protein type: mono. Protenix-style input for 2W62: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
2W63,train,2W63_G2-B_3.72,2008-12-16,"Protein type: mono. Protenix-style input for 2W63: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
2WHL,train,2WHL_G2-B_4.21,2009-05-05,"Protein type: mono. Protenix-style input for 2WHL: 1 protein chain(s) (residue lengths [294]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
2WHM,train,2WHM_G2-B_3.40,2009-05-05,"Protein type: mono. Protenix-style input for 2WHM: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_BMA), 1 covalent-bond record(s)."
2WLQ,train,2WLQ_G3-C_4.03,2009-06-24,"Protein type: mono. Protenix-style input for 2WLQ: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC_BGC), 6 covalent-bond record(s)."
2WM0,train,2WM0_G2-C_3.65,2009-06-29,"Protein type: mono. Protenix-style input for 2WM0: 1 protein chain(s) (residue lengths [548]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
2WMG,train,2WMG_G2-B_3.88,2009-06-30,"Protein type: mono. Protenix-style input for 2WMG: 1 protein chain(s) (residue lengths [581]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_FUC), 3 covalent-bond record(s)."
2WMH,train,2WMH_G2-B_3.51,2009-06-30,"Protein type: mono. Protenix-style input for 2WMH: 1 protein chain(s) (residue lengths [581]), 1 ligand/glycan slot(s) (CCD_GAL_FUC), 1 covalent-bond record(s)."
2WNE,train,2WNE_G2-B_4.04,2009-07-09,"Protein type: mono. Protenix-style input for 2WNE: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_BGC_BGC_BGC), 6 covalent-bond record(s)."
2WR0,train,2WR0_G2-D_5.44,2009-08-28,"Protein type: homo. Protenix-style input for 2WR0: 1 protein chain(s) (residue lengths [509]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
2WR1,train,2WR1_G2-D_4.62,2009-08-29,"Protein type: homo. Protenix-style input for 2WR1: 1 protein chain(s) (residue lengths [509]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 3 covalent-bond record(s)."
2WR2,train,2WR2_G2-E_4.68,2009-08-29,"Protein type: homo. Protenix-style input for 2WR2: 1 protein chain(s) (residue lengths [509]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
2WR9,train,2WR9_G2-F_4.17,2009-09-01,"Protein type: homo. Protenix-style input for 2WR9: 1 protein chain(s) (residue lengths [128]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
2WRA,train,2WRA_G2-B_5.79,2009-09-01,"Protein type: mono. Protenix-style input for 2WRA: 1 protein chain(s) (residue lengths [128]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_MAN), 2 covalent-bond record(s)."
2WWD,train,2WWD_G2-B_4.10,2009-10-22,"Protein type: mono. Protenix-style input for 2WWD: 1 protein chain(s) (residue lengths [468]), 1 ligand/glycan slot(s) (CCD_MUB_NAG), 1 covalent-bond record(s)."
2WYS,train,2WYS_G3-D_3.81,2009-11-20,"Protein type: homo. Protenix-style input for 2WYS: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
2WZE,train,2WZE_G2-C_3.83,2009-11-27,"Protein type: homo. Protenix-style input for 2WZE: 1 protein chain(s) (residue lengths [540]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
2X1X,train,2X1X_G3-C_5.40,2010-01-08,"Protein type: simple_hetero. Protenix-style input for 2X1X: 2 protein chain(s) (residue lengths [110,213]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
2X6W,train,2X6W_G2-B_3.74,2010-02-22,"Protein type: mono. Protenix-style input for 2X6W: 1 protein chain(s) (residue lengths [600]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_GLC_RAM_NAG), 5 covalent-bond record(s)."
2X6X,train,2X6X_G2-B_4.00,2010-02-22,"Protein type: mono. Protenix-style input for 2X6X: 1 protein chain(s) (residue lengths [600]), 1 ligand/glycan slot(s) (CCD_GLA_GLC_RAM_NAG), 3 covalent-bond record(s)."
2X6Y,train,2X6Y_G2-B_3.82,2010-02-22,"Protein type: mono. Protenix-style input for 2X6Y: 1 protein chain(s) (residue lengths [600]), 1 ligand/glycan slot(s) (CCD_NAG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
2X85,train,2X85_G2-B_3.79,2010-03-05,"Protein type: mono. Protenix-style input for 2X85: 1 protein chain(s) (residue lengths [600]), 1 ligand/glycan slot(s) (CCD_NAG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
2X8S,train,2X8S_G2-C_3.74,2010-03-11,"Protein type: homo. Protenix-style input for 2X8S: 1 protein chain(s) (residue lengths [470]), 1 ligand/glycan slot(s) (CCD_AHR_AHR_AHR), 2 covalent-bond record(s)."
2XBO,train,2XBO_G5-E_7.84,2010-04-14,"Protein type: simple_hetero. Protenix-style input for 2XBO: 4 protein chain(s) (residue lengths [248,230,226,80]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
2XEU,train,2XEU_G2-B_4.23,2010-05-18,"Protein type: mono. Protenix-style input for 2XEU: 1 protein chain(s) (residue lengths [64]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2XQO,train,2XQO_G2-C_3.52,2010-09-06,"Protein type: mono. Protenix-style input for 2XQO: 1 protein chain(s) (residue lengths [243]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
2XZ3,train,2XZ3_G2-B_3.43,2010-11-22,"Protein type: mono. Protenix-style input for 2XZ3: 1 protein chain(s) (residue lengths [463]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
2Y74,train,2Y74_G2-C_6.39,2011-01-28,"Protein type: homo. Protenix-style input for 2Y74: 1 protein chain(s) (residue lengths [763]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_MAN), 2 covalent-bond record(s)."
2YFS,train,2YFS_G2-B_3.42,2011-04-07,"Protein type: mono. Protenix-style input for 2YFS: 1 protein chain(s) (residue lengths [571]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
2YFT,train,2YFT_G2-B_3.68,2011-04-07,"Protein type: mono. Protenix-style input for 2YFT: 1 protein chain(s) (residue lengths [571]), 1 ligand/glycan slot(s) (CCD_GLC_FRU_FRU), 2 covalent-bond record(s)."
2YL8,train,2YL8_G2-B_3.31,2011-05-31,"Protein type: mono. Protenix-style input for 2YL8: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_MAN_NAG), 1 covalent-bond record(s)."
2YL9,train,2YL9_G2-F_3.83,2011-06-01,"Protein type: homo. Protenix-style input for 2YL9: 1 protein chain(s) (residue lengths [457]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_NAG), 3 covalent-bond record(s)."
2YLA,train,2YLA_G2-F_3.85,2011-06-01,"Protein type: homo. Protenix-style input for 2YLA: 1 protein chain(s) (residue lengths [442]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_NAG_NAG), 4 covalent-bond record(s)."
2YP3,train,2YP3_G4-D_4.20,2012-10-29,"Protein type: mono. Protenix-style input for 2YP3: 1 protein chain(s) (residue lengths [503]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
2YP4,train,2YP4_G3-C_4.46,2012-10-29,"Protein type: mono. Protenix-style input for 2YP4: 1 protein chain(s) (residue lengths [503]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
2YP5,train,2YP5_G4-D_3.85,2012-10-29,"Protein type: mono. Protenix-style input for 2YP5: 1 protein chain(s) (residue lengths [503]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
2YVV,train,2YVV_G2-D_3.94,2007-04-16,"Protein type: mono. Protenix-style input for 2YVV: 1 protein chain(s) (residue lengths [338]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
2Z1S,train,2Z1S_G2-B_3.68,2007-05-12,"Protein type: mono. Protenix-style input for 2Z1S: 1 protein chain(s) (residue lengths [454]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
2Z8G,train,2Z8G_G2-D_3.76,2007-09-05,"Protein type: homo. Protenix-style input for 2Z8G: 1 protein chain(s) (residue lengths [549]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC), 2 covalent-bond record(s)."
2ZML,train,2ZML_G2-J_3.95,2008-04-19,"Protein type: homo. Protenix-style input for 2ZML: 1 protein chain(s) (residue lengths [241]), 1 ligand/glycan slot(s) (CCD_GLA_GLA), 1 covalent-bond record(s)."
2ZOO,train,2ZOO_G2-B_5.83,2008-05-27,"Protein type: mono. Protenix-style input for 2ZOO: 1 protein chain(s) (residue lengths [442]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3A3H,train,3A3H_G2-B_3.35,1998-02-01,"Protein type: mono. Protenix-style input for 3A3H: 1 protein chain(s) (residue lengths [300]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
3A3Q,train,3A3Q_G2-B_3.93,2009-06-16,"Protein type: mono. Protenix-style input for 3A3Q: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
3A72,train,3A72_G2-B_3.39,2009-09-11,"Protein type: mono. Protenix-style input for 3A72: 1 protein chain(s) (residue lengths [355]), 1 ligand/glycan slot(s) (CCD_AHR_AHR), 1 covalent-bond record(s)."
3A9B,train,3A9B_G2-B_3.91,2009-10-22,"Protein type: mono. Protenix-style input for 3A9B: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3AB6,train,3AB6_G2-B_3.80,2009-12-01,"Protein type: mono. Protenix-style input for 3AB6: 1 protein chain(s) (residue lengths [122]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
3AHT,train,3AHT_G2-D_3.25,2010-04-29,"Protein type: homo. Protenix-style input for 3AHT: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3AKG,train,3AKG_G2-B_3.87,2010-07-14,"Protein type: mono. Protenix-style input for 3AKG: 1 protein chain(s) (residue lengths [468]), 1 ligand/glycan slot(s) (CCD_AHR_AHR), 1 covalent-bond record(s)."
3AKH,train,3AKH_G2-B_3.70,2010-07-14,"Protein type: mono. Protenix-style input for 3AKH: 1 protein chain(s) (residue lengths [468]), 1 ligand/glycan slot(s) (CCD_AHR_AHR), 1 covalent-bond record(s)."
3ALG,train,3ALG_G2-B_4.15,2010-08-03,"Protein type: mono. Protenix-style input for 3ALG: 1 protein chain(s) (residue lengths [353]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
3AMG,train,3AMG_G2-C_3.54,2010-08-20,"Protein type: homo. Protenix-style input for 3AMG: 1 protein chain(s) (residue lengths [317]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3AMM,train,3AMM_G2-D_3.54,2010-08-20,"Protein type: homo. Protenix-style input for 3AMM: 1 protein chain(s) (residue lengths [265]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3AMN,train,3AMN_G3-D_3.50,2010-08-20,"Protein type: homo. Protenix-style input for 3AMN: 1 protein chain(s) (residue lengths [265]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3AMP,train,3AMP_G3-D_3.48,2010-08-20,"Protein type: homo. Protenix-style input for 3AMP: 1 protein chain(s) (residue lengths [265]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3AMQ,train,3AMQ_G2-H_3.51,2010-08-20,"Protein type: homo. Protenix-style input for 3AMQ: 1 protein chain(s) (residue lengths [265]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
3AOF,train,3AOF_G2-C_3.63,2010-09-27,"Protein type: homo. Protenix-style input for 3AOF: 1 protein chain(s) (residue lengths [317]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA), 2 covalent-bond record(s)."
3ASQ,train,3ASQ_G2-D_4.53,2010-12-17,"Protein type: homo. Protenix-style input for 3ASQ: 1 protein chain(s) (residue lengths [326]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
3ASR,train,3ASR_G2-D_4.80,2010-12-17,"Protein type: homo. Protenix-style input for 3ASR: 1 protein chain(s) (residue lengths [326]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
3ASS,train,3ASS_G2-C_4.52,2010-12-17,"Protein type: homo. Protenix-style input for 3ASS: 1 protein chain(s) (residue lengths [326]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_FUC), 3 covalent-bond record(s)."
3AST,train,3AST_G2-C_4.69,2010-12-17,"Protein type: homo. Protenix-style input for 3AST: 1 protein chain(s) (residue lengths [326]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_FUC), 3 covalent-bond record(s)."
3AXE,train,3AXE_G2-B_3.62,2011-04-04,"Protein type: mono. Protenix-style input for 3AXE: 1 protein chain(s) (residue lengths [249]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3AYD,train,3AYD_G2-B_4.18,2011-05-04,"Protein type: mono. Protenix-style input for 3AYD: 1 protein chain(s) (residue lengths [135]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
3AYS,train,3AYS_G2-B_3.72,2011-05-16,"Protein type: mono. Protenix-style input for 3AYS: 1 protein chain(s) (residue lengths [376]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
3AZR,train,3AZR_G2-C_3.40,2011-05-30,"Protein type: homo. Protenix-style input for 3AZR: 1 protein chain(s) (residue lengths [317]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
3AZS,train,3AZS_G2-C_3.43,2011-05-30,"Protein type: homo. Protenix-style input for 3AZS: 1 protein chain(s) (residue lengths [317]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
3AZT,train,3AZT_G2-E_3.69,2011-05-30,"Protein type: homo. Protenix-style input for 3AZT: 1 protein chain(s) (residue lengths [317]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3B9A,train,3B9A_G2-B_3.72,2007-11-03,"Protein type: mono. Protenix-style input for 3B9A: 1 protein chain(s) (residue lengths [584]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
3B9D,train,3B9D_G2-B_3.67,2007-11-05,"Protein type: mono. Protenix-style input for 3B9D: 1 protein chain(s) (residue lengths [584]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
3BKV,train,3BKV_G2-B_3.76,2007-12-07,"Protein type: mono. Protenix-style input for 3BKV: 1 protein chain(s) (residue lengths [268]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
3BYN,train,3BYN_G2-B_3.94,2008-01-16,"Protein type: mono. Protenix-style input for 3BYN: 1 protein chain(s) (residue lengths [473]), 1 ligand/glycan slot(s) (CCD_FRU_GLC_GLA), 2 covalent-bond record(s)."
3CA4,train,3CA4_G4-E_3.92,2008-02-19,"Protein type: mono. Protenix-style input for 3CA4: 1 protein chain(s) (residue lengths [258]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
3CDZ,train,3CDZ_G4-D_6.08,2008-02-27,"Protein type: simple_hetero. Protenix-style input for 3CDZ: 2 protein chain(s) (residue lengths [754,684]), 1 ligand/glycan slot(s) (CCD_NAG_MAN_MAN_MAN), 3 covalent-bond record(s)."
3CEL,train,3CEL_G2-B_3.58,1996-08-24,"Protein type: mono. Protenix-style input for 3CEL: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3CFW,train,3CFW_G2-B_10.07,2008-03-04,"Protein type: mono. Protenix-style input for 3CFW: 1 protein chain(s) (residue lengths [164]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_MAN_MAN_BMA), 4 covalent-bond record(s)."
3CU0,train,3CU0_G2-D_3.66,2008-04-15,"Protein type: homo. Protenix-style input for 3CU0: 1 protein chain(s) (residue lengths [281]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 1 covalent-bond record(s)."
3CV5,train,3CV5_G2-B_3.85,2008-04-17,"Protein type: mono. Protenix-style input for 3CV5: 1 protein chain(s) (residue lengths [1045]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_MAN_MAN_MAN), 4 covalent-bond record(s)."
3CZN,train,3CZN_G2-B_4.40,2008-04-29,"Protein type: mono. Protenix-style input for 3CZN: 1 protein chain(s) (residue lengths [1045]), 1 ligand/glycan slot(s) (CCD_NDG_BMA_MAN_NAG_MAN_MAN_MAN), 6 covalent-bond record(s)."
3D3D,train,3D3D_G2-C_3.73,2008-05-09,"Protein type: homo. Protenix-style input for 3D3D: 1 protein chain(s) (residue lengths [154]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
3DIV,train,3DIV_G4-D_4.50,2008-06-21,"Protein type: mono. Protenix-style input for 3DIV: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
3DZW,train,3DZW_G2-H_3.83,2008-07-30,"Protein type: homo. Protenix-style input for 3DZW: 1 protein chain(s) (residue lengths [109]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
3EDF,train,3EDF_G2-C_3.84,2008-09-03,"Protein type: homo. Protenix-style input for 3EDF: 1 protein chain(s) (residue lengths [601]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
3ENG,train,3ENG_G2-B_3.63,1996-10-17,"Protein type: mono. Protenix-style input for 3ENG: 1 protein chain(s) (residue lengths [213]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3F5F,train,3F5F_G2-B_3.44,2008-11-03,"Protein type: mono. Protenix-style input for 3F5F: 1 protein chain(s) (residue lengths [658]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3F5J,train,3F5J_G2-C_3.66,2008-11-03,"Protein type: homo. Protenix-style input for 3F5J: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3F5K,train,3F5K_G2-C_3.90,2008-11-03,"Protein type: homo. Protenix-style input for 3F5K: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
3F5L,train,3F5L_G2-C_3.15,2008-11-04,"Protein type: homo. Protenix-style input for 3F5L: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3FHQ,train,3FHQ_G2-E_3.95,2008-12-10,"Protein type: homo. Protenix-style input for 3FHQ: 1 protein chain(s) (residue lengths [621]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_MAN), 2 covalent-bond record(s)."
3FJW,train,3FJW_G2-C_3.51,2008-12-15,"Protein type: homo. Protenix-style input for 3FJW: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_BMA_MAN), 2 covalent-bond record(s)."
3GVJ,train,3GVJ_G3-C_5.88,2009-03-31,"Protein type: mono. Protenix-style input for 3GVJ: 1 protein chain(s) (residue lengths [670]), 1 ligand/glycan slot(s) (CCD_SLB_SIA_SIA_SIA), 3 covalent-bond record(s)."
3GVK,train,3GVK_G2-D_4.22,2009-03-31,"Protein type: homo. Protenix-style input for 3GVK: 1 protein chain(s) (residue lengths [670]), 1 ligand/glycan slot(s) (CCD_SLB_SIA_SIA), 3 covalent-bond record(s)."
3GVL,train,3GVL_G2-B_4.13,2009-03-31,"Protein type: mono. Protenix-style input for 3GVL: 1 protein chain(s) (residue lengths [670]), 1 ligand/glycan slot(s) (CCD_SLB_SIA), 1 covalent-bond record(s)."
3GXN,train,3GXN_G2-C_3.84,2009-04-02,"Protein type: homo. Protenix-style input for 3GXN: 1 protein chain(s) (residue lengths [398]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3GXR,train,3GXR_G2-E_3.66,2009-04-02,"Protein type: homo. Protenix-style input for 3GXR: 1 protein chain(s) (residue lengths [187]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3GXT,train,3GXT_G5-H_6.55,2009-04-02,"Protein type: homo. Protenix-style input for 3GXT: 1 protein chain(s) (residue lengths [398]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_MAN), 2 covalent-bond record(s)."
3HG3,train,3HG3_G4-G_3.44,2009-05-13,"Protein type: homo. Protenix-style input for 3HG3: 1 protein chain(s) (residue lengths [404]), 1 ligand/glycan slot(s) (CCD_GLC_GLA), 1 covalent-bond record(s)."
3HTP,train,3HTP_G4-D_5.28,2009-06-12,"Protein type: simple_hetero. Protenix-style input for 3HTP: 2 protein chain(s) (residue lengths [324,160]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
3HTQ,train,3HTQ_G4-D_4.00,2009-06-12,"Protein type: simple_hetero. Protenix-style input for 3HTQ: 2 protein chain(s) (residue lengths [324,160]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
3HTT,train,3HTT_G4-D_4.63,2009-06-12,"Protein type: simple_hetero. Protenix-style input for 3HTT: 2 protein chain(s) (residue lengths [324,160]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
3I8T,train,3I8T_G2-B_4.03,2009-07-10,"Protein type: mono. Protenix-style input for 3I8T: 1 protein chain(s) (residue lengths [164]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
3IFE,train,3IFE_G2-C_4.25,2009-07-24,"Protein type: mono. Protenix-style input for 3IFE: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3IT9,train,3IT9_G2-F_3.59,2009-08-27,"Protein type: homo. Protenix-style input for 3IT9: 1 protein chain(s) (residue lengths [352]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3J2Q,train,3J2Q_G4-D_5.89,2012-12-11,"Protein type: simple_hetero. Protenix-style input for 3J2Q: 2 protein chain(s) (residue lengths [754,684]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_BMA), 3 covalent-bond record(s)."
3JD8,train,3JD8_G3-D_4.88,2016-05-01,"Protein type: mono. Protenix-style input for 3JD8: 1 protein chain(s) (residue lengths [1278]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
3K8L,train,3K8L_G2-C_3.84,2009-10-14,"Protein type: homo. Protenix-style input for 3K8L: 1 protein chain(s) (residue lengths [669]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
3K8M,train,3K8M_G4-J_3.82,2009-10-14,"Protein type: homo. Protenix-style input for 3K8M: 1 protein chain(s) (residue lengths [669]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3KE0,train,3KE0_G2-C_4.51,2009-10-23,"Protein type: homo. Protenix-style input for 3KE0: 1 protein chain(s) (residue lengths [497]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 1 covalent-bond record(s)."
3KOU,train,3KOU_G2-C_4.71,2009-11-13,"Protein type: homo. Protenix-style input for 3KOU: 1 protein chain(s) (residue lengths [247]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3LRL,train,3LRL_G4-D_3.33,2010-02-11,"Protein type: mono. Protenix-style input for 3LRL: 1 protein chain(s) (residue lengths [479]), 1 ligand/glycan slot(s) (CCD_GLC_GLA), 1 covalent-bond record(s)."
3LRM,train,3LRM_G4-M_3.58,2010-02-11,"Protein type: homo. Protenix-style input for 3LRM: 1 protein chain(s) (residue lengths [479]), 1 ligand/glycan slot(s) (CCD_GLC_FRU_GLA), 2 covalent-bond record(s)."
3LXY,train,3LXY_G2-B_4.19,2010-02-25,"Protein type: mono. Protenix-style input for 3LXY: 1 protein chain(s) (residue lengths [334]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3M3C,train,3M3C_G2-D_3.62,2010-03-09,"Protein type: homo. Protenix-style input for 3M3C: 1 protein chain(s) (residue lengths [159]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
3M3E,train,3M3E_G2-E_3.57,2010-03-09,"Protein type: homo. Protenix-style input for 3M3E: 1 protein chain(s) (residue lengths [161]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
3M3O,train,3M3O_G2-B_3.54,2010-03-09,"Protein type: mono. Protenix-style input for 3M3O: 1 protein chain(s) (residue lengths [158]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
3MAN,train,3MAN_G2-B_4.23,1998-08-12,"Protein type: mono. Protenix-style input for 3MAN: 1 protein chain(s) (residue lengths [302]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
3MMD,train,3MMD_G2-B_3.66,2010-04-19,"Protein type: mono. Protenix-style input for 3MMD: 1 protein chain(s) (residue lengths [379]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3MSD,train,3MSD_G2-C_3.22,2010-04-29,"Protein type: homo. Protenix-style input for 3MSD: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3MSG,train,3MSG_G2-C_3.22,2010-04-29,"Protein type: homo. Protenix-style input for 3MSG: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3MUA,train,3MUA_G2-C_3.22,2010-05-02,"Protein type: homo. Protenix-style input for 3MUA: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3MUI,train,3MUI_G2-E_3.14,2010-05-03,"Protein type: homo. Protenix-style input for 3MUI: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3MUN,train,3MUN_G2-B_5.74,2010-05-03,"Protein type: mono. Protenix-style input for 3MUN: 1 protein chain(s) (residue lengths [693]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3N9K,train,3N9K_G2-B_3.74,2010-05-30,"Protein type: mono. Protenix-style input for 3N9K: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
3NJ3,train,3NJ3_G2-D_3.32,2010-06-16,"Protein type: homo. Protenix-style input for 3NJ3: 1 protein chain(s) (residue lengths [341]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3NV2,train,3NV2_G2-B_3.87,2010-07-07,"Protein type: mono. Protenix-style input for 3NV2: 1 protein chain(s) (residue lengths [138]), 1 ligand/glycan slot(s) (CCD_NDG_GAL), 1 covalent-bond record(s)."
3OB4,train,3OB4_G2-B_3.51,2010-08-06,"Protein type: mono. Protenix-style input for 3OB4: 1 protein chain(s) (residue lengths [500]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
3P11,train,3P11_G4-D_5.53,2010-09-29,"Protein type: simple_hetero. Protenix-style input for 3P11: 3 protein chain(s) (residue lengths [228,214,522]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3PBL,train,3PBL_G2-C_3.35,2010-10-20,"Protein type: homo. Protenix-style input for 3PBL: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3PFX,train,3PFX_G4-D_2.98,2010-10-29,"Protein type: mono. Protenix-style input for 3PFX: 1 protein chain(s) (residue lengths [437]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3PFZ,train,3PFZ_G3-C_2.97,2010-10-29,"Protein type: mono. Protenix-style input for 3PFZ: 1 protein chain(s) (residue lengths [437]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3PHZ,train,3PHZ_G2-C_4.41,2010-11-04,"Protein type: homo. Protenix-style input for 3PHZ: 1 protein chain(s) (residue lengths [286]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
3PJQ,train,3PJQ_G2-B_3.64,2010-11-10,"Protein type: mono. Protenix-style input for 3PJQ: 1 protein chain(s) (residue lengths [648]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
3PL3,train,3PL3_G5-E_2.87,2010-11-12,"Protein type: mono. Protenix-style input for 3PL3: 1 protein chain(s) (residue lengths [437]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
3PQR,train,3PQR_G4-D_4.00,2010-11-26,"Protein type: simple_hetero. Protenix-style input for 3PQR: 2 protein chain(s) (residue lengths [348,11]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3PZO,train,3PZO_G2-C_3.75,2010-12-14,"Protein type: mono. Protenix-style input for 3PZO: 1 protein chain(s) (residue lengths [383]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3PZQ,train,3PZQ_G2-C_3.78,2010-12-14,"Protein type: mono. Protenix-style input for 3PZQ: 1 protein chain(s) (residue lengths [383]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3QEF,train,3QEF_G3-D_3.76,2011-01-20,"Protein type: homo. Protenix-style input for 3QEF: 1 protein chain(s) (residue lengths [307]), 1 ligand/glycan slot(s) (CCD_AHR_AHR_AHR_AHR), 3 covalent-bond record(s)."
3QGV,train,3QGV_G3-C_4.17,2011-01-25,"Protein type: mono. Protenix-style input for 3QGV: 1 protein chain(s) (residue lengths [435]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3QH0,train,3QH0_G2-C_5.53,2011-01-25,"Protein type: homo. Protenix-style input for 3QH0: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_HSQ_NAG), 2 covalent-bond record(s)."
3QSP,train,3QSP_G2-D_4.04,2011-02-21,"Protein type: homo. Protenix-style input for 3QSP: 1 protein chain(s) (residue lengths [426]), 1 ligand/glycan slot(s) (CCD_BMA_MAN), 1 covalent-bond record(s)."
3QXQ,train,3QXQ_G2-E_4.88,2011-03-02,"Protein type: homo. Protenix-style input for 3QXQ: 1 protein chain(s) (residue lengths [355]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
3R6K,train,3R6K_G2-B_5.61,2011-03-21,"Protein type: mono. Protenix-style input for 3R6K: 1 protein chain(s) (residue lengths [305]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
3RWK,train,3RWK_G2-B_3.88,2011-05-09,"Protein type: mono. Protenix-style input for 3RWK: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_MAN), 2 covalent-bond record(s)."
3S4A,train,3S4A_G2-C_3.03,2011-05-19,"Protein type: homo. Protenix-style input for 3S4A: 1 protein chain(s) (residue lengths [822]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3S4D,train,3S4D_G2-B_3.19,2011-05-19,"Protein type: mono. Protenix-style input for 3S4D: 1 protein chain(s) (residue lengths [822]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3S6Y,train,3S6Y_G2-E_4.70,2011-05-26,"Protein type: homo. Protenix-style input for 3S6Y: 1 protein chain(s) (residue lengths [325]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA), 2 covalent-bond record(s)."
3SC7,train,3SC7_G2-B_3.88,2011-06-07,"Protein type: mono. Protenix-style input for 3SC7: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_MAN), 2 covalent-bond record(s)."
3SCT,train,3SCT_G2-C_3.70,2011-06-08,"Protein type: homo. Protenix-style input for 3SCT: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3SCU,train,3SCU_G2-C_3.94,2011-06-08,"Protein type: homo. Protenix-style input for 3SCU: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
3SCV,train,3SCV_G2-C_3.70,2011-06-08,"Protein type: homo. Protenix-style input for 3SCV: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3SCW,train,3SCW_G2-C_3.84,2011-06-08,"Protein type: homo. Protenix-style input for 3SCW: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3T6U,train,3T6U_G2-B_3.70,2011-07-29,"Protein type: mono. Protenix-style input for 3T6U: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
3TF4,train,3TF4_G2-D_3.73,1997-05-30,"Protein type: homo. Protenix-style input for 3TF4: 1 protein chain(s) (residue lengths [605]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
3TH0,train,3TH0_G2-B_4.44,2011-08-18,"Protein type: mono. Protenix-style input for 3TH0: 1 protein chain(s) (residue lengths [559]), 1 ligand/glycan slot(s) (CCD_RAM_MAN_GLA_RAM_MAN_GLA_PZU_PZU), 7 covalent-bond record(s)."
3U14,train,3U14_G2-C_4.30,2011-09-29,"Protein type: homo. Protenix-style input for 3U14: 1 protein chain(s) (residue lengths [535]), 1 ligand/glycan slot(s) (CCD_FRU_FRU_FRU_FRU_FRU_FRU), 5 covalent-bond record(s)."
3U4A,train,3U4A_G2-D_4.19,2011-10-07,"Protein type: homo. Protenix-style input for 3U4A: 1 protein chain(s) (residue lengths [775]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3U75,train,3U75_G2-H_3.93,2011-10-13,"Protein type: homo. Protenix-style input for 3U75: 1 protein chain(s) (residue lengths [535]), 1 ligand/glycan slot(s) (CCD_FRU_FRU_FRU_FRU_GLC), 4 covalent-bond record(s)."
3UEQ,train,3UEQ_G2-B_3.83,2011-10-31,"Protein type: mono. Protenix-style input for 3UEQ: 1 protein chain(s) (residue lengths [632]), 1 ligand/glycan slot(s) (CCD_FRU_GLC), 1 covalent-bond record(s)."
3UER,train,3UER_G2-B_3.35,2011-10-31,"Protein type: mono. Protenix-style input for 3UER: 1 protein chain(s) (residue lengths [655]), 1 ligand/glycan slot(s) (CCD_Z9N_GLC), 1 covalent-bond record(s)."
3UET,train,3UET_G2-C_3.91,2011-10-31,"Protein type: homo. Protenix-style input for 3UET: 1 protein chain(s) (residue lengths [478]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
3UGG,train,3UGG_G6-L_3.75,2011-11-02,"Protein type: homo. Protenix-style input for 3UGG: 1 protein chain(s) (residue lengths [546]), 1 ligand/glycan slot(s) (CCD_GLC_FRU_FRU), 2 covalent-bond record(s)."
3UGH,train,3UGH_G6-J_4.57,2011-11-02,"Protein type: homo. Protenix-style input for 3UGH: 1 protein chain(s) (residue lengths [546]), 1 ligand/glycan slot(s) (CCD_GLC_FRU_FRU), 2 covalent-bond record(s)."
3UP1,train,3UP1_G2-C_4.94,2011-11-17,"Protein type: homo. Protenix-style input for 3UP1: 1 protein chain(s) (residue lengths [223]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3V14,train,3V14_G2-B_3.25,2011-12-09,"Protein type: mono. Protenix-style input for 3V14: 1 protein chain(s) (residue lengths [246]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3VHP,train,3VHP_G2-C_3.50,2011-08-30,"Protein type: homo. Protenix-style input for 3VHP: 1 protein chain(s) (residue lengths [266]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3VIK,train,3VIK_G2-B_3.48,2011-10-03,"Protein type: mono. Protenix-style input for 3VIK: 1 protein chain(s) (residue lengths [487]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3VL9,train,3VL9_G2-C_3.72,2011-11-30,"Protein type: homo. Protenix-style input for 3VL9: 1 protein chain(s) (residue lengths [229]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_XYS_XYS), 5 covalent-bond record(s)."
3VOH,train,3VOH_G2-B_3.21,2012-01-24,"Protein type: mono. Protenix-style input for 3VOH: 1 protein chain(s) (residue lengths [373]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3W25,train,3W25_G2-B_3.32,2012-11-27,"Protein type: mono. Protenix-style input for 3W25: 1 protein chain(s) (residue lengths [336]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3W26,train,3W26_G2-B_3.79,2012-11-27,"Protein type: mono. Protenix-style input for 3W26: 1 protein chain(s) (residue lengths [336]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
3W27,train,3W27_G2-B_3.35,2012-11-27,"Protein type: mono. Protenix-style input for 3W27: 1 protein chain(s) (residue lengths [336]), 1 ligand/glycan slot(s) (CCD_XYS_XYP), 1 covalent-bond record(s)."
3W28,train,3W28_G2-B_3.84,2012-11-27,"Protein type: mono. Protenix-style input for 3W28: 1 protein chain(s) (residue lengths [336]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_XYP), 2 covalent-bond record(s)."
3W29,train,3W29_G2-B_4.58,2012-11-27,"Protein type: mono. Protenix-style input for 3W29: 1 protein chain(s) (residue lengths [336]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_XYP_XYP), 3 covalent-bond record(s)."
3W6C,train,3W6C_G2-H_3.55,2013-02-14,"Protein type: homo. Protenix-style input for 3W6C: 1 protein chain(s) (residue lengths [183]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3W6D,train,3W6D_G2-F_3.58,2013-02-14,"Protein type: homo. Protenix-style input for 3W6D: 1 protein chain(s) (residue lengths [183]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
3W6F,train,3W6F_G2-H_3.56,2013-02-14,"Protein type: homo. Protenix-style input for 3W6F: 1 protein chain(s) (residue lengths [183]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3W7W,train,3W7W_G2-C_3.42,2013-03-08,"Protein type: homo. Protenix-style input for 3W7W: 1 protein chain(s) (residue lengths [760]), 1 ligand/glycan slot(s) (CCD_GLA_GLC), 1 covalent-bond record(s)."
3W7X,train,3W7X_G2-C_3.89,2013-03-08,"Protein type: homo. Protenix-style input for 3W7X: 1 protein chain(s) (residue lengths [760]), 1 ligand/glycan slot(s) (CCD_GLC_GLA), 1 covalent-bond record(s)."
3WAS,train,3WAS_G2-D_3.50,2013-05-08,"Protein type: homo. Protenix-style input for 3WAS: 1 protein chain(s) (residue lengths [390]), 1 ligand/glycan slot(s) (CCD_BGC_BMA), 1 covalent-bond record(s)."
3WCS,train,3WCS_G3-D_3.91,2013-05-31,"Protein type: homo. Protenix-style input for 3WCS: 1 protein chain(s) (residue lengths [254]), 1 ligand/glycan slot(s) (CCD_MAN_NAG), 1 covalent-bond record(s)."
3WDI,train,3WDI_G2-B_3.66,2013-06-18,"Protein type: mono. Protenix-style input for 3WDI: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
3WDJ,train,3WDJ_G2-C_3.73,2013-06-18,"Protein type: mono. Protenix-style input for 3WDJ: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
3WDR,train,3WDR_G2-B_3.92,2013-06-20,"Protein type: mono. Protenix-style input for 3WDR: 1 protein chain(s) (residue lengths [355]), 1 ligand/glycan slot(s) (CCD_MAN_BGC_BGC_BGC), 3 covalent-bond record(s)."
3WDU,train,3WDU_G2-F_3.54,2013-06-25,"Protein type: homo. Protenix-style input for 3WDU: 1 protein chain(s) (residue lengths [297]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3WDV,train,3WDV_G2-G_3.60,2013-06-25,"Protein type: homo. Protenix-style input for 3WDV: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3WDX,train,3WDX_G2-E_3.91,2013-06-25,"Protein type: homo. Protenix-style input for 3WDX: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
3WDY,train,3WDY_G2-F_3.53,2013-06-25,"Protein type: homo. Protenix-style input for 3WDY: 1 protein chain(s) (residue lengths [296]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3WH1,train,3WH1_G2-B_3.67,2013-08-21,"Protein type: mono. Protenix-style input for 3WH1: 1 protein chain(s) (residue lengths [206]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
3WIJ,train,3WIJ_G2-B_3.78,2013-09-13,"Protein type: mono. Protenix-style input for 3WIJ: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
3WIQ,train,3WIQ_G2-B_3.22,2013-09-24,"Protein type: mono. Protenix-style input for 3WIQ: 1 protein chain(s) (residue lengths [764]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
3WL0,train,3WL0_G2-B_3.64,2013-11-05,"Protein type: mono. Protenix-style input for 3WL0: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3WL1,train,3WL1_G3-C_3.61,2013-11-05,"Protein type: mono. Protenix-style input for 3WL1: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
3WN1,train,3WN1_G2-B_3.89,2013-11-29,"Protein type: mono. Protenix-style input for 3WN1: 1 protein chain(s) (residue lengths [438]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
3WN2,train,3WN2_G2-B_3.94,2013-11-29,"Protein type: mono. Protenix-style input for 3WN2: 1 protein chain(s) (residue lengths [438]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
3WNL,train,3WNL_G2-B_3.68,2013-12-10,"Protein type: mono. Protenix-style input for 3WNL: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC), 3 covalent-bond record(s)."
3WNM,train,3WNM_G2-B_3.87,2013-12-10,"Protein type: mono. Protenix-style input for 3WNM: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
3WNN,train,3WNN_G2-E_3.84,2013-12-10,"Protein type: homo. Protenix-style input for 3WNN: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 7 covalent-bond record(s)."
3WNO,train,3WNO_G3-G_5.11,2013-12-10,"Protein type: homo. Protenix-style input for 3WNO: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
3WNP,train,3WNP_G2-C_3.70,2013-12-10,"Protein type: homo. Protenix-style input for 3WNP: 1 protein chain(s) (residue lengths [710]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC), 3 covalent-bond record(s)."
3WOG,train,3WOG_G2-D_3.86,2013-12-26,"Protein type: homo. Protenix-style input for 3WOG: 1 protein chain(s) (residue lengths [254]), 1 ligand/glycan slot(s) (CCD_MAN_NAG), 1 covalent-bond record(s)."
3WP6,train,3WP6_G2-B_3.54,2014-01-09,"Protein type: mono. Protenix-style input for 3WP6: 1 protein chain(s) (residue lengths [228]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
3WQ1,train,3WQ1_G2-B_3.76,2014-01-21,"Protein type: mono. Protenix-style input for 3WQ1: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
3WQV,train,3WQV_G2-B_4.54,2014-02-03,"Protein type: mono. Protenix-style input for 3WQV: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS_GCS_GCS), 4 covalent-bond record(s)."
3WQW,train,3WQW_G2-B_4.56,2014-02-03,"Protein type: mono. Protenix-style input for 3WQW: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS_GCS_GCS), 4 covalent-bond record(s)."
3WUD,train,3WUD_G2-B_3.80,2014-04-23,"Protein type: mono. Protenix-style input for 3WUD: 1 protein chain(s) (residue lengths [136]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
3WUE,train,3WUE_G2-C_3.33,2014-04-23,"Protein type: mono. Protenix-style input for 3WUE: 1 protein chain(s) (residue lengths [313]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3WUG,train,3WUG_G2-C_3.32,2014-04-23,"Protein type: mono. Protenix-style input for 3WUG: 1 protein chain(s) (residue lengths [313]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
3WVY,train,3WVY_G2-B_3.78,2014-06-11,"Protein type: mono. Protenix-style input for 3WVY: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
3WWG,train,3WWG_G2-E_3.62,2014-06-17,"Protein type: homo. Protenix-style input for 3WWG: 1 protein chain(s) (residue lengths [549]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
3WXP,train,3WXP_G2-C_3.58,2014-08-04,"Protein type: mono. Protenix-style input for 3WXP: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3WY4,train,3WY4_G2-C_3.26,2014-08-18,"Protein type: homo. Protenix-style input for 3WY4: 1 protein chain(s) (residue lengths [538]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
3WY6,train,3WY6_G2-B_3.63,2014-08-20,"Protein type: mono. Protenix-style input for 3WY6: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
3X2H,train,3X2H_G3-D_3.75,2014-12-22,"Protein type: mono. Protenix-style input for 3X2H: 1 protein chain(s) (residue lengths [180]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
3X2K,train,3X2K_G2-B_3.62,2014-12-22,"Protein type: mono. Protenix-style input for 3X2K: 1 protein chain(s) (residue lengths [180]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
3X2M,train,3X2M_G2-B_3.64,2014-12-22,"Protein type: mono. Protenix-style input for 3X2M: 1 protein chain(s) (residue lengths [180]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
3ZMR,train,3ZMR_G2-C_3.99,2013-02-12,"Protein type: homo. Protenix-style input for 3ZMR: 1 protein chain(s) (residue lengths [475]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_XYS_XYS_XYS), 6 covalent-bond record(s)."
3ZP0,train,3ZP0_G3-C_3.69,2013-02-26,"Protein type: simple_hetero. Protenix-style input for 3ZP0: 2 protein chain(s) (residue lengths [340,160]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
3ZP1,train,3ZP1_G3-C_3.72,2013-02-26,"Protein type: simple_hetero. Protenix-style input for 3ZP1: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
3ZP2,train,3ZP2_G3-C_3.56,2013-02-26,"Protein type: simple_hetero. Protenix-style input for 3ZP2: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
3ZP6,train,3ZP6_G3-C_3.77,2013-02-26,"Protein type: simple_hetero. Protenix-style input for 3ZP6: 2 protein chain(s) (residue lengths [340,160]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
3ZPB,train,3ZPB_G3-C_4.05,2013-02-27,"Protein type: simple_hetero. Protenix-style input for 3ZPB: 2 protein chain(s) (residue lengths [340,160]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
3ZTN,train,3ZTN_G6-F_4.04,2011-07-12,"Protein type: simple_hetero. Protenix-style input for 3ZTN: 4 protein chain(s) (residue lengths [327,176,226,218]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
3ZW1,train,3ZW1_G3-F_3.73,2011-07-28,"Protein type: simple_hetero. Protenix-style input for 3ZW1: 2 protein chain(s) (residue lengths [87,87]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
3ZWE,train,3ZWE_G2-D_3.98,2011-07-29,"Protein type: homo. Protenix-style input for 3ZWE: 1 protein chain(s) (residue lengths [87]), 1 ligand/glycan slot(s) (CCD_GAL_FUC), 1 covalent-bond record(s)."
3ZZV,train,3ZZV_G2-H_4.13,2011-09-05,"Protein type: homo. Protenix-style input for 3ZZV: 1 protein chain(s) (residue lengths [87]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
4A05,train,4A05_G3-C_3.40,2011-09-08,"Protein type: mono. Protenix-style input for 4A05: 1 protein chain(s) (residue lengths [364]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4A3X,train,4A3X_G2-B_3.40,2011-10-05,"Protein type: mono. Protenix-style input for 4A3X: 1 protein chain(s) (residue lengths [227]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
4A4A,train,4A4A_G2-B_3.23,2011-10-07,"Protein type: mono. Protenix-style input for 4A4A: 1 protein chain(s) (residue lengths [914]), 1 ligand/glycan slot(s) (CCD_GAL_NDG), 1 covalent-bond record(s)."
4AD4,train,4AD4_G2-B_3.69,2011-12-21,"Protein type: mono. Protenix-style input for 4AD4: 1 protein chain(s) (residue lengths [380]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
4AD5,train,4AD5_G2-B_3.72,2011-12-21,"Protein type: mono. Protenix-style input for 4AD5: 1 protein chain(s) (residue lengths [380]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
4AF9,train,4AF9_G2-B_3.77,2012-01-18,"Protein type: mono. Protenix-style input for 4AF9: 1 protein chain(s) (residue lengths [262]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
4AGT,train,4AGT_G2-C_4.13,2012-01-31,"Protein type: homo. Protenix-style input for 4AGT: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_NDG_FUC), 1 covalent-bond record(s)."
4AH4,train,4AH4_G2-J_4.20,2012-02-03,"Protein type: homo. Protenix-style input for 4AH4: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_A2G), 2 covalent-bond record(s)."
4AHA,train,4AHA_G2-F_3.64,2012-02-06,"Protein type: homo. Protenix-style input for 4AHA: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
4ASL,train,4ASL_G2-B_3.98,2012-05-02,"Protein type: mono. Protenix-style input for 4ASL: 1 protein chain(s) (residue lengths [259]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
4AU0,train,4AU0_G2-D_3.61,2012-05-11,"Protein type: homo. Protenix-style input for 4AU0: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4AVN,train,4AVN_G2-B_3.61,2012-05-28,"Protein type: mono. Protenix-style input for 4AVN: 1 protein chain(s) (residue lengths [420]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4AVO,train,4AVO_G2-B_3.55,2012-05-28,"Protein type: mono. Protenix-style input for 4AVO: 1 protein chain(s) (residue lengths [420]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
4AX6,train,4AX6_G2-D_3.47,2012-06-10,"Protein type: homo. Protenix-style input for 4AX6: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4AX7,train,4AX7_G2-E_3.48,2012-06-11,"Protein type: homo. Protenix-style input for 4AX7: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4B4F,train,4B4F_G3-D_3.45,2012-07-30,"Protein type: homo. Protenix-style input for 4B4F: 1 protein chain(s) (residue lengths [420]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4B8V,train,4B8V_G3-C_3.62,2012-08-30,"Protein type: mono. Protenix-style input for 4B8V: 1 protein chain(s) (residue lengths [228]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4B9H,train,4B9H_G3-C_3.56,2012-09-04,"Protein type: mono. Protenix-style input for 4B9H: 1 protein chain(s) (residue lengths [228]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4BBZ,train,4BBZ_G3-C_4.62,2012-09-30,"Protein type: mono. Protenix-style input for 4BBZ: 1 protein chain(s) (residue lengths [529]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_FUL), 2 covalent-bond record(s)."
4BGX,train,4BGX_G3-C_3.90,2013-03-29,"Protein type: simple_hetero. Protenix-style input for 4BGX: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4BGY,train,4BGY_G4-E_5.08,2013-03-29,"Protein type: simple_hetero. Protenix-style input for 4BGY: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BH3,train,4BH3_G4-D_4.32,2013-03-29,"Protein type: simple_hetero. Protenix-style input for 4BH3: 2 protein chain(s) (residue lengths [328,167]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BH4,train,4BH4_G4-D_4.07,2013-03-29,"Protein type: simple_hetero. Protenix-style input for 4BH4: 2 protein chain(s) (residue lengths [328,167]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BSB,train,4BSB_G3-C_5.24,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSB: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BSC,train,4BSC_G3-C_5.31,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSC: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BSD,train,4BSD_G3-C_4.16,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSD: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BSE,train,4BSE_G3-C_5.41,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSE: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BSF,train,4BSF_G3-C_4.21,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSF: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4BSH,train,4BSH_G3-C_3.93,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSH: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4BSI,train,4BSI_G3-C_5.27,2013-06-10,"Protein type: simple_hetero. Protenix-style input for 4BSI: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4C1P,train,4C1P_G2-B_2.74,2013-08-13,"Protein type: mono. Protenix-style input for 4C1P: 1 protein chain(s) (residue lengths [727]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
4C4C,train,4C4C_G2-B_3.55,2013-09-05,"Protein type: mono. Protenix-style input for 4C4C: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC), 8 covalent-bond record(s)."
4C4D,train,4C4D_G2-B_3.46,2013-09-05,"Protein type: mono. Protenix-style input for 4C4D: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4CD7,train,4CD7_G2-D_3.32,2013-10-30,"Protein type: homo. Protenix-style input for 4CD7: 1 protein chain(s) (residue lengths [320]), 1 ligand/glycan slot(s) (CCD_MAN_BMA), 1 covalent-bond record(s)."
4CQQ,train,4CQQ_G5-E_3.85,2014-02-21,"Protein type: simple_hetero. Protenix-style input for 4CQQ: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4CQR,train,4CQR_G5-E_3.87,2014-02-21,"Protein type: simple_hetero. Protenix-style input for 4CQR: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4CQU,train,4CQU_G5-E_3.90,2014-02-21,"Protein type: simple_hetero. Protenix-style input for 4CQU: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4CQZ,train,4CQZ_G3-C_4.93,2014-02-21,"Protein type: simple_hetero. Protenix-style input for 4CQZ: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4CUC,train,4CUC_G2-B_3.66,2014-03-17,"Protein type: mono. Protenix-style input for 4CUC: 1 protein chain(s) (residue lengths [849]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
4D4U,train,4D4U_G3-F_4.27,2014-10-31,"Protein type: homo. Protenix-style input for 4D4U: 1 protein chain(s) (residue lengths [315]), 1 ligand/glycan slot(s) (CCD_NDG_GAL_FUC_FUC), 3 covalent-bond record(s)."
4D5I,train,4D5I_G2-B_3.58,2014-11-05,"Protein type: mono. Protenix-style input for 4D5I: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
4D5J,train,4D5J_G2-B_3.59,2014-11-05,"Protein type: mono. Protenix-style input for 4D5J: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
4D5O,train,4D5O_G3-C_3.55,2014-11-07,"Protein type: mono. Protenix-style input for 4D5O: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
4D5P,train,4D5P_G2-B_3.69,2014-11-07,"Protein type: mono. Protenix-style input for 4D5P: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
4D5Q,train,4D5Q_G3-C_3.44,2014-11-07,"Protein type: mono. Protenix-style input for 4D5Q: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
4D5V,train,4D5V_G2-B_3.71,2014-11-07,"Protein type: mono. Protenix-style input for 4D5V: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
4D6D,train,4D6D_G2-B_3.70,2014-11-11,"Protein type: mono. Protenix-style input for 4D6D: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_GLA_FUC_A2G), 2 covalent-bond record(s)."
4D6E,train,4D6E_G2-B_3.72,2014-11-11,"Protein type: mono. Protenix-style input for 4D6E: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_A2G), 2 covalent-bond record(s)."
4D6F,train,4D6F_G2-B_3.87,2014-11-11,"Protein type: mono. Protenix-style input for 4D6F: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_A2G), 3 covalent-bond record(s)."
4D6G,train,4D6G_G2-B_3.69,2014-11-11,"Protein type: mono. Protenix-style input for 4D6G: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_GLA_FUC_A2G), 2 covalent-bond record(s)."
4D6H,train,4D6H_G2-B_3.85,2014-11-11,"Protein type: mono. Protenix-style input for 4D6H: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_A2G), 3 covalent-bond record(s)."
4D6I,train,4D6I_G2-B_3.86,2014-11-11,"Protein type: mono. Protenix-style input for 4D6I: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_A2G), 3 covalent-bond record(s)."
4D6J,train,4D6J_G2-B_3.84,2014-11-11,"Protein type: mono. Protenix-style input for 4D6J: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_A2G), 3 covalent-bond record(s)."
4D71,train,4D71_G2-B_3.83,2014-11-19,"Protein type: mono. Protenix-style input for 4D71: 1 protein chain(s) (residue lengths [596]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_A2G), 3 covalent-bond record(s)."
4D72,train,4D72_G2-B_3.82,2014-11-19,"Protein type: mono. Protenix-style input for 4D72: 1 protein chain(s) (residue lengths [596]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
4DOE,train,4DOE_G3-C_3.77,2012-02-09,"Protein type: mono. Protenix-style input for 4DOE: 1 protein chain(s) (residue lengths [475]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
4DYG,train,4DYG_G2-D_4.01,2012-02-29,"Protein type: homo. Protenix-style input for 4DYG: 1 protein chain(s) (residue lengths [244]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4E2O,train,4E2O_G3-C_3.50,2012-03-09,"Protein type: mono. Protenix-style input for 4E2O: 1 protein chain(s) (residue lengths [454]), 1 ligand/glycan slot(s) (CCD_BGC_G6D), 1 covalent-bond record(s)."
4EN6,train,4EN6_G3-C_4.84,2012-04-12,"Protein type: simple_hetero. Protenix-style input for 4EN6: 2 protein chain(s) (residue lengths [224,420]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA), 2 covalent-bond record(s)."
4EN7,train,4EN7_G3-C_5.26,2012-04-12,"Protein type: simple_hetero. Protenix-style input for 4EN7: 2 protein chain(s) (residue lengths [224,420]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4EN8,train,4EN8_G3-C_3.84,2012-04-12,"Protein type: simple_hetero. Protenix-style input for 4EN8: 2 protein chain(s) (residue lengths [224,420]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA), 2 covalent-bond record(s)."
4EN9,train,4EN9_G3-C_3.82,2012-04-12,"Protein type: simple_hetero. Protenix-style input for 4EN9: 2 protein chain(s) (residue lengths [224,420]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4ENG,train,4ENG_G2-C_3.78,1996-10-17,"Protein type: mono. Protenix-style input for 4ENG: 1 protein chain(s) (residue lengths [210]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
4EXK,train,4EXK_G2-B_3.51,2012-04-30,"Protein type: mono. Protenix-style input for 4EXK: 1 protein chain(s) (residue lengths [487]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
4FBV,train,4FBV_G2-B_4.17,2012-05-23,"Protein type: mono. Protenix-style input for 4FBV: 1 protein chain(s) (residue lengths [267]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_MAN_MAN), 3 covalent-bond record(s)."
4FFG,train,4FFG_G2-G_3.74,2012-06-01,"Protein type: homo. Protenix-style input for 4FFG: 1 protein chain(s) (residue lengths [492]), 1 ligand/glycan slot(s) (CCD_FRU_FRU), 1 covalent-bond record(s)."
4FFH,train,4FFH_G2-E_3.41,2012-06-01,"Protein type: homo. Protenix-style input for 4FFH: 1 protein chain(s) (residue lengths [492]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4FFI,train,4FFI_G2-I_3.53,2012-06-01,"Protein type: homo. Protenix-style input for 4FFI: 1 protein chain(s) (residue lengths [492]), 1 ligand/glycan slot(s) (CCD_FRU_FRU), 1 covalent-bond record(s)."
4FLS,train,4FLS_G2-B_3.38,2012-06-15,"Protein type: mono. Protenix-style input for 4FLS: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4FZ9,train,4FZ9_G2-B_3.50,2012-07-06,"Protein type: mono. Protenix-style input for 4FZ9: 1 protein chain(s) (residue lengths [246]), 1 ligand/glycan slot(s) (CCD_NAG_BMA), 1 covalent-bond record(s)."
4GX0,train,4GX0_G2-E_5.89,2012-09-03,"Protein type: homo. Protenix-style input for 4GX0: 1 protein chain(s) (residue lengths [565]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4GYJ,train,4GYJ_G2-D_3.31,2012-09-05,"Protein type: homo. Protenix-style input for 4GYJ: 1 protein chain(s) (residue lengths [648]), 1 ligand/glycan slot(s) (CCD_MUB_NAG), 1 covalent-bond record(s)."
4GYK,train,4GYK_G2-C_4.14,2012-09-05,"Protein type: homo. Protenix-style input for 4GYK: 1 protein chain(s) (residue lengths [648]), 1 ligand/glycan slot(s) (CCD_MUB_NAG), 1 covalent-bond record(s)."
4GZI,train,4GZI_G2-B_3.53,2012-09-06,"Protein type: mono. Protenix-style input for 4GZI: 1 protein chain(s) (residue lengths [323]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
4GZJ,train,4GZJ_G2-B_3.54,2012-09-06,"Protein type: mono. Protenix-style input for 4GZJ: 1 protein chain(s) (residue lengths [323]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
4GZW,train,4GZW_G6-I_4.07,2012-09-06,"Protein type: homo. Protenix-style input for 4GZW: 1 protein chain(s) (residue lengths [393]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4GZX,train,4GZX_G2-E_4.23,2012-09-06,"Protein type: homo. Protenix-style input for 4GZX: 1 protein chain(s) (residue lengths [393]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4H04,train,4H04_G2-D_3.38,2012-09-07,"Protein type: homo. Protenix-style input for 4H04: 1 protein chain(s) (residue lengths [644]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
4H53,train,4H53_G3-F_4.34,2012-09-18,"Protein type: homo. Protenix-style input for 4H53: 1 protein chain(s) (residue lengths [388]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4H8U,train,4H8U_G2-C_3.35,2012-09-24,"Protein type: homo. Protenix-style input for 4H8U: 1 protein chain(s) (residue lengths [557]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4HAP,train,4HAP_G2-C_3.49,2012-09-27,"Protein type: homo. Protenix-style input for 4HAP: 1 protein chain(s) (residue lengths [431]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4HAQ,train,4HAQ_G2-C_3.65,2012-09-27,"Protein type: homo. Protenix-style input for 4HAQ: 1 protein chain(s) (residue lengths [431]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4HIZ,train,4HIZ_G3-I_4.03,2012-10-12,"Protein type: homo. Protenix-style input for 4HIZ: 1 protein chain(s) (residue lengths [683]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4HJY,train,4HJY_G2-C_3.74,2012-10-14,"Protein type: homo. Protenix-style input for 4HJY: 1 protein chain(s) (residue lengths [206]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
4HK8,train,4HK8_G2-B_3.30,2012-10-15,"Protein type: mono. Protenix-style input for 4HK8: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP_XYP), 5 covalent-bond record(s)."
4HK9,train,4HK9_G2-B_3.64,2012-10-15,"Protein type: mono. Protenix-style input for 4HK9: 1 protein chain(s) (residue lengths [188]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
4HKW,train,4HKW_G2-B_3.79,2012-10-15,"Protein type: mono. Protenix-style input for 4HKW: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_XYS_XYP_XYP), 2 covalent-bond record(s)."
4HPH,train,4HPH_G2-B_3.26,2012-10-23,"Protein type: mono. Protenix-style input for 4HPH: 1 protein chain(s) (residue lengths [559]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4HU0,train,4HU0_G2-B_3.55,2012-11-02,"Protein type: mono. Protenix-style input for 4HU0: 1 protein chain(s) (residue lengths [359]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4IJ4,train,4IJ4_G2-B_3.67,2012-12-21,"Protein type: mono. Protenix-style input for 4IJ4: 1 protein chain(s) (residue lengths [205]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4J0L,train,4J0L_G2-C_3.83,2013-01-31,"Protein type: mono. Protenix-style input for 4J0L: 1 protein chain(s) (residue lengths [244]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4JXG,train,4JXG_G2-C_3.79,2013-03-28,"Protein type: homo. Protenix-style input for 4JXG: 1 protein chain(s) (residue lengths [358]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4KOM,train,4KOM_G3-C_4.56,2013-05-12,"Protein type: simple_hetero. Protenix-style input for 4KOM: 2 protein chain(s) (residue lengths [314,169]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_SIA), 3 covalent-bond record(s)."
4KON,train,4KON_G3-C_4.33,2013-05-12,"Protein type: simple_hetero. Protenix-style input for 4KON: 2 protein chain(s) (residue lengths [314,169]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4KPP,train,4KPP_G2-C_3.54,2013-05-14,"Protein type: homo. Protenix-style input for 4KPP: 1 protein chain(s) (residue lengths [405]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4L4P,train,4L4P_G2-B_3.89,2013-06-08,"Protein type: mono. Protenix-style input for 4L4P: 1 protein chain(s) (residue lengths [345]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
4LKJ,train,4LKJ_G3-C_5.63,2013-07-07,"Protein type: simple_hetero. Protenix-style input for 4LKJ: 2 protein chain(s) (residue lengths [314,168]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
4LKK,train,4LKK_G3-C_3.84,2013-07-07,"Protein type: simple_hetero. Protenix-style input for 4LKK: 2 protein chain(s) (residue lengths [314,168]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4LO5,train,4LO5_G3-C_4.37,2013-07-12,"Protein type: simple_hetero. Protenix-style input for 4LO5: 2 protein chain(s) (residue lengths [190,433]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
4LO6,train,4LO6_G3-C_4.27,2013-07-12,"Protein type: simple_hetero. Protenix-style input for 4LO6: 2 protein chain(s) (residue lengths [190,433]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4LPC,train,4LPC_G4-H_3.70,2013-07-16,"Protein type: homo. Protenix-style input for 4LPC: 1 protein chain(s) (residue lengths [612]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
4LQ1,train,4LQ1_G2-H_3.58,2013-07-17,"Protein type: homo. Protenix-style input for 4LQ1: 1 protein chain(s) (residue lengths [612]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4LYQ,train,4LYQ_G2-B_3.49,2013-07-31,"Protein type: mono. Protenix-style input for 4LYQ: 1 protein chain(s) (residue lengths [449]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
4MNK,train,4MNK_G3-C_3.83,2013-09-11,"Protein type: mono. Protenix-style input for 4MNK: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
4MNL,train,4MNL_G2-B_3.70,2013-09-11,"Protein type: mono. Protenix-style input for 4MNL: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
4MTV,train,4MTV_G2-B_3.72,2013-09-20,"Protein type: mono. Protenix-style input for 4MTV: 1 protein chain(s) (residue lengths [361]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
4N2Z,train,4N2Z_G2-B_3.75,2013-10-06,"Protein type: mono. Protenix-style input for 4N2Z: 1 protein chain(s) (residue lengths [360]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
4N4W,train,4N4W_G2-B_7.28,2013-10-08,"Protein type: mono. Protenix-style input for 4N4W: 1 protein chain(s) (residue lengths [475]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_MAN), 3 covalent-bond record(s)."
4NRR,train,4NRR_G2-D_3.34,2013-11-27,"Protein type: homo. Protenix-style input for 4NRR: 1 protein chain(s) (residue lengths [449]), 1 ligand/glycan slot(s) (CCD_FRU_BMA), 1 covalent-bond record(s)."
4NRS,train,4NRS_G2-D_3.48,2013-11-27,"Protein type: homo. Protenix-style input for 4NRS: 1 protein chain(s) (residue lengths [449]), 1 ligand/glycan slot(s) (CCD_MAN_BMA), 1 covalent-bond record(s)."
4O8P,train,4O8P_G2-B_3.78,2013-12-28,"Protein type: mono. Protenix-style input for 4O8P: 1 protein chain(s) (residue lengths [384]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
4OLT,train,4OLT_G2-C_3.50,2014-01-25,"Protein type: homo. Protenix-style input for 4OLT: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS_GCS_GCS_GCS), 5 covalent-bond record(s)."
4OOZ,train,4OOZ_G2-E_4.30,2014-02-04,"Protein type: homo. Protenix-style input for 4OOZ: 1 protein chain(s) (residue lengths [388]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA), 3 covalent-bond record(s)."
4P0G,train,4P0G_G2-B_4.38,2014-02-21,"Protein type: mono. Protenix-style input for 4P0G: 1 protein chain(s) (residue lengths [435]), 1 ligand/glycan slot(s) (CCD_AMU_NAG), 1 covalent-bond record(s)."
4P1J,train,4P1J_G2-B_3.75,2014-02-26,"Protein type: mono. Protenix-style input for 4P1J: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4P7R,train,4P7R_G2-B_5.07,2014-03-27,"Protein type: mono. Protenix-style input for 4P7R: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4P8V,train,4P8V_G2-B_3.66,2014-04-01,"Protein type: mono. Protenix-style input for 4P8V: 1 protein chain(s) (residue lengths [371]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
4P8W,train,4P8W_G2-B_3.68,2014-04-01,"Protein type: mono. Protenix-style input for 4P8W: 1 protein chain(s) (residue lengths [371]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4P8X,train,4P8X_G2-B_3.97,2014-04-01,"Protein type: mono. Protenix-style input for 4P8X: 1 protein chain(s) (residue lengths [371]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
4PEY,train,4PEY_G2-B_3.47,2014-04-25,"Protein type: mono. Protenix-style input for 4PEY: 1 protein chain(s) (residue lengths [561]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
4PEZ,train,4PEZ_G2-B_3.67,2014-04-25,"Protein type: mono. Protenix-style input for 4PEZ: 1 protein chain(s) (residue lengths [561]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4PF0,train,4PF0_G2-E_3.80,2014-04-25,"Protein type: homo. Protenix-style input for 4PF0: 1 protein chain(s) (residue lengths [561]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
4PI7,train,4PI7_G2-B_4.43,2014-05-08,"Protein type: mono. Protenix-style input for 4PI7: 1 protein chain(s) (residue lengths [228]), 1 ligand/glycan slot(s) (CCD_AMU_NAG), 1 covalent-bond record(s)."
4PI8,train,4PI8_G2-B_4.45,2014-05-08,"Protein type: mono. Protenix-style input for 4PI8: 1 protein chain(s) (residue lengths [228]), 1 ligand/glycan slot(s) (CCD_AMU_NAG), 1 covalent-bond record(s)."
4PMD,train,4PMD_G2-B_3.34,2014-05-21,"Protein type: mono. Protenix-style input for 4PMD: 1 protein chain(s) (residue lengths [338]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
4PMZ,train,4PMZ_G2-D_3.37,2014-05-22,"Protein type: homo. Protenix-style input for 4PMZ: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
4PRW,train,4PRW_G2-B_3.81,2014-03-06,"Protein type: mono. Protenix-style input for 4PRW: 1 protein chain(s) (residue lengths [379]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP_XYP), 5 covalent-bond record(s)."
4PUD,train,4PUD_G2-B_3.61,2014-03-13,"Protein type: mono. Protenix-style input for 4PUD: 1 protein chain(s) (residue lengths [371]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
4PUE,train,4PUE_G2-B_3.54,2014-03-13,"Protein type: mono. Protenix-style input for 4PUE: 1 protein chain(s) (residue lengths [371]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
4PVI,train,4PVI_G2-B_3.77,2014-03-17,"Protein type: mono. Protenix-style input for 4PVI: 1 protein chain(s) (residue lengths [342]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
4PXF,train,4PXF_G4-D_4.13,2014-03-23,"Protein type: simple_hetero. Protenix-style input for 4PXF: 2 protein chain(s) (residue lengths [348,11]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4QLJ,train,4QLJ_G2-C_4.04,2014-06-12,"Protein type: homo. Protenix-style input for 4QLJ: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4QLK,train,4QLK_G2-D_3.53,2014-06-12,"Protein type: homo. Protenix-style input for 4QLK: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4QLL,train,4QLL_G2-C_3.54,2014-06-12,"Protein type: homo. Protenix-style input for 4QLL: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4QN5,train,4QN5_G2-C_4.71,2014-06-17,"Protein type: homo. Protenix-style input for 4QN5: 1 protein chain(s) (residue lengths [395]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4QVH,train,4QVH_G2-D_3.38,2014-07-15,"Protein type: homo. Protenix-style input for 4QVH: 1 protein chain(s) (residue lengths [598]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4QWP,train,4QWP_G2-C_3.48,2014-07-17,"Protein type: homo. Protenix-style input for 4QWP: 1 protein chain(s) (residue lengths [248]), 1 ligand/glycan slot(s) (CCD_GCS_GCS), 1 covalent-bond record(s)."
4R5E,train,4R5E_G2-B_4.57,2014-08-21,"Protein type: mono. Protenix-style input for 4R5E: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
4RKK,train,4RKK_G2-F_4.04,2014-10-13,"Protein type: homo. Protenix-style input for 4RKK: 1 protein chain(s) (residue lengths [332]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC), 5 covalent-bond record(s)."
4RYK,train,4RYK_G2-B_3.75,2014-12-15,"Protein type: mono. Protenix-style input for 4RYK: 1 protein chain(s) (residue lengths [306]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
4S3Q,train,4S3Q_G2-D_3.84,2015-03-26,"Protein type: homo. Protenix-style input for 4S3Q: 1 protein chain(s) (residue lengths [696]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4TF4,train,4TF4_G2-E_3.66,1997-05-31,"Protein type: homo. Protenix-style input for 4TF4: 1 protein chain(s) (residue lengths [605]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4TPK,train,4TPK_G5-F_5.05,2014-06-07,"Protein type: homo. Protenix-style input for 4TPK: 1 protein chain(s) (residue lengths [602]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_FUC), 2 covalent-bond record(s)."
4TZ1,train,4TZ1_G2-B_2.59,2014-07-09,"Protein type: mono. Protenix-style input for 4TZ1: 1 protein chain(s) (residue lengths [549]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
4TZ3,train,4TZ3_G2-B_2.97,2014-07-09,"Protein type: mono. Protenix-style input for 4TZ3: 1 protein chain(s) (residue lengths [549]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4TZ5,train,4TZ5_G2-C_2.85,2014-07-09,"Protein type: homo. Protenix-style input for 4TZ5: 1 protein chain(s) (residue lengths [549]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
4U5I,train,4U5I_G2-C_3.52,2014-07-25,"Protein type: homo. Protenix-style input for 4U5I: 1 protein chain(s) (residue lengths [403]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
4U5K,train,4U5K_G2-C_3.57,2014-07-25,"Protein type: homo. Protenix-style input for 4U5K: 1 protein chain(s) (residue lengths [403]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4UO6,train,4UO6_G6-F_5.17,2014-05-31,"Protein type: simple_hetero. Protenix-style input for 4UO6: 2 protein chain(s) (residue lengths [328,175]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA_FUC), 3 covalent-bond record(s)."
4UP4,train,4UP4_G2-I_3.73,2014-06-12,"Protein type: homo. Protenix-style input for 4UP4: 1 protein chain(s) (residue lengths [401]), 1 ligand/glycan slot(s) (CCD_GAL_NAG), 1 covalent-bond record(s)."
4UTF,train,4UTF_G2-B_3.70,2014-07-21,"Protein type: mono. Protenix-style input for 4UTF: 1 protein chain(s) (residue lengths [380]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
4UWT,train,4UWT_G2-C_3.43,2014-08-14,"Protein type: mono. Protenix-style input for 4UWT: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4V0Z,train,4V0Z_G2-C_3.45,2014-09-19,"Protein type: mono. Protenix-style input for 4V0Z: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4V28,train,4V28_G2-B_3.71,2014-10-07,"Protein type: mono. Protenix-style input for 4V28: 1 protein chain(s) (residue lengths [380]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
4W87,train,4W87_G2-D_3.96,2014-08-22,"Protein type: homo. Protenix-style input for 4W87: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_XYS), 3 covalent-bond record(s)."
4W88,train,4W88_G2-C_4.11,2014-08-22,"Protein type: homo. Protenix-style input for 4W88: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_BGC_XYS_GAL_BGC), 3 covalent-bond record(s)."
4W89,train,4W89_G2-C_4.07,2014-08-22,"Protein type: homo. Protenix-style input for 4W89: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
4W8B,train,4W8B_G2-B_4.92,2014-08-22,"Protein type: mono. Protenix-style input for 4W8B: 1 protein chain(s) (residue lengths [386]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_XYS_XYS_XYS_GAL), 7 covalent-bond record(s)."
4WK9,train,4WK9_G2-B_3.45,2014-10-02,"Protein type: mono. Protenix-style input for 4WK9: 1 protein chain(s) (residue lengths [377]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
4WKF,train,4WKF_G2-B_2.88,2014-10-02,"Protein type: mono. Protenix-style input for 4WKF: 1 protein chain(s) (residue lengths [377]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
4WKH,train,4WKH_G2-B_3.45,2014-10-02,"Protein type: mono. Protenix-style input for 4WKH: 1 protein chain(s) (residue lengths [377]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
4WRN,train,4WRN_G2-D_3.00,2014-10-24,"Protein type: homo. Protenix-style input for 4WRN: 1 protein chain(s) (residue lengths [695]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4WTR,train,4WTR_G2-C_3.68,2014-10-30,"Protein type: mono. Protenix-style input for 4WTR: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4WTS,train,4WTS_G2-B_3.71,2014-10-30,"Protein type: mono. Protenix-style input for 4WTS: 1 protein chain(s) (residue lengths [298]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
4XAD,train,4XAD_G2-B_3.62,2014-12-14,"Protein type: mono. Protenix-style input for 4XAD: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NDG_GZL), 1 covalent-bond record(s)."
4XEB,train,4XEB_G2-B_3.55,2014-12-23,"Protein type: mono. Protenix-style input for 4XEB: 1 protein chain(s) (residue lengths [436]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4XEN,train,4XEN_G2-B_3.69,2014-12-24,"Protein type: mono. Protenix-style input for 4XEN: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
4XII,train,4XII_G2-C_5.51,2015-01-07,"Protein type: homo. Protenix-style input for 4XII: 1 protein chain(s) (residue lengths [544]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_FUL), 2 covalent-bond record(s)."
4XKW,train,4XKW_G2-B_3.77,2015-01-12,"Protein type: mono. Protenix-style input for 4XKW: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XLA,train,4XLA_G2-B_3.88,2015-01-13,"Protein type: mono. Protenix-style input for 4XLA: 1 protein chain(s) (residue lengths [600]), 1 ligand/glycan slot(s) (CCD_NAG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XLE,train,4XLE_G2-B_3.85,2015-01-13,"Protein type: mono. Protenix-style input for 4XLE: 1 protein chain(s) (residue lengths [596]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
4XLF,train,4XLF_G2-B_3.88,2015-01-13,"Protein type: mono. Protenix-style input for 4XLF: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XM3,train,4XM3_G2-B_3.80,2015-01-14,"Protein type: mono. Protenix-style input for 4XM3: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XMY,train,4XMY_G2-B_3.89,2015-01-15,"Protein type: mono. Protenix-style input for 4XMY: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XN3,train,4XN3_G2-B_3.76,2015-01-15,"Protein type: mono. Protenix-style input for 4XN3: 1 protein chain(s) (residue lengths [596]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
4XOP,train,4XOP_G2-B_3.72,2015-01-16,"Protein type: mono. Protenix-style input for 4XOP: 1 protein chain(s) (residue lengths [596]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
4XOR,train,4XOR_G2-B_3.77,2015-01-16,"Protein type: mono. Protenix-style input for 4XOR: 1 protein chain(s) (residue lengths [597]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XOT,train,4XOT_G2-B_3.87,2015-01-16,"Protein type: mono. Protenix-style input for 4XOT: 1 protein chain(s) (residue lengths [597]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4XP1,train,4XP1_G4-D_4.79,2015-01-16,"Protein type: simple_hetero. Protenix-style input for 4XP1: 3 protein chain(s) (residue lengths [535,214,219]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4XP6,train,4XP6_G4-D_4.36,2015-01-16,"Protein type: simple_hetero. Protenix-style input for 4XP6: 3 protein chain(s) (residue lengths [534,213,219]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4XP9,train,4XP9_G4-D_4.41,2015-01-16,"Protein type: simple_hetero. Protenix-style input for 4XP9: 3 protein chain(s) (residue lengths [541,213,219]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
4XPT,train,4XPT_G4-H_3.87,2015-01-17,"Protein type: simple_hetero. Protenix-style input for 4XPT: 3 protein chain(s) (residue lengths [535,214,219]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
4XR6,train,4XR6_G2-B_3.77,2015-01-20,"Protein type: mono. Protenix-style input for 4XR6: 1 protein chain(s) (residue lengths [597]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
4Y7E,train,4Y7E_G2-C_3.96,2015-02-14,"Protein type: homo. Protenix-style input for 4Y7E: 1 protein chain(s) (residue lengths [346]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA_BMA_BMA_BMA), 6 covalent-bond record(s)."
4YEJ,train,4YEJ_G2-B_3.85,2015-02-24,"Protein type: mono. Protenix-style input for 4YEJ: 1 protein chain(s) (residue lengths [597]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
4YEL,train,4YEL_G2-B_3.85,2015-02-24,"Protein type: mono. Protenix-style input for 4YEL: 1 protein chain(s) (residue lengths [596]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG_GLC), 5 covalent-bond record(s)."
4YW2,train,4YW2_G2-D_5.42,2015-03-20,"Protein type: homo. Protenix-style input for 4YW2: 1 protein chain(s) (residue lengths [659]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4YYA,train,4YYA_G3-C_4.85,2015-03-23,"Protein type: simple_hetero. Protenix-style input for 4YYA: 2 protein chain(s) (residue lengths [325,171]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_SIA), 3 covalent-bond record(s)."
4YYB,train,4YYB_G3-C_3.82,2015-03-23,"Protein type: simple_hetero. Protenix-style input for 4YYB: 2 protein chain(s) (residue lengths [325,162]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
4YZ5,train,4YZ5_G2-C_5.03,2015-03-24,"Protein type: homo. Protenix-style input for 4YZ5: 1 protein chain(s) (residue lengths [677]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
4YZT,train,4YZT_G2-B_3.75,2015-03-25,"Protein type: mono. Protenix-style input for 4YZT: 1 protein chain(s) (residue lengths [536]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
4Z9W,train,4Z9W_G3-C_5.78,2015-04-12,"Protein type: simple_hetero. Protenix-style input for 4Z9W: 2 protein chain(s) (residue lengths [247,261]), 1 ligand/glycan slot(s) (CCD_NAG_FUC_NAG), 2 covalent-bond record(s)."
4ZA3,train,4ZA3_G4-D_8.74,2015-04-13,"Protein type: simple_hetero. Protenix-style input for 4ZA3: 2 protein chain(s) (residue lengths [247,260]), 1 ligand/glycan slot(s) (CCD_NAG_BMA), 1 covalent-bond record(s)."
4ZGR,train,4ZGR_G3-C_4.61,2015-04-23,"Protein type: simple_hetero. Protenix-style input for 4ZGR: 2 protein chain(s) (residue lengths [247,261]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
4ZH5,train,4ZH5_G2-C_3.40,2015-04-24,"Protein type: homo. Protenix-style input for 4ZH5: 1 protein chain(s) (residue lengths [426]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4ZLB,train,4ZLB_G6-F_4.32,2015-05-01,"Protein type: simple_hetero. Protenix-style input for 4ZLB: 2 protein chain(s) (residue lengths [247,261]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
4ZLI,train,4ZLI_G2-B_3.47,2015-05-01,"Protein type: mono. Protenix-style input for 4ZLI: 1 protein chain(s) (residue lengths [796]), 1 ligand/glycan slot(s) (CCD_GCU_BGC), 1 covalent-bond record(s)."
4ZO6,train,4ZO6_G2-C_3.98,2015-05-06,"Protein type: homo. Protenix-style input for 4ZO6: 1 protein chain(s) (residue lengths [731]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4ZO7,train,4ZO7_G2-C_3.56,2015-05-06,"Protein type: homo. Protenix-style input for 4ZO7: 1 protein chain(s) (residue lengths [731]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
4ZO8,train,4ZO8_G2-C_3.41,2015-05-06,"Protein type: homo. Protenix-style input for 4ZO8: 1 protein chain(s) (residue lengths [731]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
4ZO9,train,4ZO9_G2-C_3.43,2015-05-06,"Protein type: homo. Protenix-style input for 4ZO9: 1 protein chain(s) (residue lengths [731]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
4ZZW,train,4ZZW_G3-C_3.64,2015-04-14,"Protein type: mono. Protenix-style input for 4ZZW: 1 protein chain(s) (residue lengths [438]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5A2B,train,5A2B_G2-B_3.34,2015-05-17,"Protein type: mono. Protenix-style input for 5A2B: 1 protein chain(s) (residue lengths [497]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5A2C,train,5A2C_G2-B_3.38,2015-05-17,"Protein type: mono. Protenix-style input for 5A2C: 1 protein chain(s) (residue lengths [497]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5A59,train,5A59_G2-B_3.48,2015-06-16,"Protein type: mono. Protenix-style input for 5A59: 1 protein chain(s) (residue lengths [1117]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
5A5A,train,5A5A_G2-B_3.43,2015-06-16,"Protein type: mono. Protenix-style input for 5A5A: 1 protein chain(s) (residue lengths [1117]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
5A6L,train,5A6L_G2-C_3.72,2015-06-30,"Protein type: mono. Protenix-style input for 5A6L: 1 protein chain(s) (residue lengths [409]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5A6M,train,5A6M_G3-C_3.62,2015-06-30,"Protein type: mono. Protenix-style input for 5A6M: 1 protein chain(s) (residue lengths [409]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5A6Y,train,5A6Y_G2-G_4.32,2015-07-02,"Protein type: homo. Protenix-style input for 5A6Y: 1 protein chain(s) (residue lengths [114]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
5A8O,train,5A8O_G2-B_3.78,2015-07-16,"Protein type: mono. Protenix-style input for 5A8O: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5A8P,train,5A8P_G2-B_3.79,2015-07-16,"Protein type: mono. Protenix-style input for 5A8P: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5A8Q,train,5A8Q_G2-B_3.59,2015-07-16,"Protein type: mono. Protenix-style input for 5A8Q: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5A95,train,5A95_G2-F_3.66,2015-07-17,"Protein type: homo. Protenix-style input for 5A95: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5ACF,train,5ACF_G2-B_4.09,2015-08-17,"Protein type: mono. Protenix-style input for 5ACF: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5ACI,train,5ACI_G2-B_4.14,2015-08-17,"Protein type: mono. Protenix-style input for 5ACI: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
5ACJ,train,5ACJ_G2-B_4.13,2015-08-17,"Protein type: mono. Protenix-style input for 5ACJ: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5AJC,train,5AJC_G3-E_3.80,2015-02-20,"Protein type: homo. Protenix-style input for 5AJC: 1 protein chain(s) (residue lengths [90]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
5AJM,train,5AJM_G5-E_3.99,2015-02-25,"Protein type: simple_hetero. Protenix-style input for 5AJM: 2 protein chain(s) (residue lengths [326,166]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
5AXH,train,5AXH_G2-C_3.64,2015-07-29,"Protein type: homo. Protenix-style input for 5AXH: 1 protein chain(s) (residue lengths [618]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
5AYC,train,5AYC_G2-B_3.56,2015-08-13,"Protein type: mono. Protenix-style input for 5AYC: 1 protein chain(s) (residue lengths [386]), 1 ligand/glycan slot(s) (CCD_BGC_BMA), 1 covalent-bond record(s)."
5B0R,train,5B0R_G2-C_3.35,2015-11-02,"Protein type: homo. Protenix-style input for 5B0R: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
5B0S,train,5B0S_G2-D_3.41,2015-11-02,"Protein type: homo. Protenix-style input for 5B0S: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
5B2D,train,5B2D_G2-D_3.98,2016-01-14,"Protein type: homo. Protenix-style input for 5B2D: 1 protein chain(s) (residue lengths [489]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_SIA), 2 covalent-bond record(s)."
5BNN,train,5BNN_G5-E_4.92,2015-05-26,"Protein type: simple_hetero. Protenix-style input for 5BNN: 4 protein chain(s) (residue lengths [297,248,247,68]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA), 2 covalent-bond record(s)."
5BNO,train,5BNO_G5-E_4.97,2015-05-26,"Protein type: simple_hetero. Protenix-style input for 5BNO: 4 protein chain(s) (residue lengths [297,248,247,68]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
5BNP,train,5BNP_G5-E_4.33,2015-05-26,"Protein type: simple_hetero. Protenix-style input for 5BNP: 4 protein chain(s) (residue lengths [297,248,247,68]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
5CA3,train,5CA3_G2-D_3.40,2015-06-29,"Protein type: homo. Protenix-style input for 5CA3: 1 protein chain(s) (residue lengths [760]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
5CEL,train,5CEL_G2-B_3.61,1997-09-24,"Protein type: mono. Protenix-style input for 5CEL: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5CGM,train,5CGM_G2-C_3.07,2015-07-09,"Protein type: homo. Protenix-style input for 5CGM: 1 protein chain(s) (residue lengths [698]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5CGT,train,5CGT_G2-C_3.51,1998-06-06,"Protein type: mono. Protenix-style input for 5CGT: 1 protein chain(s) (residue lengths [684]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
5CIM,train,5CIM_G2-C_3.08,2015-07-13,"Protein type: homo. Protenix-style input for 5CIM: 1 protein chain(s) (residue lengths [698]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5D4Y,train,5D4Y_G2-C_3.21,2015-08-10,"Protein type: homo. Protenix-style input for 5D4Y: 1 protein chain(s) (residue lengths [355]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5D5A,train,5D5A_G2-B_3.61,2015-08-10,"Protein type: mono. Protenix-style input for 5D5A: 1 protein chain(s) (residue lengths [500]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
5D5B,train,5D5B_G2-B_3.62,2015-08-10,"Protein type: mono. Protenix-style input for 5D5B: 1 protein chain(s) (residue lengths [500]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
5D9M,train,5D9M_G3-D_4.11,2015-08-18,"Protein type: homo. Protenix-style input for 5D9M: 1 protein chain(s) (residue lengths [353]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_XYS_XYS_XYS_XYS_XYS_XYS), 13 covalent-bond record(s)."
5D9N,train,5D9N_G2-C_4.55,2015-08-18,"Protein type: homo. Protenix-style input for 5D9N: 1 protein chain(s) (residue lengths [353]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_XYS_XYS_XYS), 6 covalent-bond record(s)."
5D9O,train,5D9O_G2-C_3.82,2015-08-18,"Protein type: homo. Protenix-style input for 5D9O: 1 protein chain(s) (residue lengths [353]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5DEZ,train,5DEZ_G2-C_3.84,2015-08-26,"Protein type: homo. Protenix-style input for 5DEZ: 1 protein chain(s) (residue lengths [551]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
5DKZ,train,5DKZ_G2-B_3.30,2015-09-04,"Protein type: mono. Protenix-style input for 5DKZ: 1 protein chain(s) (residue lengths [951]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5DL0,train,5DL0_G2-B_3.30,2015-09-04,"Protein type: mono. Protenix-style input for 5DL0: 1 protein chain(s) (residue lengths [951]), 1 ligand/glycan slot(s) (CCD_MAN_GLC), 1 covalent-bond record(s)."
5DUQ,train,5DUQ_G2-C_8.83,2015-09-20,"Protein type: homo. Protenix-style input for 5DUQ: 1 protein chain(s) (residue lengths [383]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
5DZE,train,5DZE_G2-B_3.56,2015-09-25,"Protein type: mono. Protenix-style input for 5DZE: 1 protein chain(s) (residue lengths [207]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5DZF,train,5DZF_G2-C_4.03,2015-09-25,"Protein type: homo. Protenix-style input for 5DZF: 1 protein chain(s) (residue lengths [208]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5DZG,train,5DZG_G3-D_4.08,2015-09-25,"Protein type: homo. Protenix-style input for 5DZG: 1 protein chain(s) (residue lengths [209]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_XYS_XYS_XYS), 6 covalent-bond record(s)."
5E34,train,5E34_G3-C_4.50,2015-10-01,"Protein type: simple_hetero. Protenix-style input for 5E34: 2 protein chain(s) (residue lengths [333,180]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
5E35,train,5E35_G3-C_4.49,2015-10-01,"Protein type: simple_hetero. Protenix-style input for 5E35: 2 protein chain(s) (residue lengths [333,180]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
5F7U,train,5F7U_G5-F_3.52,2015-12-08,"Protein type: mono. Protenix-style input for 5F7U: 1 protein chain(s) (residue lengths [1063]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
5FIH,train,5FIH_G2-B_3.48,2015-09-25,"Protein type: mono. Protenix-style input for 5FIH: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC), 4 covalent-bond record(s)."
5FQG,train,5FQG_G2-B_3.69,2015-12-10,"Protein type: mono. Protenix-style input for 5FQG: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_GAL_NGA), 1 covalent-bond record(s)."
5FQH,train,5FQH_G2-B_4.64,2015-12-10,"Protein type: mono. Protenix-style input for 5FQH: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_NGA), 2 covalent-bond record(s)."
5GLM,train,5GLM_G2-C_3.45,2016-07-12,"Protein type: homo. Protenix-style input for 5GLM: 1 protein chain(s) (residue lengths [344]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5GLN,train,5GLN_G2-C_3.47,2016-07-12,"Protein type: homo. Protenix-style input for 5GLN: 1 protein chain(s) (residue lengths [344]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5GLQ,train,5GLQ_G2-C_3.44,2016-07-12,"Protein type: homo. Protenix-style input for 5GLQ: 1 protein chain(s) (residue lengths [344]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5GLR,train,5GLR_G2-D_3.55,2016-07-12,"Protein type: homo. Protenix-style input for 5GLR: 1 protein chain(s) (residue lengths [344]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
5GLY,train,5GLY_G2-B_3.75,2016-07-12,"Protein type: mono. Protenix-style input for 5GLY: 1 protein chain(s) (residue lengths [213]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5GM9,train,5GM9_G2-B_3.58,2016-07-13,"Protein type: mono. Protenix-style input for 5GM9: 1 protein chain(s) (residue lengths [213]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
5GQB,train,5GQB_G2-B_4.00,2016-08-06,"Protein type: mono. Protenix-style input for 5GQB: 1 protein chain(s) (residue lengths [553]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS_GCS_GCS_GCS_GCS), 6 covalent-bond record(s)."
5GQF,train,5GQF_G2-C_3.40,2016-08-07,"Protein type: homo. Protenix-style input for 5GQF: 1 protein chain(s) (residue lengths [606]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
5GQG,train,5GQG_G2-C_3.42,2016-08-07,"Protein type: homo. Protenix-style input for 5GQG: 1 protein chain(s) (residue lengths [606]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
5GQV,train,5GQV_G5-E_4.07,2016-08-08,"Protein type: mono. Protenix-style input for 5GQV: 1 protein chain(s) (residue lengths [793]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
5GQX,train,5GQX_G2-B_3.92,2016-08-08,"Protein type: mono. Protenix-style input for 5GQX: 1 protein chain(s) (residue lengths [793]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
5GQY,train,5GQY_G4-D_4.00,2016-08-08,"Protein type: mono. Protenix-style input for 5GQY: 1 protein chain(s) (residue lengths [793]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
5GR1,train,5GR1_G5-E_4.19,2016-08-08,"Protein type: mono. Protenix-style input for 5GR1: 1 protein chain(s) (residue lengths [793]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
5GR4,train,5GR4_G3-C_3.70,2016-08-08,"Protein type: mono. Protenix-style input for 5GR4: 1 protein chain(s) (residue lengths [793]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5GW7,train,5GW7_G2-D_3.38,2016-09-08,"Protein type: homo. Protenix-style input for 5GW7: 1 protein chain(s) (residue lengths [760]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
5GXY,train,5GXY_G2-D_3.71,2016-09-21,"Protein type: homo. Protenix-style input for 5GXY: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5GXZ,train,5GXZ_G3-F_3.62,2016-09-21,"Protein type: homo. Protenix-style input for 5GXZ: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5GY0,train,5GY0_G2-C_3.66,2016-09-21,"Protein type: homo. Protenix-style input for 5GY0: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5GY1,train,5GY1_G2-C_3.68,2016-09-21,"Protein type: homo. Protenix-style input for 5GY1: 1 protein chain(s) (residue lengths [610]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5GZH,train,5GZH_G2-C_3.95,2016-09-28,"Protein type: homo. Protenix-style input for 5GZH: 1 protein chain(s) (residue lengths [449]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5GZK,train,5GZK_G2-C_4.12,2016-09-28,"Protein type: homo. Protenix-style input for 5GZK: 1 protein chain(s) (residue lengths [461]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5GZV,train,5GZV_G2-C_3.55,2016-10-01,"Protein type: homo. Protenix-style input for 5GZV: 1 protein chain(s) (residue lengths [885]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
5H40,train,5H40_G2-C_3.61,2016-10-28,"Protein type: homo. Protenix-style input for 5H40: 1 protein chain(s) (residue lengths [1122]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5H41,train,5H41_G2-C_3.56,2016-10-28,"Protein type: homo. Protenix-style input for 5H41: 1 protein chain(s) (residue lengths [1122]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
5H4R,train,5H4R_G2-B_3.25,2016-11-02,"Protein type: mono. Protenix-style input for 5H4R: 1 protein chain(s) (residue lengths [396]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5H9Y,train,5H9Y_G3-C_4.10,2015-12-29,"Protein type: mono. Protenix-style input for 5H9Y: 1 protein chain(s) (residue lengths [444]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5HO9,train,5HO9_G2-C_3.70,2016-01-19,"Protein type: homo. Protenix-style input for 5HO9: 1 protein chain(s) (residue lengths [639]), 1 ligand/glycan slot(s) (CCD_AHR_AHR_AHR_AHR_AHR_AHR_AHR_AHR), 7 covalent-bond record(s)."
5HOF,train,5HOF_G2-B_3.95,2016-01-19,"Protein type: mono. Protenix-style input for 5HOF: 1 protein chain(s) (residue lengths [848]), 1 ligand/glycan slot(s) (CCD_AHR_AHR_AHR_AHR_AHR), 4 covalent-bond record(s)."
5HPO,train,5HPO_G3-D_3.97,2016-01-20,"Protein type: mono. Protenix-style input for 5HPO: 1 protein chain(s) (residue lengths [1084]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
5HXM,train,5HXM_G3-C_3.68,2016-01-31,"Protein type: mono. Protenix-style input for 5HXM: 1 protein chain(s) (residue lengths [1084]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5I0D,train,5I0D_G2-C_3.67,2016-02-03,"Protein type: homo. Protenix-style input for 5I0D: 1 protein chain(s) (residue lengths [1063]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5I0E,train,5I0E_G2-B_3.35,2016-02-03,"Protein type: mono. Protenix-style input for 5I0E: 1 protein chain(s) (residue lengths [733]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5I0F,train,5I0F_G3-C_3.23,2016-02-03,"Protein type: mono. Protenix-style input for 5I0F: 1 protein chain(s) (residue lengths [733]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 2 covalent-bond record(s)."
5I81,train,5I81_G4-D_5.77,2016-02-18,"Protein type: mono. Protenix-style input for 5I81: 1 protein chain(s) (residue lengths [583]), 1 ligand/glycan slot(s) (CCD_MAN_BMA), 1 covalent-bond record(s)."
5I85,train,5I85_G2-B_5.42,2016-02-18,"Protein type: mono. Protenix-style input for 5I85: 1 protein chain(s) (residue lengths [583]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
5IFT,train,5IFT_G5-E_3.57,2016-02-26,"Protein type: mono. Protenix-style input for 5IFT: 1 protein chain(s) (residue lengths [1013]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
5IHR,train,5IHR_G4-E_3.57,2016-02-29,"Protein type: mono. Protenix-style input for 5IHR: 1 protein chain(s) (residue lengths [1013]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
5IIC,train,5IIC_G2-C_2.86,2016-03-01,"Protein type: homo. Protenix-style input for 5IIC: 1 protein chain(s) (residue lengths [496]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5JU9,train,5JU9_G2-B_3.45,2016-05-10,"Protein type: mono. Protenix-style input for 5JU9: 1 protein chain(s) (residue lengths [168]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
5JUG,train,5JUG_G2-B_3.44,2016-05-10,"Protein type: mono. Protenix-style input for 5JUG: 1 protein chain(s) (residue lengths [168]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA_BMA), 4 covalent-bond record(s)."
5JUV,train,5JUV_G5-E_3.52,2016-05-10,"Protein type: mono. Protenix-style input for 5JUV: 1 protein chain(s) (residue lengths [1013]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 1 covalent-bond record(s)."
5K5C,train,5K5C_G2-B_3.92,2016-05-23,"Protein type: mono. Protenix-style input for 5K5C: 1 protein chain(s) (residue lengths [487]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5KIJ,train,5KIJ_G2-B_4.14,2016-06-16,"Protein type: mono. Protenix-style input for 5KIJ: 1 protein chain(s) (residue lengths [452]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_MAN_MAN_MAN_MAN_MAN_MAN), 8 covalent-bond record(s)."
5KJQ,train,5KJQ_G2-B_3.43,2016-06-20,"Protein type: mono. Protenix-style input for 5KJQ: 1 protein chain(s) (residue lengths [180]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5KKB,train,5KKB_G2-C_4.56,2016-06-21,"Protein type: homo. Protenix-style input for 5KKB: 1 protein chain(s) (residue lengths [469]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_MAN_MAN_MAN_MAN_MAN_MAN), 8 covalent-bond record(s)."
5KWB,train,5KWB_G2-B_4.72,2016-07-17,"Protein type: mono. Protenix-style input for 5KWB: 1 protein chain(s) (residue lengths [371]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
5L6F,train,5L6F_G3-D_3.72,2016-05-30,"Protein type: mono. Protenix-style input for 5L6F: 1 protein chain(s) (residue lengths [497]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5LFV,train,5LFV_G3-E_3.89,2016-07-04,"Protein type: homo. Protenix-style input for 5LFV: 1 protein chain(s) (residue lengths [317]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
5LR0,train,5LR0_G2-C_5.93,2016-08-18,"Protein type: homo. Protenix-style input for 5LR0: 1 protein chain(s) (residue lengths [431]), 1 ligand/glycan slot(s) (CCD_NGA_GAL_SIA), 2 covalent-bond record(s)."
5LSV,train,5LSV_G2-B_4.48,2016-09-05,"Protein type: mono. Protenix-style input for 5LSV: 1 protein chain(s) (residue lengths [233]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5M03,train,5M03_G2-B_3.59,2016-10-03,"Protein type: mono. Protenix-style input for 5M03: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
5M3W,train,5M3W_G3-C_3.51,2016-10-17,"Protein type: mono. Protenix-style input for 5M3W: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
5M4A,train,5M4A_G2-B_3.52,2016-10-18,"Protein type: mono. Protenix-style input for 5M4A: 1 protein chain(s) (residue lengths [603]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5M7I,train,5M7I_G2-B_3.26,2016-10-27,"Protein type: mono. Protenix-style input for 5M7I: 1 protein chain(s) (residue lengths [435]), 1 ligand/glycan slot(s) (CCD_BMA_MAN), 1 covalent-bond record(s)."
5M7Y,train,5M7Y_G2-B_3.70,2016-10-28,"Protein type: mono. Protenix-style input for 5M7Y: 1 protein chain(s) (residue lengths [435]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_MAN), 2 covalent-bond record(s)."
5M8P,train,5M8P_G7-S_5.81,2016-10-29,"Protein type: homo. Protenix-style input for 5M8P: 1 protein chain(s) (residue lengths [446]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
5MAN,train,5MAN_G2-B_3.15,2016-11-03,"Protein type: mono. Protenix-style input for 5MAN: 1 protein chain(s) (residue lengths [504]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5MC8,train,5MC8_G3-C_3.52,2016-11-09,"Protein type: mono. Protenix-style input for 5MC8: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
5MGC,train,5MGC_G5-E_4.16,2016-11-21,"Protein type: mono. Protenix-style input for 5MGC: 1 protein chain(s) (residue lengths [1013]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_GAL), 2 covalent-bond record(s)."
5MGD,train,5MGD_G5-E_4.04,2016-11-21,"Protein type: mono. Protenix-style input for 5MGD: 1 protein chain(s) (residue lengths [1013]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_GAL), 2 covalent-bond record(s)."
5MU9,train,5MU9_G2-B_4.10,2017-01-12,"Protein type: mono. Protenix-style input for 5MU9: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
5N05,train,5N05_G2-B_4.16,2017-02-02,"Protein type: mono. Protenix-style input for 5N05: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
5N6V,train,5N6V_G2-B_3.76,2017-02-16,"Protein type: mono. Protenix-style input for 5N6V: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
5N7J,train,5N7J_G2-D_3.67,2017-02-20,"Protein type: mono. Protenix-style input for 5N7J: 1 protein chain(s) (residue lengths [628]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
5NJP,train,5NJP_G2-B_3.52,2017-03-29,"Protein type: mono. Protenix-style input for 5NJP: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5NJQ,train,5NJQ_G2-B_3.53,2017-03-29,"Protein type: mono. Protenix-style input for 5NJQ: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5NJR,train,5NJR_G2-B_3.51,2017-03-29,"Protein type: mono. Protenix-style input for 5NJR: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5NJS,train,5NJS_G2-B_3.54,2017-03-29,"Protein type: mono. Protenix-style input for 5NJS: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5NKW,train,5NKW_G3-C_4.14,2017-04-03,"Protein type: mono. Protenix-style input for 5NKW: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BGC), 2 covalent-bond record(s)."
5NLN,train,5NLN_G2-B_4.86,2017-04-04,"Protein type: mono. Protenix-style input for 5NLN: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5NLO,train,5NLO_G2-B_4.18,2017-04-04,"Protein type: mono. Protenix-style input for 5NLO: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
5NLP,train,5NLP_G3-C_3.79,2017-04-04,"Protein type: mono. Protenix-style input for 5NLP: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_XYS_XYP), 1 covalent-bond record(s)."
5NLQ,train,5NLQ_G2-C_3.94,2017-04-04,"Protein type: mono. Protenix-style input for 5NLQ: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
5NLR,train,5NLR_G2-B_3.87,2017-04-04,"Protein type: mono. Protenix-style input for 5NLR: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5NLS,train,5NLS_G2-B_3.95,2017-04-04,"Protein type: mono. Protenix-style input for 5NLS: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
5NM1,train,5NM1_G2-E_3.94,2017-04-05,"Protein type: homo. Protenix-style input for 5NM1: 1 protein chain(s) (residue lengths [139]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
5NZ8,train,5NZ8_G2-C_3.67,2017-05-12,"Protein type: homo. Protenix-style input for 5NZ8: 1 protein chain(s) (residue lengths [1009]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
5O2N,train,5O2N_G2-B_3.87,2017-05-22,"Protein type: mono. Protenix-style input for 5O2N: 1 protein chain(s) (residue lengths [616]), 1 ligand/glycan slot(s) (CCD_NDG_NAG_NAG_NAG), 3 covalent-bond record(s)."
5O2O,train,5O2O_G2-B_3.53,2017-05-22,"Protein type: mono. Protenix-style input for 5O2O: 1 protein chain(s) (residue lengths [616]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
5O7W,train,5O7W_G2-C_3.81,2017-06-09,"Protein type: homo. Protenix-style input for 5O7W: 1 protein chain(s) (residue lengths [90]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
5O9Q,train,5O9Q_G2-B_3.85,2017-06-20,"Protein type: mono. Protenix-style input for 5O9Q: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5O9R,train,5O9R_G2-B_3.84,2017-06-20,"Protein type: mono. Protenix-style input for 5O9R: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5OA2,train,5OA2_G2-D_3.66,2017-06-20,"Protein type: homo. Protenix-style input for 5OA2: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5OFK,train,5OFK_G2-B_3.28,2017-07-11,"Protein type: mono. Protenix-style input for 5OFK: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP_XYP_XYP), 6 covalent-bond record(s)."
5OFL,train,5OFL_G2-B_3.12,2017-07-11,"Protein type: mono. Protenix-style input for 5OFL: 1 protein chain(s) (residue lengths [339]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
5OYE,train,5OYE_G2-C_3.96,2017-09-08,"Protein type: homo. Protenix-style input for 5OYE: 1 protein chain(s) (residue lengths [396]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_XYS_XYS_GAL), 6 covalent-bond record(s)."
5SV8,train,5SV8_G2-B_3.87,2016-08-05,"Protein type: mono. Protenix-style input for 5SV8: 1 protein chain(s) (residue lengths [208]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_XYS_XYS), 5 covalent-bond record(s)."
5SVK,train,5SVK_G2-D_4.14,2016-08-06,"Protein type: homo. Protenix-style input for 5SVK: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5SVL,train,5SVL_G2-C_4.81,2016-08-06,"Protein type: homo. Protenix-style input for 5SVL: 1 protein chain(s) (residue lengths [363]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5T4A,train,5T4A_G3-C_3.57,2016-08-29,"Protein type: mono. Protenix-style input for 5T4A: 1 protein chain(s) (residue lengths [783]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5T4C,train,5T4C_G3-C_4.10,2016-08-29,"Protein type: mono. Protenix-style input for 5T4C: 1 protein chain(s) (residue lengths [783]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
5T4G,train,5T4G_G2-B_3.55,2016-08-29,"Protein type: mono. Protenix-style input for 5T4G: 1 protein chain(s) (residue lengths [783]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
5T7N,train,5T7N_G2-B_4.65,2016-09-05,"Protein type: mono. Protenix-style input for 5T7N: 1 protein chain(s) (residue lengths [233]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
5TPB,train,5TPB_G2-C_4.13,2016-10-20,"Protein type: homo. Protenix-style input for 5TPB: 1 protein chain(s) (residue lengths [444]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
5UPI,train,5UPI_G2-B_3.64,2017-02-03,"Protein type: mono. Protenix-style input for 5UPI: 1 protein chain(s) (residue lengths [753]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5UPM,train,5UPM_G3-C_3.55,2017-02-03,"Protein type: mono. Protenix-style input for 5UPM: 1 protein chain(s) (residue lengths [753]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
5UPN,train,5UPN_G2-C_3.34,2017-02-03,"Protein type: mono. Protenix-style input for 5UPN: 1 protein chain(s) (residue lengths [753]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5UPO,train,5UPO_G2-B_3.67,2017-02-03,"Protein type: mono. Protenix-style input for 5UPO: 1 protein chain(s) (residue lengths [753]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
5UWC,train,5UWC_G3-C_4.99,2017-02-21,"Protein type: simple_hetero. Protenix-style input for 5UWC: 2 protein chain(s) (residue lengths [288,122]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_FUL), 2 covalent-bond record(s)."
5UZU,train,5UZU_G3-C_5.40,2017-02-27,"Protein type: simple_hetero. Protenix-style input for 5UZU: 2 protein chain(s) (residue lengths [71,578]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
5V1W,train,5V1W_G2-B_3.66,2017-03-02,"Protein type: mono. Protenix-style input for 5V1W: 1 protein chain(s) (residue lengths [752]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5VCS,train,5VCS_G2-C_4.14,2017-03-31,"Protein type: homo. Protenix-style input for 5VCS: 1 protein chain(s) (residue lengths [419]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_NAG_MAN), 4 covalent-bond record(s)."
5W11,train,5W11_G3-G_3.48,2017-06-01,"Protein type: homo. Protenix-style input for 5W11: 1 protein chain(s) (residue lengths [440]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
5W42,train,5W42_G8-H_7.77,2017-06-08,"Protein type: simple_hetero. Protenix-style input for 5W42: 4 protein chain(s) (residue lengths [329,174,236,214]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
5WQU,train,5WQU_G2-B_3.61,2016-11-28,"Protein type: mono. Protenix-style input for 5WQU: 1 protein chain(s) (residue lengths [498]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
5WV9,train,5WV9_G2-B_3.54,2016-12-23,"Protein type: mono. Protenix-style input for 5WV9: 1 protein chain(s) (residue lengths [482]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5WVB,train,5WVB_G2-B_3.86,2016-12-23,"Protein type: mono. Protenix-style input for 5WVB: 1 protein chain(s) (residue lengths [482]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
5WVG,train,5WVG_G2-B_3.64,2016-12-24,"Protein type: mono. Protenix-style input for 5WVG: 1 protein chain(s) (residue lengths [460]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
5WVH,train,5WVH_G2-B_3.72,2016-12-24,"Protein type: mono. Protenix-style input for 5WVH: 1 protein chain(s) (residue lengths [460]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5X3K,train,5X3K_G3-D_3.31,2017-02-06,"Protein type: homo. Protenix-style input for 5X3K: 1 protein chain(s) (residue lengths [743]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5X7H,train,5X7H_G2-B_3.91,2017-02-26,"Protein type: mono. Protenix-style input for 5X7H: 1 protein chain(s) (residue lengths [720]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
5X7P,train,5X7P_G3-D_4.03,2017-02-27,"Protein type: homo. Protenix-style input for 5X7P: 1 protein chain(s) (residue lengths [1263]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5X7Q,train,5X7Q_G5-F_3.77,2017-02-27,"Protein type: homo. Protenix-style input for 5X7Q: 1 protein chain(s) (residue lengths [1263]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC), 3 covalent-bond record(s)."
5X7R,train,5X7R_G4-G_3.71,2017-02-27,"Protein type: homo. Protenix-style input for 5X7R: 1 protein chain(s) (residue lengths [1263]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5XBX,train,5XBX_G2-B_3.48,2017-03-21,"Protein type: mono. Protenix-style input for 5XBX: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5XC4,train,5XC4_G2-C_3.49,2017-03-22,"Protein type: mono. Protenix-style input for 5XC4: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5XC8,train,5XC8_G2-C_3.51,2017-03-22,"Protein type: mono. Protenix-style input for 5XC8: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5XC9,train,5XC9_G2-B_3.51,2017-03-22,"Protein type: mono. Protenix-style input for 5XC9: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5XCA,train,5XCA_G2-B_3.44,2017-03-22,"Protein type: mono. Protenix-style input for 5XCA: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5XCZ,train,5XCZ_G2-B_3.51,2017-03-24,"Protein type: mono. Protenix-style input for 5XCZ: 1 protein chain(s) (residue lengths [358]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
5XOO,train,5XOO_G2-C_3.42,2017-05-29,"Protein type: homo. Protenix-style input for 5XOO: 1 protein chain(s) (residue lengths [393]), 1 ligand/glycan slot(s) (CCD_XYP_GAL), 1 covalent-bond record(s)."
5XTT,train,5XTT_G2-C_3.54,2017-06-20,"Protein type: homo. Protenix-style input for 5XTT: 1 protein chain(s) (residue lengths [162]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA), 2 covalent-bond record(s)."
5XU5,train,5XU5_G2-C_3.92,2017-06-22,"Protein type: homo. Protenix-style input for 5XU5: 1 protein chain(s) (residue lengths [162]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA), 3 covalent-bond record(s)."
5XUG,train,5XUG_G3-D_3.48,2017-06-23,"Protein type: homo. Protenix-style input for 5XUG: 1 protein chain(s) (residue lengths [162]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA), 2 covalent-bond record(s)."
5XUL,train,5XUL_G2-D_3.62,2017-06-23,"Protein type: homo. Protenix-style input for 5XUL: 1 protein chain(s) (residue lengths [162]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA_BMA_BMA), 5 covalent-bond record(s)."
5XXN,train,5XXN_G2-D_3.36,2017-07-04,"Protein type: homo. Protenix-style input for 5XXN: 1 protein chain(s) (residue lengths [760]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5XXO,train,5XXO_G2-C_3.58,2017-07-04,"Protein type: homo. Protenix-style input for 5XXO: 1 protein chain(s) (residue lengths [760]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
5XZU,train,5XZU_G2-C_3.34,2017-07-14,"Protein type: homo. Protenix-style input for 5XZU: 1 protein chain(s) (residue lengths [335]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
5Y2B,train,5Y2B_G2-B_3.77,2017-07-24,"Protein type: mono. Protenix-style input for 5Y2B: 1 protein chain(s) (residue lengths [377]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG_NAG), 6 covalent-bond record(s)."
5Y2C,train,5Y2C_G2-E_3.86,2017-07-24,"Protein type: homo. Protenix-style input for 5Y2C: 1 protein chain(s) (residue lengths [383]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
5Y97,train,5Y97_G4-E_4.31,2017-08-23,"Protein type: simple_hetero. Protenix-style input for 5Y97: 3 protein chain(s) (residue lengths [41,209,264]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
5YLI,train,5YLI_G2-C_4.83,2017-10-17,"Protein type: homo. Protenix-style input for 5YLI: 1 protein chain(s) (residue lengths [309]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA), 3 covalent-bond record(s)."
5YLK,train,5YLK_G2-C_3.42,2017-10-17,"Protein type: homo. Protenix-style input for 5YLK: 1 protein chain(s) (residue lengths [309]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
5YLL,train,5YLL_G2-D_4.25,2017-10-17,"Protein type: homo. Protenix-style input for 5YLL: 1 protein chain(s) (residue lengths [309]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA), 2 covalent-bond record(s)."
5YND,train,5YND_G2-B_6.47,2017-10-24,"Protein type: mono. Protenix-style input for 5YND: 1 protein chain(s) (residue lengths [1102]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
5YQS,train,5YQS_G3-L_3.35,2017-11-07,"Protein type: homo. Protenix-style input for 5YQS: 1 protein chain(s) (residue lengths [765]), 1 ligand/glycan slot(s) (CCD_BGC_XYS), 1 covalent-bond record(s)."
5YRF,train,5YRF_G3-C_3.89,2017-11-09,"Protein type: simple_hetero. Protenix-style input for 5YRF: 2 protein chain(s) (residue lengths [142,142]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5YRI,train,5YRI_G3-C_3.75,2017-11-09,"Protein type: simple_hetero. Protenix-style input for 5YRI: 2 protein chain(s) (residue lengths [142,142]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5Z4T,train,5Z4T_G2-D_3.42,2018-01-13,"Protein type: homo. Protenix-style input for 5Z4T: 1 protein chain(s) (residue lengths [309]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
5Z7M,train,5Z7M_G2-B_3.97,2018-01-30,"Protein type: mono. Protenix-style input for 5Z7M: 1 protein chain(s) (residue lengths [546]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
5Z7N,train,5Z7N_G2-B_3.94,2018-01-30,"Protein type: mono. Protenix-style input for 5Z7N: 1 protein chain(s) (residue lengths [546]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5Z7O,train,5Z7O_G2-B_3.89,2018-01-30,"Protein type: mono. Protenix-style input for 5Z7O: 1 protein chain(s) (residue lengths [546]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
5Z7P,train,5Z7P_G2-B_4.04,2018-01-30,"Protein type: mono. Protenix-style input for 5Z7P: 1 protein chain(s) (residue lengths [546]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
5ZA0,train,5ZA0_G2-B_3.97,2018-02-06,"Protein type: mono. Protenix-style input for 5ZA0: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5ZCC,train,5ZCC_G2-B_3.26,2018-02-16,"Protein type: mono. Protenix-style input for 5ZCC: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
5ZCD,train,5ZCD_G2-B_3.48,2018-02-16,"Protein type: mono. Protenix-style input for 5ZCD: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
5ZCE,train,5ZCE_G2-B_3.61,2018-02-16,"Protein type: mono. Protenix-style input for 5ZCE: 1 protein chain(s) (residue lengths [555]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
5ZF3,train,5ZF3_G2-B_3.10,2018-03-02,"Protein type: mono. Protenix-style input for 5ZF3: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
5ZII,train,5ZII_G2-B_3.18,2018-03-15,"Protein type: mono. Protenix-style input for 5ZII: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
5ZKZ,train,5ZKZ_G2-B_3.13,2018-03-26,"Protein type: mono. Protenix-style input for 5ZKZ: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
5ZQS,train,5ZQS_G2-D_3.34,2018-04-20,"Protein type: homo. Protenix-style input for 5ZQS: 1 protein chain(s) (residue lengths [541]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
5ZQX,train,5ZQX_G2-F_3.30,2018-04-20,"Protein type: homo. Protenix-style input for 5ZQX: 1 protein chain(s) (residue lengths [541]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6A0K,train,6A0K_G2-C_3.64,2018-06-05,"Protein type: homo. Protenix-style input for 6A0K: 1 protein chain(s) (residue lengths [471]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6A0L,train,6A0L_G2-B_3.49,2018-06-05,"Protein type: mono. Protenix-style input for 6A0L: 1 protein chain(s) (residue lengths [471]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6AH4,train,6AH4_G2-G_4.34,2018-08-16,"Protein type: homo. Protenix-style input for 6AH4: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6AH5,train,6AH5_G2-D_4.05,2018-08-16,"Protein type: homo. Protenix-style input for 6AH5: 1 protein chain(s) (residue lengths [362]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6AOS,train,6AOS_G5-E_4.08,2017-08-16,"Protein type: simple_hetero. Protenix-style input for 6AOS: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6AOT,train,6AOT_G5-E_3.85,2017-08-16,"Protein type: simple_hetero. Protenix-style input for 6AOT: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
6AOV,train,6AOV_G6-F_4.39,2017-08-16,"Protein type: simple_hetero. Protenix-style input for 6AOV: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
6AQ5,train,6AQ5_G2-E_4.14,2017-08-18,"Protein type: homo. Protenix-style input for 6AQ5: 1 protein chain(s) (residue lengths [239]), 1 ligand/glycan slot(s) (CCD_BMA_GAL), 1 covalent-bond record(s)."
6AZP,train,6AZP_G3-C_4.71,2017-09-11,"Protein type: simple_hetero. Protenix-style input for 6AZP: 2 protein chain(s) (residue lengths [577,60]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6BKR,train,6BKR_G6-G_4.20,2017-11-09,"Protein type: simple_hetero. Protenix-style input for 6BKR: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6BKT,train,6BKT_G4-G_4.10,2017-11-09,"Protein type: simple_hetero. Protenix-style input for 6BKT: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6BP2,train,6BP2_G7-G_7.75,2017-11-21,"Protein type: simple_hetero. Protenix-style input for 6BP2: 4 protein chain(s) (residue lengths [250,202,229,217]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_MAN), 2 covalent-bond record(s)."
6BS6,train,6BS6_G6-G_3.97,2017-12-01,"Protein type: homo. Protenix-style input for 6BS6: 1 protein chain(s) (residue lengths [670]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC_GLC_GLC), 6 covalent-bond record(s)."
6CEL,train,6CEL_G3-C_3.60,1997-09-24,"Protein type: mono. Protenix-style input for 6CEL: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
6CVB,train,6CVB_G5-E_4.62,2018-03-27,"Protein type: simple_hetero. Protenix-style input for 6CVB: 4 protein chain(s) (residue lengths [297,247,248,68]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6CZS,train,6CZS_G3-C_4.59,2018-04-09,"Protein type: mono. Protenix-style input for 6CZS: 1 protein chain(s) (residue lengths [335]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6DRU,train,6DRU_G5-F_4.19,2018-06-13,"Protein type: homo. Protenix-style input for 6DRU: 1 protein chain(s) (residue lengths [718]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_XYS_GAL_BGC), 4 covalent-bond record(s)."
6E0W,train,6E0W_G2-C_4.08,2018-07-07,"Protein type: homo. Protenix-style input for 6E0W: 1 protein chain(s) (residue lengths [626]), 1 ligand/glycan slot(s) (CCD_BGC_FUC_FUC_GLA_BDP), 4 covalent-bond record(s)."
6EEV,train,6EEV_G2-C_4.97,2018-08-15,"Protein type: mono. Protenix-style input for 6EEV: 1 protein chain(s) (residue lengths [429]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6EN3,train,6EN3_G2-B_4.07,2017-10-04,"Protein type: mono. Protenix-style input for 6EN3: 1 protein chain(s) (residue lengths [1191]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_NAG_GAL_MAN_NAG_GAL), 7 covalent-bond record(s)."
6EUF,train,6EUF_G2-E_4.55,2017-10-30,"Protein type: homo. Protenix-style input for 6EUF: 1 protein chain(s) (residue lengths [475]), 1 ligand/glycan slot(s) (CCD_GAL_GAL_AHR_AHR_BDP), 4 covalent-bond record(s)."
6F8N,train,6F8N_G2-C_3.53,2017-12-13,"Protein type: homo. Protenix-style input for 6F8N: 1 protein chain(s) (residue lengths [414]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6FWJ,train,6FWJ_G2-B_3.49,2018-03-06,"Protein type: mono. Protenix-style input for 6FWJ: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
6FWP,train,6FWP_G2-B_3.55,2018-03-06,"Protein type: mono. Protenix-style input for 6FWP: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
6FWQ,train,6FWQ_G2-B_3.60,2018-03-07,"Protein type: mono. Protenix-style input for 6FWQ: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
6G09,train,6G09_G2-B_3.61,2018-03-16,"Protein type: mono. Protenix-style input for 6G09: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6G0B,train,6G0B_G2-B_3.50,2018-03-16,"Protein type: mono. Protenix-style input for 6G0B: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6G0N,train,6G0N_G2-B_3.77,2018-03-19,"Protein type: mono. Protenix-style input for 6G0N: 1 protein chain(s) (residue lengths [399]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
6G0X,train,6G0X_G2-B_3.75,2018-03-20,"Protein type: mono. Protenix-style input for 6G0X: 1 protein chain(s) (residue lengths [599]), 1 ligand/glycan slot(s) (CCD_NAG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
6G1G,train,6G1G_G2-C_3.54,2018-03-21,"Protein type: mono. Protenix-style input for 6G1G: 1 protein chain(s) (residue lengths [223]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
6G1I,train,6G1I_G3-D_3.48,2018-03-21,"Protein type: homo. Protenix-style input for 6G1I: 1 protein chain(s) (residue lengths [223]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
6G47,train,6G47_G2-D_4.96,2018-03-26,"Protein type: homo. Protenix-style input for 6G47: 1 protein chain(s) (residue lengths [209]), 1 ligand/glycan slot(s) (CCD_SIA_SIA), 1 covalent-bond record(s)."
6GKE,train,6GKE_G2-B_3.58,2018-05-19,"Protein type: mono. Protenix-style input for 6GKE: 1 protein chain(s) (residue lengths [324]), 1 ligand/glycan slot(s) (CCD_NDG_FUC), 1 covalent-bond record(s)."
6GL0,train,6GL0_G2-E_3.72,2018-05-22,"Protein type: homo. Protenix-style input for 6GL0: 1 protein chain(s) (residue lengths [331]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
6GVR,train,6GVR_G2-B_3.92,2018-06-21,"Protein type: mono. Protenix-style input for 6GVR: 1 protein chain(s) (residue lengths [597]), 1 ligand/glycan slot(s) (CCD_NDG_GLA_GLC_RAM_NAG), 4 covalent-bond record(s)."
6GXV,train,6GXV_G2-C_3.72,2018-06-27,"Protein type: homo. Protenix-style input for 6GXV: 1 protein chain(s) (residue lengths [484]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6GYA,train,6GYA_G2-I_4.01,2018-06-28,"Protein type: homo. Protenix-style input for 6GYA: 1 protein chain(s) (residue lengths [484]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6HD8,train,6HD8_G3-C_2.78,2018-08-17,"Protein type: simple_hetero. Protenix-style input for 6HD8: 2 protein chain(s) (residue lengths [486,255]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6HD9,train,6HD9_G3-C_2.78,2018-08-17,"Protein type: simple_hetero. Protenix-style input for 6HD9: 2 protein chain(s) (residue lengths [486,255]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6HDA,train,6HDA_G3-C_2.68,2018-08-17,"Protein type: simple_hetero. Protenix-style input for 6HDA: 2 protein chain(s) (residue lengths [486,255]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6HDB,train,6HDB_G3-C_2.75,2018-08-17,"Protein type: simple_hetero. Protenix-style input for 6HDB: 2 protein chain(s) (residue lengths [486,255]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6HDC,train,6HDC_G3-C_2.78,2018-08-17,"Protein type: simple_hetero. Protenix-style input for 6HDC: 2 protein chain(s) (residue lengths [486,255]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6HF4,train,6HF4_G2-B_4.01,2018-08-21,"Protein type: mono. Protenix-style input for 6HF4: 1 protein chain(s) (residue lengths [368]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA_GLA), 4 covalent-bond record(s)."
6HMH,train,6HMH_G2-B_3.71,2018-09-12,"Protein type: mono. Protenix-style input for 6HMH: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
6HPF,train,6HPF_G2-B_4.31,2018-09-20,"Protein type: mono. Protenix-style input for 6HPF: 1 protein chain(s) (residue lengths [312]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA_GLA_GLA), 4 covalent-bond record(s)."
6HQ8,train,6HQ8_G2-C_3.73,2018-09-24,"Protein type: homo. Protenix-style input for 6HQ8: 1 protein chain(s) (residue lengths [1175]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
6I1T,train,6I1T_G2-C_5.30,2018-10-30,"Protein type: mono. Protenix-style input for 6I1T: 1 protein chain(s) (residue lengths [405]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6I4Y,train,6I4Y_G3-C_3.29,2018-11-12,"Protein type: simple_hetero. Protenix-style input for 6I4Y: 2 protein chain(s) (residue lengths [446,207]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6IDB,train,6IDB_G3-C_4.20,2018-09-09,"Protein type: simple_hetero. Protenix-style input for 6IDB: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6IDW,train,6IDW_G2-E_3.66,2018-09-11,"Protein type: homo. Protenix-style input for 6IDW: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6IDZ,train,6IDZ_G3-C_4.02,2018-09-12,"Protein type: simple_hetero. Protenix-style input for 6IDZ: 2 protein chain(s) (residue lengths [321,177]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6IIG,train,6IIG_G2-B_3.95,2018-10-05,"Protein type: mono. Protenix-style input for 6IIG: 1 protein chain(s) (residue lengths [586]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
6IK6,train,6IK6_G3-F_3.45,2018-10-15,"Protein type: homo. Protenix-style input for 6IK6: 1 protein chain(s) (residue lengths [718]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 2 covalent-bond record(s)."
6IK7,train,6IK7_G3-D_3.67,2018-10-15,"Protein type: homo. Protenix-style input for 6IK7: 1 protein chain(s) (residue lengths [718]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 1 covalent-bond record(s)."
6IK8,train,6IK8_G3-D_3.68,2018-10-15,"Protein type: homo. Protenix-style input for 6IK8: 1 protein chain(s) (residue lengths [718]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 1 covalent-bond record(s)."
6IN5,train,6IN5_G2-B_5.03,2018-10-24,"Protein type: mono. Protenix-style input for 6IN5: 1 protein chain(s) (residue lengths [586]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
6IYG,train,6IYG_G2-B_3.00,2018-12-15,"Protein type: mono. Protenix-style input for 6IYG: 1 protein chain(s) (residue lengths [536]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
6J34,train,6J34_G2-C_3.62,2019-01-09,"Protein type: mono. Protenix-style input for 6J34: 1 protein chain(s) (residue lengths [1053]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6J3X,train,6J3X_G2-B_3.33,2019-01-06,"Protein type: mono. Protenix-style input for 6J3X: 1 protein chain(s) (residue lengths [530]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6J4H,train,6J4H_G2-C_3.62,2019-01-09,"Protein type: mono. Protenix-style input for 6J4H: 1 protein chain(s) (residue lengths [1053]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6JAX,train,6JAX_G3-C_4.67,2019-01-25,"Protein type: mono. Protenix-style input for 6JAX: 1 protein chain(s) (residue lengths [389]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS_GCS_GCS_GCS_GCS_GCS), 7 covalent-bond record(s)."
6JDY,train,6JDY_G2-E_3.32,2019-02-02,"Protein type: homo. Protenix-style input for 6JDY: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6JDZ,train,6JDZ_G2-E_3.39,2019-02-02,"Protein type: homo. Protenix-style input for 6JDZ: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6JE0,train,6JE0_G2-E_3.38,2019-02-02,"Protein type: homo. Protenix-style input for 6JE0: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6JE1,train,6JE1_G2-E_3.38,2019-02-02,"Protein type: homo. Protenix-style input for 6JE1: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6JE2,train,6JE2_G2-E_3.37,2019-02-02,"Protein type: homo. Protenix-style input for 6JE2: 1 protein chain(s) (residue lengths [319]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6JFJ,train,6JFJ_G2-C_3.65,2019-02-09,"Protein type: mono. Protenix-style input for 6JFJ: 1 protein chain(s) (residue lengths [675]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6JFX,train,6JFX_G2-C_3.65,2019-02-12,"Protein type: mono. Protenix-style input for 6JFX: 1 protein chain(s) (residue lengths [675]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6JHH,train,6JHH_G2-B_3.68,2019-02-18,"Protein type: mono. Protenix-style input for 6JHH: 1 protein chain(s) (residue lengths [675]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6JHI,train,6JHI_G2-C_3.56,2019-02-18,"Protein type: mono. Protenix-style input for 6JHI: 1 protein chain(s) (residue lengths [675]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6JJM,train,6JJM_G3-H_3.84,2019-02-26,"Protein type: homo. Protenix-style input for 6JJM: 1 protein chain(s) (residue lengths [489]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_SIA_NAG), 3 covalent-bond record(s)."
6JJN,train,6JJN_G3-E_4.17,2019-02-26,"Protein type: homo. Protenix-style input for 6JJN: 1 protein chain(s) (residue lengths [489]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_SIA_FUC), 4 covalent-bond record(s)."
6JM8,train,6JM8_G2-B_3.69,2019-03-07,"Protein type: mono. Protenix-style input for 6JM8: 1 protein chain(s) (residue lengths [393]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
6JMB,train,6JMB_G2-B_3.98,2019-03-07,"Protein type: mono. Protenix-style input for 6JMB: 1 protein chain(s) (residue lengths [393]), 1 ligand/glycan slot(s) (CCD_NAA_NAA), 1 covalent-bond record(s)."
6JWB,train,6JWB_G2-B_3.23,2019-04-19,"Protein type: mono. Protenix-style input for 6JWB: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6JXL,train,6JXL_G2-B_3.23,2019-04-23,"Protein type: mono. Protenix-style input for 6JXL: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6JYS,train,6JYS_G3-F_3.93,2019-04-27,"Protein type: homo. Protenix-style input for 6JYS: 1 protein chain(s) (residue lengths [308]), 1 ligand/glycan slot(s) (CCD_A2G_GAL_NAG), 2 covalent-bond record(s)."
6K2O,train,6K2O_G2-B_4.73,2019-05-15,"Protein type: mono. Protenix-style input for 6K2O: 1 protein chain(s) (residue lengths [163]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_FUC), 3 covalent-bond record(s)."
6K54,train,6K54_G3-E_3.56,2019-05-28,"Protein type: homo. Protenix-style input for 6K54: 1 protein chain(s) (residue lengths [428]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
6K55,train,6K55_G2-D_3.60,2019-05-28,"Protein type: homo. Protenix-style input for 6K55: 1 protein chain(s) (residue lengths [428]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC_BGC), 6 covalent-bond record(s)."
6K9R,train,6K9R_G2-B_3.08,2019-06-17,"Protein type: mono. Protenix-style input for 6K9R: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6K9X,train,6K9X_G2-B_3.10,2019-06-18,"Protein type: mono. Protenix-style input for 6K9X: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6KAM,train,6KAM_G2-E_4.59,2019-06-23,"Protein type: homo. Protenix-style input for 6KAM: 1 protein chain(s) (residue lengths [455]), 1 ligand/glycan slot(s) (CCD_MAN_NAG_NGA), 2 covalent-bond record(s)."
6KPN,train,6KPN_G2-B_4.06,2019-08-15,"Protein type: mono. Protenix-style input for 6KPN: 1 protein chain(s) (residue lengths [303]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
6KQS,train,6KQS_G2-B_3.27,2019-08-18,"Protein type: mono. Protenix-style input for 6KQS: 1 protein chain(s) (residue lengths [665]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
6KQT,train,6KQT_G2-B_3.23,2019-08-18,"Protein type: mono. Protenix-style input for 6KQT: 1 protein chain(s) (residue lengths [665]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
6KVV,train,6KVV_G2-B_3.22,2019-09-05,"Protein type: mono. Protenix-style input for 6KVV: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6KWD,train,6KWD_G2-B_3.22,2019-09-06,"Protein type: mono. Protenix-style input for 6KWD: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6KWF,train,6KWF_G2-B_3.22,2019-09-06,"Protein type: mono. Protenix-style input for 6KWF: 1 protein chain(s) (residue lengths [190]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6KWG,train,6KWG_G2-B_3.05,2019-09-06,"Protein type: mono. Protenix-style input for 6KWG: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6KWH,train,6KWH_G2-B_3.12,2019-09-06,"Protein type: mono. Protenix-style input for 6KWH: 1 protein chain(s) (residue lengths [189]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6KXL,train,6KXL_G2-C_3.51,2019-09-12,"Protein type: homo. Protenix-style input for 6KXL: 1 protein chain(s) (residue lengths [372]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6KXM,train,6KXM_G2-C_3.55,2019-09-12,"Protein type: homo. Protenix-style input for 6KXM: 1 protein chain(s) (residue lengths [372]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6KXN,train,6KXN_G2-D_3.54,2019-09-12,"Protein type: homo. Protenix-style input for 6KXN: 1 protein chain(s) (residue lengths [372]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6LCP,train,6LCP_G3-C_4.80,2019-11-19,"Protein type: simple_hetero. Protenix-style input for 6LCP: 2 protein chain(s) (residue lengths [1555,407]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
6LWU,train,6LWU_G2-B_3.98,2020-02-09,"Protein type: mono. Protenix-style input for 6LWU: 1 protein chain(s) (residue lengths [243]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS), 2 covalent-bond record(s)."
6M55,train,6M55_G2-C_3.67,2020-03-10,"Protein type: homo. Protenix-style input for 6M55: 1 protein chain(s) (residue lengths [542]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_GAL), 2 covalent-bond record(s)."
6MDS,train,6MDS_G2-D_4.34,2018-09-05,"Protein type: homo. Protenix-style input for 6MDS: 1 protein chain(s) (residue lengths [802]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_NAG_GAL_MAN_NAG_GAL), 7 covalent-bond record(s)."
6MDV,train,6MDV_G3-D_3.99,2018-09-05,"Protein type: homo. Protenix-style input for 6MDV: 1 protein chain(s) (residue lengths [802]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_MAN_MAN_MAN_MAN), 6 covalent-bond record(s)."
6MVJ,train,6MVJ_G2-B_3.56,2018-10-25,"Protein type: mono. Protenix-style input for 6MVJ: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6NSA,train,6NSA_G6-H_4.75,2019-01-24,"Protein type: simple_hetero. Protenix-style input for 6NSA: 2 protein chain(s) (residue lengths [321,176]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_SIA), 3 covalent-bond record(s)."
6NSB,train,6NSB_G5-H_4.17,2019-01-24,"Protein type: simple_hetero. Protenix-style input for 6NSB: 2 protein chain(s) (residue lengths [321,176]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
6OHE,train,6OHE_G2-G_3.75,2019-04-05,"Protein type: homo. Protenix-style input for 6OHE: 1 protein chain(s) (residue lengths [345]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
6OR4,train,6OR4_G2-C_3.62,2019-04-29,"Protein type: homo. Protenix-style input for 6OR4: 1 protein chain(s) (residue lengths [451]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
6ORF,train,6ORF_G2-C_3.59,2019-04-30,"Protein type: homo. Protenix-style input for 6ORF: 1 protein chain(s) (residue lengths [452]), 1 ligand/glycan slot(s) (CCD_NDG_FUC_GAL), 2 covalent-bond record(s)."
6ORH,train,6ORH_G2-D_3.58,2019-04-30,"Protein type: homo. Protenix-style input for 6ORH: 1 protein chain(s) (residue lengths [451]), 1 ligand/glycan slot(s) (CCD_NDG_GAL_FUC_FUC), 3 covalent-bond record(s)."
6PHW,train,6PHW_G2-B_3.49,2019-06-25,"Protein type: mono. Protenix-style input for 6PHW: 1 protein chain(s) (residue lengths [740]), 1 ligand/glycan slot(s) (CCD_GLC_GLA), 1 covalent-bond record(s)."
6PHX,train,6PHX_G2-B_3.61,2019-06-25,"Protein type: mono. Protenix-style input for 6PHX: 1 protein chain(s) (residue lengths [740]), 1 ligand/glycan slot(s) (CCD_GLA_GLC_FRU), 2 covalent-bond record(s)."
6PHY,train,6PHY_G2-B_3.44,2019-06-25,"Protein type: mono. Protenix-style input for 6PHY: 1 protein chain(s) (residue lengths [740]), 1 ligand/glycan slot(s) (CCD_GAL_GLA), 1 covalent-bond record(s)."
6PI0,train,6PI0_G2-B_3.34,2019-06-25,"Protein type: mono. Protenix-style input for 6PI0: 1 protein chain(s) (residue lengths [740]), 1 ligand/glycan slot(s) (CCD_GAL_GLA), 1 covalent-bond record(s)."
6Q3R,train,6Q3R_G3-D_3.54,2018-12-04,"Protein type: homo. Protenix-style input for 6Q3R: 1 protein chain(s) (residue lengths [334]), 1 ligand/glycan slot(s) (CCD_GAL_GAL), 1 covalent-bond record(s)."
6QNB,train,6QNB_G2-B_3.97,2019-02-10,"Protein type: mono. Protenix-style input for 6QNB: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
6R3U,train,6R3U_G2-B_3.24,2019-03-21,"Protein type: mono. Protenix-style input for 6R3U: 1 protein chain(s) (residue lengths [508]), 1 ligand/glycan slot(s) (CCD_FRU_FRU_FRU_FRU), 3 covalent-bond record(s)."
6R5R,train,6R5R_G3-D_3.46,2019-03-25,"Protein type: simple_hetero. Protenix-style input for 6R5R: 2 protein chain(s) (residue lengths [733,734]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6R5T,train,6R5T_G2-D_3.35,2019-03-25,"Protein type: homo. Protenix-style input for 6R5T: 1 protein chain(s) (residue lengths [733]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
6R5U,train,6R5U_G2-C_3.61,2019-03-25,"Protein type: homo. Protenix-style input for 6R5U: 1 protein chain(s) (residue lengths [733]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6R5V,train,6R5V_G2-D_3.47,2019-03-25,"Protein type: homo. Protenix-style input for 6R5V: 1 protein chain(s) (residue lengths [733]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6RS9,train,6RS9_G3-C_4.44,2019-05-21,"Protein type: mono. Protenix-style input for 6RS9: 1 protein chain(s) (residue lengths [221]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
6RT9,train,6RT9_G2-B_3.61,2019-05-22,"Protein type: mono. Protenix-style input for 6RT9: 1 protein chain(s) (residue lengths [129]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6RV5,train,6RV5_G2-B_3.85,2019-05-31,"Protein type: mono. Protenix-style input for 6RV5: 1 protein chain(s) (residue lengths [412]), 1 ligand/glycan slot(s) (CCD_FRU_FRU), 1 covalent-bond record(s)."
6RV7,train,6RV7_G3-D_3.76,2019-05-31,"Protein type: homo. Protenix-style input for 6RV7: 1 protein chain(s) (residue lengths [401]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6RV8,train,6RV8_G3-D_3.76,2019-05-31,"Protein type: homo. Protenix-style input for 6RV8: 1 protein chain(s) (residue lengths [481]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
6RY5,train,6RY5_G2-B_2.94,2019-06-10,"Protein type: mono. Protenix-style input for 6RY5: 1 protein chain(s) (residue lengths [443]), 1 ligand/glycan slot(s) (CCD_BMA_MAN), 1 covalent-bond record(s)."
6RY7,train,6RY7_G2-B_3.30,2019-06-10,"Protein type: mono. Protenix-style input for 6RY7: 1 protein chain(s) (residue lengths [443]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6S1T,train,6S1T_G4-F_3.42,2019-06-19,"Protein type: homo. Protenix-style input for 6S1T: 1 protein chain(s) (residue lengths [535]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6SAU,train,6SAU_G3-D_3.69,2019-07-17,"Protein type: homo. Protenix-style input for 6SAU: 1 protein chain(s) (residue lengths [460]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6SDU,train,6SDU_G2-E_3.95,2019-07-29,"Protein type: homo. Protenix-style input for 6SDU: 1 protein chain(s) (residue lengths [237]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6SE9,train,6SE9_G2-B_3.84,2019-07-29,"Protein type: mono. Protenix-style input for 6SE9: 1 protein chain(s) (residue lengths [1010]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
6SEA,train,6SEA_G2-B_3.62,2019-07-29,"Protein type: mono. Protenix-style input for 6SEA: 1 protein chain(s) (residue lengths [1010]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
6STO,train,6STO_G2-C_3.82,2019-09-11,"Protein type: homo. Protenix-style input for 6STO: 1 protein chain(s) (residue lengths [170]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
6SZ6,train,6SZ6_G5-F_4.41,2019-10-02,"Protein type: mono. Protenix-style input for 6SZ6: 1 protein chain(s) (residue lengths [836]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_MAN), 2 covalent-bond record(s)."
6T0Q,train,6T0Q_G2-C_4.38,2019-10-03,"Protein type: mono. Protenix-style input for 6T0Q: 1 protein chain(s) (residue lengths [353]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6T2Q,train,6T2Q_G2-C_3.47,2019-10-09,"Protein type: homo. Protenix-style input for 6T2Q: 1 protein chain(s) (residue lengths [282]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL), 2 covalent-bond record(s)."
6T2S,train,6T2S_G2-D_3.67,2019-10-09,"Protein type: homo. Protenix-style input for 6T2S: 1 protein chain(s) (residue lengths [241]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL), 2 covalent-bond record(s)."
6T6C,train,6T6C_G2-B_3.83,2019-10-18,"Protein type: mono. Protenix-style input for 6T6C: 1 protein chain(s) (residue lengths [128]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
6TKV,train,6TKV_G3-C_4.02,2019-11-29,"Protein type: simple_hetero. Protenix-style input for 6TKV: 2 protein chain(s) (residue lengths [468,453]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_MAN_NAG_MAN_NAG), 6 covalent-bond record(s)."
6TO0,train,6TO0_G2-C_3.69,2019-12-11,"Protein type: homo. Protenix-style input for 6TO0: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_AHR), 3 covalent-bond record(s)."
6TOW,train,6TOW_G2-D_3.74,2019-12-12,"Protein type: homo. Protenix-style input for 6TOW: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP), 3 covalent-bond record(s)."
6TP0,train,6TP0_G2-B_3.64,2019-12-12,"Protein type: mono. Protenix-style input for 6TP0: 1 protein chain(s) (residue lengths [483]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6TP1,train,6TP1_G2-B_3.80,2019-12-12,"Protein type: mono. Protenix-style input for 6TP1: 1 protein chain(s) (residue lengths [483]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
6TRH,train,6TRH_G2-H_3.89,2019-12-18,"Protein type: homo. Protenix-style input for 6TRH: 1 protein chain(s) (residue lengths [385]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_AHR_XYP), 4 covalent-bond record(s)."
6TSL,train,6TSL_G3-C_4.12,2019-12-20,"Protein type: simple_hetero. Protenix-style input for 6TSL: 2 protein chain(s) (residue lengths [293,4]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6TSM,train,6TSM_G3-C_4.13,2019-12-20,"Protein type: simple_hetero. Protenix-style input for 6TSM: 2 protein chain(s) (residue lengths [293,4]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6TSN,train,6TSN_G2-B_4.09,2019-12-20,"Protein type: mono. Protenix-style input for 6TSN: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6TSO,train,6TSO_G2-B_4.10,2019-12-20,"Protein type: mono. Protenix-style input for 6TSO: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6TSP,train,6TSP_G2-B_4.10,2019-12-21,"Protein type: mono. Protenix-style input for 6TSP: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6TSQ,train,6TSQ_G2-B_4.11,2019-12-21,"Protein type: mono. Protenix-style input for 6TSQ: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6TSR,train,6TSR_G2-B_4.10,2019-12-21,"Protein type: mono. Protenix-style input for 6TSR: 1 protein chain(s) (residue lengths [293]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_GLA), 2 covalent-bond record(s)."
6U0Z,train,6U0Z_G2-B_3.46,2019-08-15,"Protein type: mono. Protenix-style input for 6U0Z: 1 protein chain(s) (residue lengths [274]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6U7N,train,6U7N_G3-C_4.15,2019-09-03,"Protein type: mono. Protenix-style input for 6U7N: 1 protein chain(s) (residue lengths [314]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
6U9V,train,6U9V_G3-K_3.39,2019-09-09,"Protein type: homo. Protenix-style input for 6U9V: 1 protein chain(s) (residue lengths [609]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6UAR,train,6UAR_G2-B_3.83,2019-09-11,"Protein type: mono. Protenix-style input for 6UAR: 1 protein chain(s) (residue lengths [263]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
6UAS,train,6UAS_G2-B_4.00,2019-09-11,"Protein type: mono. Protenix-style input for 6UAS: 1 protein chain(s) (residue lengths [263]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
6UAT,train,6UAT_G2-B_4.01,2019-09-11,"Protein type: mono. Protenix-style input for 6UAT: 1 protein chain(s) (residue lengths [263]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC), 4 covalent-bond record(s)."
6UAU,train,6UAU_G3-C_3.92,2019-09-11,"Protein type: mono. Protenix-style input for 6UAU: 1 protein chain(s) (residue lengths [263]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
6UAW,train,6UAW_G2-B_3.84,2019-09-11,"Protein type: mono. Protenix-style input for 6UAW: 1 protein chain(s) (residue lengths [282]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
6UB0,train,6UB0_G2-B_3.75,2019-09-11,"Protein type: mono. Protenix-style input for 6UB0: 1 protein chain(s) (residue lengths [230]), 1 ligand/glycan slot(s) (CCD_GLC_BGC), 1 covalent-bond record(s)."
6UB1,train,6UB1_G2-G_3.54,2019-09-11,"Protein type: homo. Protenix-style input for 6UB1: 1 protein chain(s) (residue lengths [261]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6UB3,train,6UB3_G2-C_3.64,2019-09-11,"Protein type: homo. Protenix-style input for 6UB3: 1 protein chain(s) (residue lengths [270]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6UB4,train,6UB4_G3-E_3.62,2019-09-11,"Protein type: homo. Protenix-style input for 6UB4: 1 protein chain(s) (residue lengths [270]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6UB5,train,6UB5_G3-C_3.60,2019-09-11,"Protein type: mono. Protenix-style input for 6UB5: 1 protein chain(s) (residue lengths [270]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6UB6,train,6UB6_G3-C_3.58,2019-09-11,"Protein type: mono. Protenix-style input for 6UB6: 1 protein chain(s) (residue lengths [270]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6UFL,train,6UFL_G2-B_3.85,2019-09-24,"Protein type: mono. Protenix-style input for 6UFL: 1 protein chain(s) (residue lengths [263]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
6UTN,train,6UTN_G2-D_3.96,2019-10-29,"Protein type: homo. Protenix-style input for 6UTN: 1 protein chain(s) (residue lengths [330]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
6VHQ,train,6VHQ_G3-F_3.61,2020-01-10,"Protein type: homo. Protenix-style input for 6VHQ: 1 protein chain(s) (residue lengths [466]), 1 ligand/glycan slot(s) (CCD_FRU_FRU), 1 covalent-bond record(s)."
6WGZ,train,6WGZ_G4-D_2.89,2020-04-07,"Protein type: simple_hetero. Protenix-style input for 6WGZ: 3 protein chain(s) (residue lengths [371,162,26]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
6WMO,train,6WMO_G2-E_4.21,2020-04-21,"Protein type: homo. Protenix-style input for 6WMO: 1 protein chain(s) (residue lengths [364]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL), 2 covalent-bond record(s)."
6WQV,train,6WQV_G2-F_3.22,2020-04-29,"Protein type: homo. Protenix-style input for 6WQV: 1 protein chain(s) (residue lengths [354]), 1 ligand/glycan slot(s) (CCD_GLC_BGC_BGC), 2 covalent-bond record(s)."
6WUY,train,6WUY_G3-E_5.88,2020-05-05,"Protein type: homo. Protenix-style input for 6WUY: 1 protein chain(s) (residue lengths [542]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
6WVP,train,6WVP_G2-C_4.26,2020-05-06,"Protein type: homo. Protenix-style input for 6WVP: 1 protein chain(s) (residue lengths [542]), 1 ligand/glycan slot(s) (CCD_NAG_FUC), 1 covalent-bond record(s)."
6WVQ,train,6WVQ_G2-D_4.98,2020-05-06,"Protein type: homo. Protenix-style input for 6WVQ: 1 protein chain(s) (residue lengths [542]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_FUC), 2 covalent-bond record(s)."
6X2Q,train,6X2Q_G2-B_4.07,2020-05-20,"Protein type: mono. Protenix-style input for 6X2Q: 1 protein chain(s) (residue lengths [243]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS), 2 covalent-bond record(s)."
6XN2,train,6XN2_G2-C_3.66,2020-07-02,"Protein type: homo. Protenix-style input for 6XN2: 1 protein chain(s) (residue lengths [364]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
6XUV,train,6XUV_G3-F_3.76,2020-01-21,"Protein type: mono. Protenix-style input for 6XUV: 1 protein chain(s) (residue lengths [591]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
6YDG,train,6YDG_G2-B_3.91,2020-03-20,"Protein type: mono. Protenix-style input for 6YDG: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
6YH0,train,6YH0_G4-D_3.64,2020-03-28,"Protein type: simple_hetero. Protenix-style input for 6YH0: 2 protein chain(s) (residue lengths [293,7]), 1 ligand/glycan slot(s) (CCD_GLA_GLA), 1 covalent-bond record(s)."
6YJS,train,6YJS_G2-D_4.48,2020-04-04,"Protein type: homo. Protenix-style input for 6YJS: 1 protein chain(s) (residue lengths [515]), 1 ligand/glycan slot(s) (CCD_MAN_MAN_NAG_MAN_NAG), 4 covalent-bond record(s)."
6Z8H,train,6Z8H_G2-C_3.27,2020-06-02,"Protein type: homo. Protenix-style input for 6Z8H: 1 protein chain(s) (residue lengths [499]), 1 ligand/glycan slot(s) (CCD_BMA_MAN), 1 covalent-bond record(s)."
6ZAU,train,6ZAU_G2-C_3.81,2020-06-05,"Protein type: mono. Protenix-style input for 6ZAU: 1 protein chain(s) (residue lengths [347]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6ZAV,train,6ZAV_G2-C_3.80,2020-06-05,"Protein type: mono. Protenix-style input for 6ZAV: 1 protein chain(s) (residue lengths [347]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6ZAW,train,6ZAW_G2-C_3.82,2020-06-05,"Protein type: mono. Protenix-style input for 6ZAW: 1 protein chain(s) (residue lengths [347]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6ZAX,train,6ZAX_G2-C_3.89,2020-06-05,"Protein type: mono. Protenix-style input for 6ZAX: 1 protein chain(s) (residue lengths [347]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6ZFA,train,6ZFA_G2-B_3.63,2020-06-16,"Protein type: mono. Protenix-style input for 6ZFA: 1 protein chain(s) (residue lengths [382]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
6ZJR,train,6ZJR_G2-B_3.39,2020-06-29,"Protein type: mono. Protenix-style input for 6ZJR: 1 protein chain(s) (residue lengths [1012]), 1 ligand/glycan slot(s) (CCD_FRU_GAL), 1 covalent-bond record(s)."
6ZJT,train,6ZJT_G2-B_3.43,2020-06-29,"Protein type: mono. Protenix-style input for 6ZJT: 1 protein chain(s) (residue lengths [1010]), 1 ligand/glycan slot(s) (CCD_FRU_GAL), 1 covalent-bond record(s)."
6ZJU,train,6ZJU_G2-B_3.61,2020-06-29,"Protein type: mono. Protenix-style input for 6ZJU: 1 protein chain(s) (residue lengths [1010]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6ZJX,train,6ZJX_G2-B_3.55,2020-06-29,"Protein type: mono. Protenix-style input for 6ZJX: 1 protein chain(s) (residue lengths [1010]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
6ZWI,train,6ZWI_G3-C_6.19,2020-07-28,"Protein type: mono. Protenix-style input for 6ZWI: 1 protein chain(s) (residue lengths [529]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
7A0Q,train,7A0Q_G2-B_12.81,2020-08-10,"Protein type: mono. Protenix-style input for 7A0Q: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_MAN_MAN), 1 covalent-bond record(s)."
7BGC,train,7BGC_G3-C_6.06,2021-01-06,"Protein type: mono. Protenix-style input for 7BGC: 1 protein chain(s) (residue lengths [529]), 1 ligand/glycan slot(s) (CCD_GAL_SIA), 1 covalent-bond record(s)."
7BSV,train,7BSV_G3-C_5.36,2020-03-31,"Protein type: simple_hetero. Protenix-style input for 7BSV: 2 protein chain(s) (residue lengths [1084,361]), 1 ligand/glycan slot(s) (CCD_NAG_MAN), 1 covalent-bond record(s)."
7BWC,train,7BWC_G2-B_3.36,2020-04-14,"Protein type: mono. Protenix-style input for 7BWC: 1 protein chain(s) (residue lengths [488]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7C6D,train,7C6D_G2-B_3.69,2020-05-21,"Protein type: mono. Protenix-style input for 7C6D: 1 protein chain(s) (residue lengths [242]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS_GCS_GCS_GCS), 5 covalent-bond record(s)."
7CEL,train,7CEL_G2-B_3.48,1997-09-24,"Protein type: mono. Protenix-style input for 7CEL: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7DCG,train,7DCG_G2-B_3.48,2020-10-26,"Protein type: mono. Protenix-style input for 7DCG: 1 protein chain(s) (residue lengths [589]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
7DFN,train,7DFN_G2-E_4.20,2020-11-09,"Protein type: homo. Protenix-style input for 7DFN: 1 protein chain(s) (residue lengths [205]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_AHR_XYP), 4 covalent-bond record(s)."
7DFS,train,7DFS_G2-B_3.40,2020-11-09,"Protein type: mono. Protenix-style input for 7DFS: 1 protein chain(s) (residue lengths [480]), 1 ligand/glycan slot(s) (CCD_BDP_RAM), 1 covalent-bond record(s)."
7DVJ,train,7DVJ_G2-C_3.45,2021-01-13,"Protein type: homo. Protenix-style input for 7DVJ: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
7DW8,train,7DW8_G2-C_3.42,2021-01-15,"Protein type: homo. Protenix-style input for 7DW8: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
7DWA,train,7DWA_G2-C_3.78,2021-01-15,"Protein type: homo. Protenix-style input for 7DWA: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_MAN_BMA_BMA), 2 covalent-bond record(s)."
7EAP,train,7EAP_G3-C_3.54,2021-03-08,"Protein type: mono. Protenix-style input for 7EAP: 1 protein chain(s) (residue lengths [765]), 1 ligand/glycan slot(s) (CCD_BGC_XYS), 1 covalent-bond record(s)."
7EAW,train,7EAW_G2-D_3.23,2021-03-08,"Protein type: homo. Protenix-style input for 7EAW: 1 protein chain(s) (residue lengths [572]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7EEE,train,7EEE_G2-B_3.57,2021-03-18,"Protein type: mono. Protenix-style input for 7EEE: 1 protein chain(s) (residue lengths [227]), 1 ligand/glycan slot(s) (CCD_BMA_BMA), 1 covalent-bond record(s)."
7EEJ,train,7EEJ_G2-B_3.67,2021-03-18,"Protein type: mono. Protenix-style input for 7EEJ: 1 protein chain(s) (residue lengths [227]), 1 ligand/glycan slot(s) (CCD_BMA_BMA_BMA_BMA), 3 covalent-bond record(s)."
7EHH,train,7EHH_G2-B_3.32,2021-03-29,"Protein type: mono. Protenix-style input for 7EHH: 1 protein chain(s) (residue lengths [589]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7EHI,train,7EHI_G2-B_3.23,2021-03-29,"Protein type: mono. Protenix-style input for 7EHI: 1 protein chain(s) (residue lengths [589]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 2 covalent-bond record(s)."
7ESN,train,7ESN_G2-B_3.36,2021-05-11,"Protein type: mono. Protenix-style input for 7ESN: 1 protein chain(s) (residue lengths [445]), 1 ligand/glycan slot(s) (CCD_BDP_RAM), 1 covalent-bond record(s)."
7EXJ,train,7EXJ_G2-C_3.78,2021-05-27,"Protein type: homo. Protenix-style input for 7EXJ: 1 protein chain(s) (residue lengths [749]), 1 ligand/glycan slot(s) (CCD_FRU_GLC_GLA), 2 covalent-bond record(s)."
7EXQ,train,7EXQ_G2-C_3.64,2021-05-28,"Protein type: homo. Protenix-style input for 7EXQ: 1 protein chain(s) (residue lengths [749]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7EXR,train,7EXR_G2-D_4.55,2021-05-28,"Protein type: homo. Protenix-style input for 7EXR: 1 protein chain(s) (residue lengths [749]), 1 ligand/glycan slot(s) (CCD_FRU_GLC_GLA_GLA), 3 covalent-bond record(s)."
7F82,train,7F82_G3-K_3.72,2021-06-30,"Protein type: homo. Protenix-style input for 7F82: 1 protein chain(s) (residue lengths [351]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
7FDZ,train,7FDZ_G2-B_3.27,2021-07-19,"Protein type: mono. Protenix-style input for 7FDZ: 1 protein chain(s) (residue lengths [443]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7FFW,train,7FFW_G2-B_4.47,2021-07-23,"Protein type: mono. Protenix-style input for 7FFW: 1 protein chain(s) (residue lengths [370]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC_GLC), 4 covalent-bond record(s)."
7JHM,train,7JHM_G3-E_3.84,2020-07-20,"Protein type: homo. Protenix-style input for 7JHM: 1 protein chain(s) (residue lengths [370]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
7JHN,train,7JHN_G3-C_3.58,2020-07-21,"Protein type: mono. Protenix-style input for 7JHN: 1 protein chain(s) (residue lengths [370]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_NAG), 2 covalent-bond record(s)."
7JJN,train,7JJN_G2-D_3.70,2020-07-27,"Protein type: homo. Protenix-style input for 7JJN: 1 protein chain(s) (residue lengths [526]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC), 2 covalent-bond record(s)."
7JWF,train,7JWF_G2-F_3.30,2020-08-25,"Protein type: homo. Protenix-style input for 7JWF: 1 protein chain(s) (residue lengths [620]), 1 ligand/glycan slot(s) (CCD_GAL_GLA), 1 covalent-bond record(s)."
7L1Y,train,7L1Y_G2-B_3.20,2020-12-15,"Protein type: mono. Protenix-style input for 7L1Y: 1 protein chain(s) (residue lengths [247]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
7LAM,train,7LAM_G2-B_3.78,2021-01-06,"Protein type: mono. Protenix-style input for 7LAM: 1 protein chain(s) (residue lengths [544]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
7LAQ,train,7LAQ_G2-B_3.68,2021-01-06,"Protein type: mono. Protenix-style input for 7LAQ: 1 protein chain(s) (residue lengths [544]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
7LR6,train,7LR6_G2-E_3.43,2021-02-16,"Protein type: homo. Protenix-style input for 7LR6: 1 protein chain(s) (residue lengths [446]), 1 ligand/glycan slot(s) (CCD_NAG_BMA), 1 covalent-bond record(s)."
7LR8,train,7LR8_G2-C_3.53,2021-02-16,"Protein type: homo. Protenix-style input for 7LR8: 1 protein chain(s) (residue lengths [433]), 1 ligand/glycan slot(s) (CCD_NAG_BMA), 1 covalent-bond record(s)."
7N6O,train,7N6O_G2-D_3.12,2021-06-08,"Protein type: homo. Protenix-style input for 7N6O: 1 protein chain(s) (residue lengths [444]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
7NYL,train,7NYL_G2-C_4.47,2021-03-23,"Protein type: homo. Protenix-style input for 7NYL: 1 protein chain(s) (residue lengths [63]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7NYT,train,7NYT_G2-B_3.63,2021-03-23,"Protein type: mono. Protenix-style input for 7NYT: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
7OA1,train,7OA1_G2-C_4.88,2021-04-18,"Protein type: homo. Protenix-style input for 7OA1: 1 protein chain(s) (residue lengths [312]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
7OC8,train,7OC8_G2-C_3.48,2021-04-26,"Protein type: mono. Protenix-style input for 7OC8: 1 protein chain(s) (residue lengths [434]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
7OMT,train,7OMT_G2-B_3.44,2021-05-24,"Protein type: mono. Protenix-style input for 7OMT: 1 protein chain(s) (residue lengths [520]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7P0K,train,7P0K_G2-B_5.70,2021-06-29,"Protein type: mono. Protenix-style input for 7P0K: 1 protein chain(s) (residue lengths [770]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_MAN_MAN_MAN_MAN), 6 covalent-bond record(s)."
7PJ5,train,7PJ5_G2-B_3.68,2021-08-23,"Protein type: mono. Protenix-style input for 7PJ5: 1 protein chain(s) (residue lengths [274]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG), 3 covalent-bond record(s)."
7PJ6,train,7PJ6_G2-B_3.70,2021-08-23,"Protein type: mono. Protenix-style input for 7PJ6: 1 protein chain(s) (residue lengths [274]), 1 ligand/glycan slot(s) (CCD_NAG_AMU_NAG_AMU_NAG), 4 covalent-bond record(s)."
7PUG,train,7PUG_G2-B_4.06,2021-09-29,"Protein type: mono. Protenix-style input for 7PUG: 1 protein chain(s) (residue lengths [842]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP_XYP_XYP), 4 covalent-bond record(s)."
7PUK,train,7PUK_G2-C_3.55,2021-09-30,"Protein type: homo. Protenix-style input for 7PUK: 1 protein chain(s) (residue lengths [435]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_MAN_MAN_MAN), 5 covalent-bond record(s)."
7PYD,train,7PYD_G2-B_3.91,2021-10-10,"Protein type: mono. Protenix-style input for 7PYD: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
7PYE,train,7PYE_G2-B_3.89,2021-10-10,"Protein type: mono. Protenix-style input for 7PYE: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
7PYF,train,7PYF_G2-B_3.91,2021-10-10,"Protein type: mono. Protenix-style input for 7PYF: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
7PYG,train,7PYG_G2-B_3.91,2021-10-10,"Protein type: mono. Protenix-style input for 7PYG: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
7PYH,train,7PYH_G2-B_3.90,2021-10-10,"Protein type: mono. Protenix-style input for 7PYH: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
7PYI,train,7PYI_G2-B_3.94,2021-10-10,"Protein type: mono. Protenix-style input for 7PYI: 1 protein chain(s) (residue lengths [235]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
7Q1W,train,7Q1W_G2-C_3.97,2021-10-21,"Protein type: mono. Protenix-style input for 7Q1W: 1 protein chain(s) (residue lengths [844]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC_A2G), 3 covalent-bond record(s)."
7Q20,train,7Q20_G2-C_3.77,2021-10-22,"Protein type: homo. Protenix-style input for 7Q20: 1 protein chain(s) (residue lengths [846]), 1 ligand/glycan slot(s) (CCD_GAL_FUC_A2G), 2 covalent-bond record(s)."
7QQH,train,7QQH_G3-P_3.24,2022-01-07,"Protein type: homo. Protenix-style input for 7QQH: 1 protein chain(s) (residue lengths [636]), 1 ligand/glycan slot(s) (CCD_BGC_GLA), 1 covalent-bond record(s)."
7RDG,train,7RDG_G2-E_3.06,2021-07-09,"Protein type: homo. Protenix-style input for 7RDG: 1 protein chain(s) (residue lengths [135]), 1 ligand/glycan slot(s) (CCD_GLC_GAL), 1 covalent-bond record(s)."
7RTM,train,7RTM_G2-D_8.28,2021-08-13,"Protein type: homo. Protenix-style input for 7RTM: 1 protein chain(s) (residue lengths [571]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
7SCJ,train,7SCJ_G4-D_4.28,2021-09-28,"Protein type: simple_hetero. Protenix-style input for 7SCJ: 2 protein chain(s) (residue lengths [720,673]), 1 ligand/glycan slot(s) (CCD_NDG_BDP_NDG), 2 covalent-bond record(s)."
7SCK,train,7SCK_G4-D_4.03,2021-09-28,"Protein type: simple_hetero. Protenix-style input for 7SCK: 2 protein chain(s) (residue lengths [720,674]), 1 ligand/glycan slot(s) (CCD_NDG_BDP_NDG_BDP), 3 covalent-bond record(s)."
7TVP,train,7TVP_G2-B_3.82,2022-02-05,"Protein type: mono. Protenix-style input for 7TVP: 1 protein chain(s) (residue lengths [225]), 1 ligand/glycan slot(s) (CCD_GCS_GCS_GCS), 2 covalent-bond record(s)."
7V0I,train,7V0I_G2-D_3.25,2022-05-10,"Protein type: homo. Protenix-style input for 7V0I: 1 protein chain(s) (residue lengths [471]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC), 5 covalent-bond record(s)."
7V0J,train,7V0J_G2-F_3.07,2022-05-10,"Protein type: homo. Protenix-style input for 7V0J: 1 protein chain(s) (residue lengths [471]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7V6I,train,7V6I_G2-B_3.34,2021-08-20,"Protein type: mono. Protenix-style input for 7V6I: 1 protein chain(s) (residue lengths [620]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
7V6M,train,7V6M_G2-B_3.30,2021-08-20,"Protein type: mono. Protenix-style input for 7V6M: 1 protein chain(s) (residue lengths [587]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
7VKY,train,7VKY_G2-C_3.11,2021-10-01,"Protein type: homo. Protenix-style input for 7VKY: 1 protein chain(s) (residue lengths [711]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7VT7,train,7VT7_G2-B_3.74,2021-10-28,"Protein type: mono. Protenix-style input for 7VT7: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7WDO,train,7WDO_G2-B_3.72,2021-12-22,"Protein type: mono. Protenix-style input for 7WDO: 1 protein chain(s) (residue lengths [458]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7WDP,train,7WDP_G2-B_3.61,2021-12-22,"Protein type: mono. Protenix-style input for 7WDP: 1 protein chain(s) (residue lengths [458]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7WDV,train,7WDV_G2-B_3.85,2021-12-22,"Protein type: mono. Protenix-style input for 7WDV: 1 protein chain(s) (residue lengths [458]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7WH7,train,7WH7_G2-E_3.39,2021-12-30,"Protein type: homo. Protenix-style input for 7WH7: 1 protein chain(s) (residue lengths [329]), 1 ligand/glycan slot(s) (CCD_XYS_XYP), 1 covalent-bond record(s)."
7WHE,train,7WHE_G2-C_3.33,2021-12-30,"Protein type: homo. Protenix-style input for 7WHE: 1 protein chain(s) (residue lengths [329]), 1 ligand/glycan slot(s) (CCD_XYS_XYP), 1 covalent-bond record(s)."
7WJC,train,7WJC_G2-B_3.52,2022-01-06,"Protein type: mono. Protenix-style input for 7WJC: 1 protein chain(s) (residue lengths [759]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7WJD,train,7WJD_G2-B_3.69,2022-01-06,"Protein type: mono. Protenix-style input for 7WJD: 1 protein chain(s) (residue lengths [759]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
7WJE,train,7WJE_G2-B_4.88,2022-01-06,"Protein type: mono. Protenix-style input for 7WJE: 1 protein chain(s) (residue lengths [759]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
7WJF,train,7WJF_G2-B_3.60,2022-01-06,"Protein type: mono. Protenix-style input for 7WJF: 1 protein chain(s) (residue lengths [759]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7WWC,train,7WWC_G2-B_3.53,2022-02-12,"Protein type: mono. Protenix-style input for 7WWC: 1 protein chain(s) (residue lengths [479]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7X87,train,7X87_G2-C_3.47,2022-03-11,"Protein type: homo. Protenix-style input for 7X87: 1 protein chain(s) (residue lengths [724]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
7XMN,train,7XMN_G3-C_3.55,2022-04-26,"Protein type: simple_hetero. Protenix-style input for 7XMN: 2 protein chain(s) (residue lengths [370,106]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
7XS3,train,7XS3_G2-D_3.49,2022-05-12,"Protein type: homo. Protenix-style input for 7XS3: 1 protein chain(s) (residue lengths [337]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
7YO6,train,7YO6_G4-F_5.22,2022-08-01,"Protein type: homo. Protenix-style input for 7YO6: 1 protein chain(s) (residue lengths [803]), 1 ligand/glycan slot(s) (CCD_MAN_NAG), 1 covalent-bond record(s)."
7YO7,train,7YO7_G4-F_5.06,2022-08-01,"Protein type: homo. Protenix-style input for 7YO7: 1 protein chain(s) (residue lengths [803]), 1 ligand/glycan slot(s) (CCD_MAN_NAG), 1 covalent-bond record(s)."
7Z3K,train,7Z3K_G2-B_6.39,2022-03-02,"Protein type: mono. Protenix-style input for 7Z3K: 1 protein chain(s) (residue lengths [805]), 1 ligand/glycan slot(s) (CCD_NAG_BMA), 1 covalent-bond record(s)."
7Z3L,train,7Z3L_G2-B_5.45,2022-03-02,"Protein type: mono. Protenix-style input for 7Z3L: 1 protein chain(s) (residue lengths [805]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_MAN_MAN_MAN_MAN_MAN), 6 covalent-bond record(s)."
7Z64,train,7Z64_G2-C_3.33,2022-03-10,"Protein type: homo. Protenix-style input for 7Z64: 1 protein chain(s) (residue lengths [278]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG_NAG), 5 covalent-bond record(s)."
7ZCN,train,7ZCN_G2-B_3.85,2022-03-28,"Protein type: mono. Protenix-style input for 7ZCN: 1 protein chain(s) (residue lengths [350]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7ZCP,train,7ZCP_G2-B_3.94,2022-03-28,"Protein type: mono. Protenix-style input for 7ZCP: 1 protein chain(s) (residue lengths [350]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7ZCQ,train,7ZCQ_G2-B_3.95,2022-03-28,"Protein type: mono. Protenix-style input for 7ZCQ: 1 protein chain(s) (residue lengths [350]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7ZCR,train,7ZCR_G2-B_3.94,2022-03-28,"Protein type: mono. Protenix-style input for 7ZCR: 1 protein chain(s) (residue lengths [350]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7ZCS,train,7ZCS_G2-B_3.97,2022-03-28,"Protein type: mono. Protenix-style input for 7ZCS: 1 protein chain(s) (residue lengths [350]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
7ZNR,train,7ZNR_G2-D_3.32,2022-04-21,"Protein type: homo. Protenix-style input for 7ZNR: 1 protein chain(s) (residue lengths [523]), 1 ligand/glycan slot(s) (CCD_FRU_FRU_FRU_FRU_FRU), 4 covalent-bond record(s)."
7ZNS,train,7ZNS_G2-C_3.18,2022-04-21,"Protein type: homo. Protenix-style input for 7ZNS: 1 protein chain(s) (residue lengths [523]), 1 ligand/glycan slot(s) (CCD_FRU_FRU_FRU), 2 covalent-bond record(s)."
8AXI,train,8AXI_G2-D_4.11,2022-08-31,"Protein type: homo. Protenix-style input for 8AXI: 1 protein chain(s) (residue lengths [576]), 1 ligand/glycan slot(s) (CCD_LXB_GAL), 1 covalent-bond record(s)."
8C48,train,8C48_G5-F_3.81,2023-01-03,"Protein type: homo. Protenix-style input for 8C48: 1 protein chain(s) (residue lengths [482]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
8C7F,train,8C7F_G2-C_3.13,2023-01-15,"Protein type: homo. Protenix-style input for 8C7F: 1 protein chain(s) (residue lengths [780]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
8CBC,train,8CBC_G5-G_3.54,2023-01-25,"Protein type: homo. Protenix-style input for 8CBC: 1 protein chain(s) (residue lengths [455]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
8CSE,train,8CSE_G2-C_3.61,2022-05-12,"Protein type: homo. Protenix-style input for 8CSE: 1 protein chain(s) (residue lengths [410]), 1 ligand/glycan slot(s) (CCD_NAG_RAM), 1 covalent-bond record(s)."
8CSF,train,8CSF_G2-D_3.59,2022-05-12,"Protein type: homo. Protenix-style input for 8CSF: 1 protein chain(s) (residue lengths [410]), 1 ligand/glycan slot(s) (CCD_NAG_RAM), 1 covalent-bond record(s)."
8CTS,train,8CTS_G2-C_3.82,2022-05-16,"Protein type: homo. Protenix-style input for 8CTS: 1 protein chain(s) (residue lengths [96]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8CTU,train,8CTU_G2-C_4.10,2022-05-16,"Protein type: homo. Protenix-style input for 8CTU: 1 protein chain(s) (residue lengths [96]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8CU1,train,8CU1_G2-C_4.14,2022-05-16,"Protein type: homo. Protenix-style input for 8CU1: 1 protein chain(s) (residue lengths [96]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8CU2,train,8CU2_G2-C_3.78,2022-05-16,"Protein type: homo. Protenix-style input for 8CU2: 1 protein chain(s) (residue lengths [96]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8CU3,train,8CU3_G2-C_4.12,2022-05-16,"Protein type: homo. Protenix-style input for 8CU3: 1 protein chain(s) (residue lengths [96]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8CU4,train,8CU4_G2-C_4.14,2022-05-16,"Protein type: homo. Protenix-style input for 8CU4: 1 protein chain(s) (residue lengths [96]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8D0Q,train,8D0Q_G3-C_4.07,2022-05-26,"Protein type: mono. Protenix-style input for 8D0Q: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
8D0R,train,8D0R_G3-C_4.08,2022-05-26,"Protein type: mono. Protenix-style input for 8D0R: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
8D0S,train,8D0S_G3-C_4.48,2022-05-26,"Protein type: mono. Protenix-style input for 8D0S: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL), 2 covalent-bond record(s)."
8D0W,train,8D0W_G3-C_3.96,2022-05-26,"Protein type: mono. Protenix-style input for 8D0W: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_FUC), 2 covalent-bond record(s)."
8D0X,train,8D0X_G3-C_4.46,2022-05-26,"Protein type: mono. Protenix-style input for 8D0X: 1 protein chain(s) (residue lengths [322]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL), 2 covalent-bond record(s)."
8F0Q,train,8F0Q_G2-B_4.31,2022-11-03,"Protein type: mono. Protenix-style input for 8F0Q: 1 protein chain(s) (residue lengths [1608]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_BMA), 3 covalent-bond record(s)."
8F0R,train,8F0R_G2-B_4.52,2022-11-03,"Protein type: mono. Protenix-style input for 8F0R: 1 protein chain(s) (residue lengths [1608]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_BMA_BMA), 4 covalent-bond record(s)."
8F0S,train,8F0S_G3-C_4.32,2022-11-03,"Protein type: simple_hetero. Protenix-style input for 8F0S: 2 protein chain(s) (residue lengths [1608,71]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA_BMA_BMA), 4 covalent-bond record(s)."
8FAW,train,8FAW_G3-D_4.51,2022-11-28,"Protein type: mono. Protenix-style input for 8FAW: 1 protein chain(s) (residue lengths [492]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
8FR9,train,8FR9_G3-H_2.85,2023-01-06,"Protein type: homo. Protenix-style input for 8FR9: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 1 covalent-bond record(s)."
8FRA,train,8FRA_G2-H_2.79,2023-01-06,"Protein type: homo. Protenix-style input for 8FRA: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8FRB,train,8FRB_G2-G_2.79,2023-01-06,"Protein type: homo. Protenix-style input for 8FRB: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8FRC,train,8FRC_G2-E_2.80,2023-01-06,"Protein type: homo. Protenix-style input for 8FRC: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8FRD,train,8FRD_G2-F_2.80,2023-01-06,"Protein type: homo. Protenix-style input for 8FRD: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8FRG,train,8FRG_G3-D_3.00,2023-01-06,"Protein type: homo. Protenix-style input for 8FRG: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NDG_NAG), 1 covalent-bond record(s)."
8GCA,train,8GCA_G2-G_2.94,2023-03-01,"Protein type: homo. Protenix-style input for 8GCA: 1 protein chain(s) (residue lengths [397]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG), 2 covalent-bond record(s)."
8GHY,train,8GHY_G2-D_3.66,2023-03-13,"Protein type: homo. Protenix-style input for 8GHY: 1 protein chain(s) (residue lengths [365]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
8H2W,train,8H2W_G2-D_3.29,2022-10-07,"Protein type: homo. Protenix-style input for 8H2W: 1 protein chain(s) (residue lengths [993]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
8HO8,train,8HO8_G2-C_3.50,2022-12-09,"Protein type: homo. Protenix-style input for 8HO8: 1 protein chain(s) (residue lengths [817]), 1 ligand/glycan slot(s) (CCD_BGC_BGC), 1 covalent-bond record(s)."
8HVC,train,8HVC_G2-B_3.40,2022-12-26,"Protein type: mono. Protenix-style input for 8HVC: 1 protein chain(s) (residue lengths [614]), 1 ligand/glycan slot(s) (CCD_NGA_GAL), 1 covalent-bond record(s)."
8HVD,train,8HVD_G2-B_3.56,2022-12-26,"Protein type: mono. Protenix-style input for 8HVD: 1 protein chain(s) (residue lengths [614]), 1 ligand/glycan slot(s) (CCD_A2G_GAL), 1 covalent-bond record(s)."
8HW7,train,8HW7_G3-C_3.88,2022-12-29,"Protein type: mono. Protenix-style input for 8HW7: 1 protein chain(s) (residue lengths [356]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_NAG_NAG_NAG), 4 covalent-bond record(s)."
8IBK,train,8IBK_G2-B_3.54,2023-02-10,"Protein type: mono. Protenix-style input for 8IBK: 1 protein chain(s) (residue lengths [563]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
8IBT,train,8IBT_G2-D_3.71,2023-02-10,"Protein type: homo. Protenix-style input for 8IBT: 1 protein chain(s) (residue lengths [702]), 1 ligand/glycan slot(s) (CCD_BGC_GAL_NAG_GAL), 3 covalent-bond record(s)."
8IDS,train,8IDS_G2-B_3.72,2023-02-14,"Protein type: mono. Protenix-style input for 8IDS: 1 protein chain(s) (residue lengths [563]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
8IP1,train,8IP1_G2-C_3.88,2023-03-13,"Protein type: homo. Protenix-style input for 8IP1: 1 protein chain(s) (residue lengths [559]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC), 10 covalent-bond record(s)."
8IP2,train,8IP2_G2-B_4.15,2023-03-13,"Protein type: mono. Protenix-style input for 8IP2: 1 protein chain(s) (residue lengths [519]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC_BGC), 15 covalent-bond record(s)."
8IUA,train,8IUA_G2-B_2.77,2023-03-24,"Protein type: mono. Protenix-style input for 8IUA: 1 protein chain(s) (residue lengths [576]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8IUB,train,8IUB_G2-B_3.29,2023-03-24,"Protein type: mono. Protenix-style input for 8IUB: 1 protein chain(s) (residue lengths [576]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC), 2 covalent-bond record(s)."
8IUC,train,8IUC_G2-F_2.81,2023-03-24,"Protein type: homo. Protenix-style input for 8IUC: 1 protein chain(s) (residue lengths [678]), 1 ligand/glycan slot(s) (CCD_BGC_GLC), 1 covalent-bond record(s)."
8J3Y,train,8J3Y_G3-F_3.73,2023-04-18,"Protein type: homo. Protenix-style input for 8J3Y: 1 protein chain(s) (residue lengths [392]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
8JJE,train,8JJE_G4-D_5.96,2023-05-30,"Protein type: simple_hetero. Protenix-style input for 8JJE: 2 protein chain(s) (residue lengths [639,1251]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8ONE,train,8ONE_G2-B_6.24,2023-04-02,"Protein type: mono. Protenix-style input for 8ONE: 1 protein chain(s) (residue lengths [719]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8PXV,train,8PXV_G2-D_3.21,2023-07-24,"Protein type: homo. Protenix-style input for 8PXV: 1 protein chain(s) (residue lengths [655]), 1 ligand/glycan slot(s) (CCD_BGC_GAL), 1 covalent-bond record(s)."
8QXY,train,8QXY_G2-F_3.58,2023-10-25,"Protein type: homo. Protenix-style input for 8QXY: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
8QY0,train,8QY0_G3-G_3.36,2023-10-25,"Protein type: homo. Protenix-style input for 8QY0: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
8QY1,train,8QY1_G2-C_3.32,2023-10-25,"Protein type: homo. Protenix-style input for 8QY1: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
8QY3,train,8QY3_G2-B_3.86,2023-10-25,"Protein type: mono. Protenix-style input for 8QY3: 1 protein chain(s) (residue lengths [185]), 1 ligand/glycan slot(s) (CCD_XYP_XYP_XYP), 2 covalent-bond record(s)."
8R8S,train,8R8S_G2-B_4.13,2023-11-29,"Protein type: mono. Protenix-style input for 8R8S: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFL,train,8RFL_G2-B_4.10,2023-12-13,"Protein type: mono. Protenix-style input for 8RFL: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFO,train,8RFO_G2-B_4.11,2023-12-13,"Protein type: mono. Protenix-style input for 8RFO: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFQ,train,8RFQ_G2-B_4.13,2023-12-13,"Protein type: mono. Protenix-style input for 8RFQ: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFT,train,8RFT_G2-B_4.15,2023-12-13,"Protein type: mono. Protenix-style input for 8RFT: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFU,train,8RFU_G2-B_4.19,2023-12-13,"Protein type: mono. Protenix-style input for 8RFU: 1 protein chain(s) (residue lengths [340]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFV,train,8RFV_G2-B_5.31,2023-12-13,"Protein type: mono. Protenix-style input for 8RFV: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFW,train,8RFW_G2-B_5.36,2023-12-13,"Protein type: mono. Protenix-style input for 8RFW: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFX,train,8RFX_G2-B_5.37,2023-12-13,"Protein type: mono. Protenix-style input for 8RFX: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RFY,train,8RFY_G2-B_5.36,2023-12-13,"Protein type: mono. Protenix-style input for 8RFY: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RG8,train,8RG8_G2-E_3.84,2023-12-13,"Protein type: mono. Protenix-style input for 8RG8: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RG9,train,8RG9_G2-E_3.86,2023-12-13,"Protein type: mono. Protenix-style input for 8RG9: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RGB,train,8RGB_G2-E_3.87,2023-12-13,"Protein type: mono. Protenix-style input for 8RGB: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RGC,train,8RGC_G2-E_3.89,2023-12-13,"Protein type: mono. Protenix-style input for 8RGC: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RGD,train,8RGD_G2-E_3.89,2023-12-13,"Protein type: mono. Protenix-style input for 8RGD: 1 protein chain(s) (residue lengths [348]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RU9,train,8RU9_G2-B_3.58,2024-01-30,"Protein type: mono. Protenix-style input for 8RU9: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RUR,train,8RUR_G2-B_3.59,2024-01-31,"Protein type: mono. Protenix-style input for 8RUR: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RYJ,train,8RYJ_G2-B_3.65,2024-02-08,"Protein type: mono. Protenix-style input for 8RYJ: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RYR,train,8RYR_G2-B_3.62,2024-02-09,"Protein type: mono. Protenix-style input for 8RYR: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8RYU,train,8RYU_G2-B_3.66,2024-02-09,"Protein type: mono. Protenix-style input for 8RYU: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8S64,train,8S64_G2-B_3.74,2024-02-26,"Protein type: mono. Protenix-style input for 8S64: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8S69,train,8S69_G2-B_3.80,2024-02-26,"Protein type: mono. Protenix-style input for 8S69: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
8SDB,train,8SDB_G6-L_3.92,2023-04-06,"Protein type: homo. Protenix-style input for 8SDB: 1 protein chain(s) (residue lengths [613]), 1 ligand/glycan slot(s) (CCD_GLC_GLC), 1 covalent-bond record(s)."
8SUR,train,8SUR_G2-D_4.93,2023-05-13,"Protein type: homo. Protenix-style input for 8SUR: 1 protein chain(s) (residue lengths [911]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8TJ7,train,8TJ7_G5-G_4.31,2023-07-20,"Protein type: simple_hetero. Protenix-style input for 8TJ7: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_SIA), 2 covalent-bond record(s)."
8TJ8,train,8TJ8_G6-F_4.48,2023-07-20,"Protein type: simple_hetero. Protenix-style input for 8TJ8: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_GAL_NAG_GAL_SIA), 3 covalent-bond record(s)."
8TJ9,train,8TJ9_G4-F_4.25,2023-07-20,"Protein type: simple_hetero. Protenix-style input for 8TJ9: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
8TJA,train,8TJA_G5-E_4.68,2023-07-20,"Protein type: simple_hetero. Protenix-style input for 8TJA: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
8TJB,train,8TJB_G6-G_4.32,2023-07-20,"Protein type: simple_hetero. Protenix-style input for 8TJB: 2 protein chain(s) (residue lengths [323,174]), 1 ligand/glycan slot(s) (CCD_NAG_GAL_NAG_GAL_SIA), 4 covalent-bond record(s)."
8TM0,train,8TM0_G3-C_5.43,2023-07-27,"Protein type: simple_hetero. Protenix-style input for 8TM0: 2 protein chain(s) (residue lengths [264,188]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8U4A,train,8U4A_G2-B_3.98,2023-09-10,"Protein type: mono. Protenix-style input for 8U4A: 1 protein chain(s) (residue lengths [619]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC), 2 covalent-bond record(s)."
8U4F,train,8U4F_G2-B_4.23,2023-09-10,"Protein type: mono. Protenix-style input for 8U4F: 1 protein chain(s) (residue lengths [619]), 1 ligand/glycan slot(s) (CCD_BGC_BGC_BGC_BGC), 3 covalent-bond record(s)."
8UM0,train,8UM0_G2-B_4.37,2023-10-17,"Protein type: mono. Protenix-style input for 8UM0: 1 protein chain(s) (residue lengths [383]), 1 ligand/glycan slot(s) (CCD_NAG_GAL), 1 covalent-bond record(s)."
8W4N,train,8W4N_G2-B_4.82,2023-08-24,"Protein type: mono. Protenix-style input for 8W4N: 1 protein chain(s) (residue lengths [992]), 1 ligand/glycan slot(s) (CCD_NAG_BMA_MAN_NAG_GAL_SIA_MAN_NAG_GAL), 8 covalent-bond record(s)."
8W96,train,8W96_G2-B_3.66,2023-09-04,"Protein type: mono. Protenix-style input for 8W96: 1 protein chain(s) (residue lengths [569]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8X8G,train,8X8G_G2-B_4.64,2023-11-27,"Protein type: mono. Protenix-style input for 8X8G: 1 protein chain(s) (residue lengths [961]), 1 ligand/glycan slot(s) (CCD_BMA_MAN_NAG_GAL_SIA_MAN_NAG_GAL_SIA), 8 covalent-bond record(s)."
8XBS,train,8XBS_G2-F_4.33,2023-12-07,"Protein type: homo. Protenix-style input for 8XBS: 1 protein chain(s) (residue lengths [792]), 1 ligand/glycan slot(s) (CCD_NAG_NAG), 1 covalent-bond record(s)."
8XXA,train,8XXA_G2-B_3.87,2024-01-18,"Protein type: mono. Protenix-style input for 8XXA: 1 protein chain(s) (residue lengths [655]), 1 ligand/glycan slot(s) (CCD_BGC_GLC_GLC_GLC_GLC), 4 covalent-bond record(s)."
8Y1M,train,8Y1M_G2-E_3.27,2024-01-25,"Protein type: homo. Protenix-style input for 8Y1M: 1 protein chain(s) (residue lengths [360]), 1 ligand/glycan slot(s) (CCD_XYP_XYP), 1 covalent-bond record(s)."
8Y5V,train,8Y5V_G2-B_3.96,2024-02-01,"Protein type: mono. Protenix-style input for 8Y5V: 1 protein chain(s) (residue lengths [309]), 1 ligand/glycan slot(s) (CCD_GLC_GAL_FUC), 2 covalent-bond record(s)."
8ZRZ,train,8ZRZ_G4-F_3.33,2024-06-05,"Protein type: mono. Protenix-style input for 8ZRZ: 1 protein chain(s) (residue lengths [516]), 1 ligand/glycan slot(s) (CCD_GLC_GLC_GLC_GLC), 3 covalent-bond record(s)."
9EVM,train,9EVM_G2-B_3.69,2024-03-30,"Protein type: mono. Protenix-style input for 9EVM: 1 protein chain(s) (residue lengths [367]), 1 ligand/glycan slot(s) (CCD_GLC_FRU), 1 covalent-bond record(s)."
9EY5,train,9EY5_G3-C_5.12,2024-04-09,"Protein type: mono. Protenix-style input for 9EY5: 1 protein chain(s) (residue lengths [447]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
9EY7,train,9EY7_G3-C_5.12,2024-04-09,"Protein type: mono. Protenix-style input for 9EY7: 1 protein chain(s) (residue lengths [447]), 1 ligand/glycan slot(s) (CCD_NAG_NAG_BMA), 2 covalent-bond record(s)."
|