-
Notifications
You must be signed in to change notification settings - Fork 1
/
known_issues_reasons.txt
4596 lines (3064 loc) · 192 KB
/
known_issues_reasons.txt
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
6cfj_1_1X
Could not find nucleotides of chain 1X in annotation 6cfj.json. Either there is a problem with 6cfj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cfj_1_2X
Could not find nucleotides of chain 2X in annotation 6cfj.json. Either there is a problem with 6cfj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hcq_1_1X
Could not find nucleotides of chain 1X in annotation 5hcq.json. Either there is a problem with 5hcq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cae_1_1X
Could not find nucleotides of chain 1X in annotation 6cae.json. Either there is a problem with 6cae mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hcq_1_2X
Could not find nucleotides of chain 2X in annotation 5hcq.json. Either there is a problem with 5hcq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hcr_1_1X
Could not find nucleotides of chain 1X in annotation 5hcr.json. Either there is a problem with 5hcr mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z8c_1_1X
Could not find nucleotides of chain 1X in annotation 4z8c.json. Either there is a problem with 4z8c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4b_1_1X
Could not find nucleotides of chain 1X in annotation 5j4b.json. Either there is a problem with 5j4b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhy_1_1X
Could not find nucleotides of chain 1X in annotation 6xhy.json. Either there is a problem with 6xhy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhy_1_2X
Could not find nucleotides of chain 2X in annotation 6xhy.json. Either there is a problem with 6xhy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4b_1_2X
Could not find nucleotides of chain 2X in annotation 5j4b.json. Either there is a problem with 5j4b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z8c_1_2X
Could not find nucleotides of chain 2X in annotation 4z8c.json. Either there is a problem with 4z8c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cae_1_2X
Could not find nucleotides of chain 2X in annotation 6cae.json. Either there is a problem with 6cae mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4c_1_1X
Could not find nucleotides of chain 1X in annotation 5j4c.json. Either there is a problem with 5j4c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5w4k_1_1X
Could not find nucleotides of chain 1X in annotation 5w4k.json. Either there is a problem with 5w4k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6of1_1_1X
Could not find nucleotides of chain 1X in annotation 6of1.json. Either there is a problem with 6of1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhw_1_1X
Could not find nucleotides of chain 1X in annotation 6xhw.json. Either there is a problem with 6xhw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hcr_1_2X
Could not find nucleotides of chain 2X in annotation 5hcr.json. Either there is a problem with 5hcr mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hd1_1_1X
Could not find nucleotides of chain 1X in annotation 5hd1.json. Either there is a problem with 5hd1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hcp_1_1X
Could not find nucleotides of chain 1X in annotation 5hcp.json. Either there is a problem with 5hcp mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6of1_1_2X
Could not find nucleotides of chain 2X in annotation 6of1.json. Either there is a problem with 6of1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hau_1_1W
Could not find nucleotides of chain 1W in annotation 5hau.json. Either there is a problem with 5hau mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4c_1_2X
Could not find nucleotides of chain 2X in annotation 5j4c.json. Either there is a problem with 5j4c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wis_1_1X
Could not find nucleotides of chain 1X in annotation 5wis.json. Either there is a problem with 5wis mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhv_1_1X
Could not find nucleotides of chain 1X in annotation 6xhv.json. Either there is a problem with 6xhv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xqd_1_1X
Could not find nucleotides of chain 1X in annotation 6xqd.json. Either there is a problem with 6xqd mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd5_1_1X
Could not find nucleotides of chain 1X in annotation 6nd5.json. Either there is a problem with 6nd5 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5w4k_1_2X
Could not find nucleotides of chain 2X in annotation 5w4k.json. Either there is a problem with 5w4k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhw_1_2X
Could not find nucleotides of chain 2X in annotation 6xhw.json. Either there is a problem with 6xhw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hau_1_2W
Could not find nucleotides of chain 2W in annotation 5hau.json. Either there is a problem with 5hau mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xqd_1_2X
Could not find nucleotides of chain 2X in annotation 6xqd.json. Either there is a problem with 6xqd mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhv_1_2X
Could not find nucleotides of chain 2X in annotation 6xhv.json. Either there is a problem with 6xhv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4y4p_1_1X
Could not find nucleotides of chain 1X in annotation 4y4p.json. Either there is a problem with 4y4p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o97_1_1X
Could not find nucleotides of chain 1X in annotation 6o97.json. Either there is a problem with 6o97 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hcp_1_2X
Could not find nucleotides of chain 2X in annotation 5hcp.json. Either there is a problem with 5hcp mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5doy_1_1X
Could not find nucleotides of chain 1X in annotation 5doy.json. Either there is a problem with 5doy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4zer_1_1X
Could not find nucleotides of chain 1X in annotation 4zer.json. Either there is a problem with 4zer mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wit_1_1X
Could not find nucleotides of chain 1X in annotation 5wit.json. Either there is a problem with 5wit mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5hd1_1_2X
Could not find nucleotides of chain 2X in annotation 5hd1.json. Either there is a problem with 5hd1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd5_1_2X
Could not find nucleotides of chain 2X in annotation 6nd5.json. Either there is a problem with 6nd5 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z3s_1_1X
Could not find nucleotides of chain 1X in annotation 4z3s.json. Either there is a problem with 4z3s mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7jql_1_1X
Could not find nucleotides of chain 1X in annotation 7jql.json. Either there is a problem with 7jql mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7jqm_1_1X
Could not find nucleotides of chain 1X in annotation 7jqm.json. Either there is a problem with 7jqm mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7jql_1_2X
Could not find nucleotides of chain 2X in annotation 7jql.json. Either there is a problem with 7jql mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wis_1_2X
Could not find nucleotides of chain 2X in annotation 5wis.json. Either there is a problem with 5wis mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd6_1_1X
Could not find nucleotides of chain 1X in annotation 6nd6.json. Either there is a problem with 6nd6 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o97_1_2X
Could not find nucleotides of chain 2X in annotation 6o97.json. Either there is a problem with 6o97 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4y4p_1_2X
Could not find nucleotides of chain 2X in annotation 4y4p.json. Either there is a problem with 4y4p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7jqm_1_2X
Could not find nucleotides of chain 2X in annotation 7jqm.json. Either there is a problem with 7jqm mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z3s_1_2X
Could not find nucleotides of chain 2X in annotation 4z3s.json. Either there is a problem with 4z3s mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4zer_1_2X
Could not find nucleotides of chain 2X in annotation 4zer.json. Either there is a problem with 4zer mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6uo1_1_2X
Could not find nucleotides of chain 2X in annotation 6uo1.json. Either there is a problem with 6uo1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6uo1_1_1X
Could not find nucleotides of chain 1X in annotation 6uo1.json. Either there is a problem with 6uo1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5doy_1_2X
Could not find nucleotides of chain 2X in annotation 5doy.json. Either there is a problem with 5doy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wit_1_2X
Could not find nucleotides of chain 2X in annotation 5wit.json. Either there is a problem with 5wit mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5f8k_1_1X
Could not find nucleotides of chain 1X in annotation 5f8k.json. Either there is a problem with 5f8k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd6_1_2X
Could not find nucleotides of chain 2X in annotation 6nd6.json. Either there is a problem with 6nd6 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xqe_1_1X
Could not find nucleotides of chain 1X in annotation 6xqe.json. Either there is a problem with 6xqe mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xqe_1_2X
Could not find nucleotides of chain 2X in annotation 6xqe.json. Either there is a problem with 6xqe mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6n9e_1_1X
Could not find nucleotides of chain 1X in annotation 6n9e.json. Either there is a problem with 6n9e mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6n9e_1_2X
Could not find nucleotides of chain 2X in annotation 6n9e.json. Either there is a problem with 6n9e mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6n9f_1_1X
Could not find nucleotides of chain 1X in annotation 6n9f.json. Either there is a problem with 6n9f mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5f8k_1_2X
Could not find nucleotides of chain 2X in annotation 5f8k.json. Either there is a problem with 5f8k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6n9f_1_2X
Could not find nucleotides of chain 2X in annotation 6n9f.json. Either there is a problem with 6n9f mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xz7_1_F
Could not find nucleotides of chain F in annotation 6xz7.json. Either there is a problem with 6xz7 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xzb_1_F2
Could not find nucleotides of chain F2 in annotation 6xzb.json. Either there is a problem with 6xzb mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xza_1_F2
Could not find nucleotides of chain F2 in annotation 6xza.json. Either there is a problem with 6xza mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6y69_1_W
Could not find nucleotides of chain W in annotation 6y69.json. Either there is a problem with 6y69 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5afi_1_V
Could not find nucleotides of chain V in annotation 5afi.json. Either there is a problem with 5afi mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5afi_1_W
Could not find nucleotides of chain W in annotation 5afi.json. Either there is a problem with 5afi mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6h4n_1_W
Could not find nucleotides of chain W in annotation 6h4n.json. Either there is a problem with 6h4n mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wdt_1_V
Could not find nucleotides of chain V in annotation 5wdt.json. Either there is a problem with 5wdt mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wfs_1_V
Could not find nucleotides of chain V in annotation 5wfs.json. Either there is a problem with 5wfs mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wdt_1_W
Could not find nucleotides of chain W in annotation 5wdt.json. Either there is a problem with 5wdt mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wfs_1_W
Could not find nucleotides of chain W in annotation 5wfs.json. Either there is a problem with 5wfs mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5we4_1_V
Could not find nucleotides of chain V in annotation 5we4.json. Either there is a problem with 5we4 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5we4_1_W
Could not find nucleotides of chain W in annotation 5we4.json. Either there is a problem with 5we4 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5uq8_1_Y
Could not find nucleotides of chain Y in annotation 5uq8.json. Either there is a problem with 5uq8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6c4i_1_Y
Could not find nucleotides of chain Y in annotation 6c4i.json. Either there is a problem with 6c4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6c4i_1_X
Could not find nucleotides of chain X in annotation 6c4i.json. Either there is a problem with 6c4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6yef_1_X
Could not find nucleotides of chain X in annotation 6yef.json. Either there is a problem with 6yef mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5zeb_1_V
Could not find nucleotides of chain V in annotation 5zeb.json. Either there is a problem with 5zeb mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5zep_1_W
Could not find nucleotides of chain W in annotation 5zep.json. Either there is a problem with 5zep mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lzd_1_V
Could not find nucleotides of chain V in annotation 5lzd.json. Either there is a problem with 5lzd mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5we6_1_V
Could not find nucleotides of chain V in annotation 5we6.json. Either there is a problem with 5we6 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wfk_1_V
Could not find nucleotides of chain V in annotation 5wfk.json. Either there is a problem with 5wfk mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wfk_1_W
Could not find nucleotides of chain W in annotation 5wfk.json. Either there is a problem with 5wfk mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5we6_1_W
Could not find nucleotides of chain W in annotation 5we6.json. Either there is a problem with 5we6 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5u4i_1_Y
Could not find nucleotides of chain Y in annotation 5u4i.json. Either there is a problem with 5u4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5uq7_1_Y
Could not find nucleotides of chain Y in annotation 5uq7.json. Either there is a problem with 5uq7 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5u4i_1_X
Could not find nucleotides of chain X in annotation 5u4i.json. Either there is a problem with 5u4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lza_1_V
Could not find nucleotides of chain V in annotation 5lza.json. Either there is a problem with 5lza mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wf0_1_V
Could not find nucleotides of chain V in annotation 5wf0.json. Either there is a problem with 5wf0 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wf0_1_W
Could not find nucleotides of chain W in annotation 5wf0.json. Either there is a problem with 5wf0 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5zeu_1_V
Could not find nucleotides of chain V in annotation 5zeu.json. Either there is a problem with 5zeu mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5l3p_1_X
Could not find nucleotides of chain X in annotation 5l3p.json. Either there is a problem with 5l3p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3jcj_1_V
Could not find nucleotides of chain V in annotation 3jcj.json. Either there is a problem with 3jcj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6gxm_1_X
Could not find nucleotides of chain X in annotation 6gxm.json. Either there is a problem with 6gxm mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6gwt_1_X
Could not find nucleotides of chain X in annotation 6gwt.json. Either there is a problem with 6gwt mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6gxn_1_X
Could not find nucleotides of chain X in annotation 6gxn.json. Either there is a problem with 6gxn mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6gxo_1_X
Could not find nucleotides of chain X in annotation 6gxo.json. Either there is a problem with 6gxo mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3j9y_1_V
Could not find nucleotides of chain V in annotation 3j9y.json. Either there is a problem with 3j9y mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o9k_1_Y
Could not find nucleotides of chain Y in annotation 6o9k.json. Either there is a problem with 6o9k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o7k_1_V
Could not find nucleotides of chain V in annotation 6o7k.json. Either there is a problem with 6o7k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lzf_1_V
Could not find nucleotides of chain V in annotation 5lzf.json. Either there is a problem with 5lzf mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3jcn_1_V
Could not find nucleotides of chain V in annotation 3jcn.json. Either there is a problem with 3jcn mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lzc_1_V
Could not find nucleotides of chain V in annotation 5lzc.json. Either there is a problem with 5lzc mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5u4j_1_X
Could not find nucleotides of chain X in annotation 5u4j.json. Either there is a problem with 5u4j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5u4j_1_Z
Could not find nucleotides of chain Z in annotation 5u4j.json. Either there is a problem with 5u4j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lzb_1_V
Could not find nucleotides of chain V in annotation 5lzb.json. Either there is a problem with 5lzb mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6h58_1_W
Could not find nucleotides of chain W in annotation 6h58.json. Either there is a problem with 6h58 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6h58_1_WW
Could not find nucleotides of chain WW in annotation 6h58.json. Either there is a problem with 6h58 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j8b_1_X
Could not find nucleotides of chain X in annotation 5j8b.json. Either there is a problem with 5j8b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7j_1_AV
Could not find nucleotides of chain AV in annotation 4v7j.json. Either there is a problem with 4v7j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7j_1_BV
Could not find nucleotides of chain BV in annotation 4v7j.json. Either there is a problem with 4v7j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7k_1_BV
Could not find nucleotides of chain BV in annotation 4v7k.json. Either there is a problem with 4v7k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7k_1_AV
Could not find nucleotides of chain AV in annotation 4v7k.json. Either there is a problem with 4v7k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7k_1_BW
Could not find nucleotides of chain BW in annotation 4v7k.json. Either there is a problem with 4v7k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7k_1_AW
Could not find nucleotides of chain AW in annotation 4v7k.json. Either there is a problem with 4v7k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7j_1_AW
Could not find nucleotides of chain AW in annotation 4v7j.json. Either there is a problem with 4v7j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v7j_1_BW
Could not find nucleotides of chain BW in annotation 4v7j.json. Either there is a problem with 4v7j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4j_1_Z
Could not find nucleotides of chain Z in annotation 4v4j.json. Either there is a problem with 4v4j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6i0v_1_B
Sequence is too short. (< 5 resolved nts)
5k77_1_X
Sequence is too short. (< 5 resolved nts)
5k77_1_V
Sequence is too short. (< 5 resolved nts)
5k77_1_Y
Sequence is too short. (< 5 resolved nts)
5k77_1_W
Sequence is too short. (< 5 resolved nts)
5k77_1_Z
Sequence is too short. (< 5 resolved nts)
4pei_1_X
Sequence is too short. (< 5 resolved nts)
4pei_1_V
Sequence is too short. (< 5 resolved nts)
4pei_1_W
Sequence is too short. (< 5 resolved nts)
4pei_1_Z
Sequence is too short. (< 5 resolved nts)
4pei_1_Y
Sequence is too short. (< 5 resolved nts)
4a3c_1_P
Sequence is too short. (< 5 resolved nts)
4a3e_1_P
Sequence is too short. (< 5 resolved nts)
6lkq_1_U
Could not find nucleotides of chain U in annotation 6lkq.json. Either there is a problem with 6lkq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7k00_1_B
Could not find nucleotides of chain B in annotation 7k00.json. Either there is a problem with 7k00 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ys3_1_A
Could not find nucleotides of chain A in annotation 6ys3.json. Either there is a problem with 6ys3 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6qdw_1_A
Could not find nucleotides of chain A in annotation 6qdw.json. Either there is a problem with 6qdw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6hcj_1_Q3
Could not find nucleotides of chain Q3 in annotation 6hcj.json. Either there is a problem with 6hcj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6hcq_1_Q3
Could not find nucleotides of chain Q3 in annotation 6hcq.json. Either there is a problem with 6hcq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o8w_1_U
Could not find nucleotides of chain U in annotation 6o8w.json. Either there is a problem with 6o8w mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5mmm_1_Z
Could not find nucleotides of chain Z in annotation 5mmm.json. Either there is a problem with 5mmm mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4w2e_1_W
Could not find nucleotides of chain W in annotation 4w2e.json. Either there is a problem with 4w2e mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4b_1_1Y
Could not find nucleotides of chain 1Y in annotation 5j4b.json. Either there is a problem with 5j4b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cfj_1_1W
Could not find nucleotides of chain 1W in annotation 6cfj.json. Either there is a problem with 6cfj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5w4k_1_1Y
Could not find nucleotides of chain 1Y in annotation 5w4k.json. Either there is a problem with 5w4k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhy_1_1W
Could not find nucleotides of chain 1W in annotation 6xhy.json. Either there is a problem with 6xhy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wit_1_1W
Could not find nucleotides of chain 1W in annotation 5wit.json. Either there is a problem with 5wit mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cfj_1_1Y
Could not find nucleotides of chain 1Y in annotation 6cfj.json. Either there is a problem with 6cfj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cfj_1_2W
Could not find nucleotides of chain 2W in annotation 6cfj.json. Either there is a problem with 6cfj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4c_1_1W
Could not find nucleotides of chain 1W in annotation 5j4c.json. Either there is a problem with 5j4c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wis_1_1Y
Could not find nucleotides of chain 1Y in annotation 5wis.json. Either there is a problem with 5wis mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4c_1_1Y
Could not find nucleotides of chain 1Y in annotation 5j4c.json. Either there is a problem with 5j4c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhw_1_1W
Could not find nucleotides of chain 1W in annotation 6xhw.json. Either there is a problem with 6xhw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6cfj_1_2Y
Could not find nucleotides of chain 2Y in annotation 6cfj.json. Either there is a problem with 6cfj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wis_1_1W
Could not find nucleotides of chain 1W in annotation 5wis.json. Either there is a problem with 5wis mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4b_1_1W
Could not find nucleotides of chain 1W in annotation 5j4b.json. Either there is a problem with 5j4b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhv_1_1W
Could not find nucleotides of chain 1W in annotation 6xhv.json. Either there is a problem with 6xhv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhy_1_2W
Could not find nucleotides of chain 2W in annotation 6xhy.json. Either there is a problem with 6xhy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4c_1_2W
Could not find nucleotides of chain 2W in annotation 5j4c.json. Either there is a problem with 5j4c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4b_1_2W
Could not find nucleotides of chain 2W in annotation 5j4b.json. Either there is a problem with 5j4b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4b_1_2Y
Could not find nucleotides of chain 2Y in annotation 5j4b.json. Either there is a problem with 5j4b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j4c_1_2Y
Could not find nucleotides of chain 2Y in annotation 5j4c.json. Either there is a problem with 5j4c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5w4k_1_1W
Could not find nucleotides of chain 1W in annotation 5w4k.json. Either there is a problem with 5w4k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd5_1_1Y
Could not find nucleotides of chain 1Y in annotation 6nd5.json. Either there is a problem with 6nd5 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhw_1_2W
Could not find nucleotides of chain 2W in annotation 6xhw.json. Either there is a problem with 6xhw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wis_1_2Y
Could not find nucleotides of chain 2Y in annotation 5wis.json. Either there is a problem with 5wis mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wit_1_2W
Could not find nucleotides of chain 2W in annotation 5wit.json. Either there is a problem with 5wit mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhv_1_2W
Could not find nucleotides of chain 2W in annotation 6xhv.json. Either there is a problem with 6xhv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5doy_1_1Y
Could not find nucleotides of chain 1Y in annotation 5doy.json. Either there is a problem with 5doy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5w4k_1_2Y
Could not find nucleotides of chain 2Y in annotation 5w4k.json. Either there is a problem with 5w4k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4y4p_1_1Y
Could not find nucleotides of chain 1Y in annotation 4y4p.json. Either there is a problem with 4y4p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z3s_1_1Y
Could not find nucleotides of chain 1Y in annotation 4z3s.json. Either there is a problem with 4z3s mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5doy_1_1W
Could not find nucleotides of chain 1W in annotation 5doy.json. Either there is a problem with 5doy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5doy_1_2Y
Could not find nucleotides of chain 2Y in annotation 5doy.json. Either there is a problem with 5doy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd5_1_1W
Could not find nucleotides of chain 1W in annotation 6nd5.json. Either there is a problem with 6nd5 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z3s_1_2Y
Could not find nucleotides of chain 2Y in annotation 4z3s.json. Either there is a problem with 4z3s mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z3s_1_1W
Could not find nucleotides of chain 1W in annotation 4z3s.json. Either there is a problem with 4z3s mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5w4k_1_2W
Could not find nucleotides of chain 2W in annotation 5w4k.json. Either there is a problem with 5w4k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd5_1_2Y
Could not find nucleotides of chain 2Y in annotation 6nd5.json. Either there is a problem with 6nd5 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4y4p_1_2Y
Could not find nucleotides of chain 2Y in annotation 4y4p.json. Either there is a problem with 4y4p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6uo1_1_2Y
Could not find nucleotides of chain 2Y in annotation 6uo1.json. Either there is a problem with 6uo1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6uo1_1_2W
Could not find nucleotides of chain 2W in annotation 6uo1.json. Either there is a problem with 6uo1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4y4p_1_1W
Could not find nucleotides of chain 1W in annotation 4y4p.json. Either there is a problem with 4y4p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4z3s_1_2W
Could not find nucleotides of chain 2W in annotation 4z3s.json. Either there is a problem with 4z3s mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6uo1_1_1Y
Could not find nucleotides of chain 1Y in annotation 6uo1.json. Either there is a problem with 6uo1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhy_1_1Y
Could not find nucleotides of chain 1Y in annotation 6xhy.json. Either there is a problem with 6xhy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6uo1_1_1W
Could not find nucleotides of chain 1W in annotation 6uo1.json. Either there is a problem with 6uo1 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wis_1_2W
Could not find nucleotides of chain 2W in annotation 5wis.json. Either there is a problem with 5wis mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wit_1_1Y
Could not find nucleotides of chain 1Y in annotation 5wit.json. Either there is a problem with 5wit mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6nd5_1_2W
Could not find nucleotides of chain 2W in annotation 6nd5.json. Either there is a problem with 6nd5 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4y4p_1_2W
Could not find nucleotides of chain 2W in annotation 4y4p.json. Either there is a problem with 4y4p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5doy_1_2W
Could not find nucleotides of chain 2W in annotation 5doy.json. Either there is a problem with 5doy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wit_1_2Y
Could not find nucleotides of chain 2Y in annotation 5wit.json. Either there is a problem with 5wit mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhv_1_1Y
Could not find nucleotides of chain 1Y in annotation 6xhv.json. Either there is a problem with 6xhv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhy_1_2Y
Could not find nucleotides of chain 2Y in annotation 6xhy.json. Either there is a problem with 6xhy mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhw_1_1Y
Could not find nucleotides of chain 1Y in annotation 6xhw.json. Either there is a problem with 6xhw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhw_1_2Y
Could not find nucleotides of chain 2Y in annotation 6xhw.json. Either there is a problem with 6xhw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ucq_1_1Y
Could not find nucleotides of chain 1Y in annotation 6ucq.json. Either there is a problem with 6ucq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6xhv_1_2Y
Could not find nucleotides of chain 2Y in annotation 6xhv.json. Either there is a problem with 6xhv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4i_1_Z
Could not find nucleotides of chain Z in annotation 4v4i.json. Either there is a problem with 4v4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ucq_1_1X
Could not find nucleotides of chain 1X in annotation 6ucq.json. Either there is a problem with 6ucq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ucq_1_2Y
Could not find nucleotides of chain 2Y in annotation 6ucq.json. Either there is a problem with 6ucq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4w2e_1_X
Could not find nucleotides of chain X in annotation 4w2e.json. Either there is a problem with 4w2e mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ucq_1_2X
Could not find nucleotides of chain 2X in annotation 6ucq.json. Either there is a problem with 6ucq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7n1p_1_DT
Could not find nucleotides of chain DT in annotation 7n1p.json. Either there is a problem with 7n1p mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7n2u_1_DT
Could not find nucleotides of chain DT in annotation 7n2u.json. Either there is a problem with 7n2u mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6yss_1_W
Could not find nucleotides of chain W in annotation 6yss.json. Either there is a problem with 6yss mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7n30_1_DT
Could not find nucleotides of chain DT in annotation 7n30.json. Either there is a problem with 7n30 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7n31_1_DT
Could not find nucleotides of chain DT in annotation 7n31.json. Either there is a problem with 7n31 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7n2c_1_DT
Could not find nucleotides of chain DT in annotation 7n2c.json. Either there is a problem with 7n2c mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5afi_1_Y
Could not find nucleotides of chain Y in annotation 5afi.json. Either there is a problem with 5afi mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5uq8_1_Z
Could not find nucleotides of chain Z in annotation 5uq8.json. Either there is a problem with 5uq8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wdt_1_Y
Could not find nucleotides of chain Y in annotation 5wdt.json. Either there is a problem with 5wdt mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wfs_1_Y
Could not find nucleotides of chain Y in annotation 5wfs.json. Either there is a problem with 5wfs mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ysr_1_W
Could not find nucleotides of chain W in annotation 6ysr.json. Either there is a problem with 6ysr mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5we4_1_Y
Could not find nucleotides of chain Y in annotation 5we4.json. Either there is a problem with 5we4 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6yst_1_W
Could not find nucleotides of chain W in annotation 6yst.json. Either there is a problem with 6yst mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5uq7_1_Z
Could not find nucleotides of chain Z in annotation 5uq7.json. Either there is a problem with 5uq7 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5we6_1_Y
Could not find nucleotides of chain Y in annotation 5we6.json. Either there is a problem with 5we6 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wfk_1_Y
Could not find nucleotides of chain Y in annotation 5wfk.json. Either there is a problem with 5wfk mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5wf0_1_Y
Could not find nucleotides of chain Y in annotation 5wf0.json. Either there is a problem with 5wf0 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o9j_1_V
Could not find nucleotides of chain V in annotation 6o9j.json. Either there is a problem with 6o9j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ysu_1_W
Could not find nucleotides of chain W in annotation 6ysu.json. Either there is a problem with 6ysu mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3j46_1_A
Could not find nucleotides of chain A in annotation 3j46.json. Either there is a problem with 3j46 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j8b_1_Y
Could not find nucleotides of chain Y in annotation 5j8b.json. Either there is a problem with 5j8b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5j8b_1_W
Could not find nucleotides of chain W in annotation 5j8b.json. Either there is a problem with 5j8b mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3bbv_1_Z
Could not find nucleotides of chain Z in annotation 3bbv.json. Either there is a problem with 3bbv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5aj0_1_BV
Could not find nucleotides of chain BV in annotation 5aj0.json. Either there is a problem with 5aj0 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5aj0_1_BW
Could not find nucleotides of chain BW in annotation 5aj0.json. Either there is a problem with 5aj0 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4wt8_1_AB
Could not find nucleotides of chain AB in annotation 4wt8.json. Either there is a problem with 4wt8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4wt8_1_BB
Could not find nucleotides of chain BB in annotation 4wt8.json. Either there is a problem with 4wt8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4j_1_Y
Could not find nucleotides of chain Y in annotation 4v4j.json. Either there is a problem with 4v4j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4i_1_Y
Could not find nucleotides of chain Y in annotation 4v4i.json. Either there is a problem with 4v4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5uq8_1_X
Could not find nucleotides of chain X in annotation 5uq8.json. Either there is a problem with 5uq8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5uq7_1_X
Could not find nucleotides of chain X in annotation 5uq7.json. Either there is a problem with 5uq7 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4j_1_W
Could not find nucleotides of chain W in annotation 4v4j.json. Either there is a problem with 4v4j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4i_1_W
Could not find nucleotides of chain W in annotation 4v4i.json. Either there is a problem with 4v4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4wt8_1_CS
Could not find nucleotides of chain CS in annotation 4wt8.json. Either there is a problem with 4wt8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4wt8_1_DS
Could not find nucleotides of chain DS in annotation 4wt8.json. Either there is a problem with 4wt8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4j_1_X
Could not find nucleotides of chain X in annotation 4v4j.json. Either there is a problem with 4v4j mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4v4i_1_X
Could not find nucleotides of chain X in annotation 4v4i.json. Either there is a problem with 4v4i mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6lkq_1_S
Could not find nucleotides of chain S in annotation 6lkq.json. Either there is a problem with 6lkq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5h5u_1_H
Could not find nucleotides of chain H in annotation 5h5u.json. Either there is a problem with 5h5u mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
7d6z_1_F
Could not find nucleotides of chain F in annotation 7d6z.json. Either there is a problem with 7d6z mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lze_1_Y
Could not find nucleotides of chain Y in annotation 5lze.json. Either there is a problem with 5lze mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lze_1_V
Could not find nucleotides of chain V in annotation 5lze.json. Either there is a problem with 5lze mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5lze_1_X
Could not find nucleotides of chain X in annotation 5lze.json. Either there is a problem with 5lze mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3jcj_1_G
Could not find nucleotides of chain G in annotation 3jcj.json. Either there is a problem with 3jcj mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6o7k_1_G
Could not find nucleotides of chain G in annotation 6o7k.json. Either there is a problem with 6o7k mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6d30_1_C
Sequence is too short. (< 5 resolved nts)
6j7z_1_C
Sequence is too short. (< 5 resolved nts)
3er9_1_D
Sequence is too short. (< 5 resolved nts)
5kal_1_Y
Sequence is too short. (< 5 resolved nts)
4nia_1_3
Could not find nucleotides of chain 3 in annotation 4nia.json. Either there is a problem with 4nia mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
5kal_1_Z
Sequence is too short. (< 5 resolved nts)
4nia_1_7
Sequence is too short. (< 5 resolved nts)
4nia_1_4
Sequence is too short. (< 5 resolved nts)
5new_1_C
Sequence is too short. (< 5 resolved nts)
4nia_1_U
Could not find nucleotides of chain U in annotation 4nia.json. Either there is a problem with 4nia mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4nia_1_6
Sequence is too short. (< 5 resolved nts)
4oq9_1_7
Sequence is too short. (< 5 resolved nts)
4nia_1_1
Sequence is too short. (< 5 resolved nts)
4oq9_1_4
Sequence is too short. (< 5 resolved nts)
4nia_1_8
Sequence is too short. (< 5 resolved nts)
4oq9_1_8
Sequence is too short. (< 5 resolved nts)
4nia_1_5
Sequence is too short. (< 5 resolved nts)
2vrt_1_E
Sequence is too short. (< 5 resolved nts)
4nia_1_W
Could not find nucleotides of chain W in annotation 4nia.json. Either there is a problem with 4nia mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4oq9_1_6
Sequence is too short. (< 5 resolved nts)
4oq8_1_D
Could not find nucleotides of chain D in annotation 4oq8.json. Either there is a problem with 4oq8 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4nia_1_Z
Could not find nucleotides of chain Z in annotation 4nia.json. Either there is a problem with 4nia mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4oq9_1_W
Could not find nucleotides of chain W in annotation 4oq9.json. Either there is a problem with 4oq9 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4oq9_1_5
Sequence is too short. (< 5 resolved nts)
4nia_1_2
Could not find nucleotides of chain 2 in annotation 4nia.json. Either there is a problem with 4nia mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
2vrt_1_F
Sequence is too short. (< 5 resolved nts)
4oq9_1_U
Could not find nucleotides of chain U in annotation 4oq9.json. Either there is a problem with 4oq9 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4oq9_1_Z
Could not find nucleotides of chain Z in annotation 4oq9.json. Either there is a problem with 4oq9 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4oq9_1_2
Could not find nucleotides of chain 2 in annotation 4oq9.json. Either there is a problem with 4oq9 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
4oq9_1_3
Could not find nucleotides of chain 3 in annotation 4oq9.json. Either there is a problem with 4oq9 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
1ddl_1_E
Sequence is too short. (< 5 resolved nts)
4oq9_1_1
Sequence is too short. (< 5 resolved nts)
6rt5_1_A
Sequence is too short. (< 5 resolved nts)
6rt5_1_E
Sequence is too short. (< 5 resolved nts)
6lkq_1_T
Could not find nucleotides of chain T in annotation 6lkq.json. Either there is a problem with 6lkq mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6ys3_1_B
Could not find nucleotides of chain B in annotation 6ys3.json. Either there is a problem with 6ys3 mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6qdw_1_B
Could not find nucleotides of chain B in annotation 6qdw.json. Either there is a problem with 6qdw mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3jbv_1_B
Could not find nucleotides of chain B in annotation 3jbv.json. Either there is a problem with 3jbv mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
3jbu_1_B
Could not find nucleotides of chain B in annotation 3jbu.json. Either there is a problem with 3jbu mmCIF download, or the bases are not resolved in the structure. Delete it and retry.
6do8_1_B
Sequence is too short. (< 5 resolved nts)
6dpi_1_B
Sequence is too short. (< 5 resolved nts)
6dp9_1_B
Sequence is too short. (< 5 resolved nts)
6dpb_1_B
Sequence is too short. (< 5 resolved nts)
6dmn_1_B
Sequence is too short. (< 5 resolved nts)
6dpp_1_B
Sequence is too short. (< 5 resolved nts)
6dpk_1_B
Sequence is too short. (< 5 resolved nts)
6dpd_1_B
Sequence is too short. (< 5 resolved nts)
6dot_1_B
Sequence is too short. (< 5 resolved nts)
6dok_1_B
Sequence is too short. (< 5 resolved nts)
6dp8_1_B
Sequence is too short. (< 5 resolved nts)
6dpl_1_B
Sequence is too short. (< 5 resolved nts)
6dpg_1_B
Sequence is too short. (< 5 resolved nts)
6dou_1_B
Sequence is too short. (< 5 resolved nts)
6dpc_1_B
Sequence is too short. (< 5 resolved nts)
6do9_1_B
Sequence is too short. (< 5 resolved nts)
6dmv_1_B
Sequence is too short. (< 5 resolved nts)
6dp4_1_B
Sequence is too short. (< 5 resolved nts)
6dpn_1_B
Sequence is too short. (< 5 resolved nts)
6doj_1_B
Sequence is too short. (< 5 resolved nts)
6dph_1_B
Sequence is too short. (< 5 resolved nts)
6dos_1_B
Sequence is too short. (< 5 resolved nts)
6doo_1_B
Sequence is too short. (< 5 resolved nts)
6dp6_1_B
Sequence is too short. (< 5 resolved nts)
6dox_1_B
Sequence is too short. (< 5 resolved nts)
6dp5_1_B
Sequence is too short. (< 5 resolved nts)
6dol_1_B
Sequence is too short. (< 5 resolved nts)
6dp1_1_B
Sequence is too short. (< 5 resolved nts)
6doz_1_B
Sequence is too short. (< 5 resolved nts)
6dp7_1_B
Sequence is too short. (< 5 resolved nts)
6doq_1_B
Sequence is too short. (< 5 resolved nts)
6dpa_1_B
Sequence is too short. (< 5 resolved nts)
6dom_1_B
Sequence is too short. (< 5 resolved nts)
6dog_1_B
Sequence is too short. (< 5 resolved nts)
6dop_1_B
Sequence is too short. (< 5 resolved nts)
6doh_1_B
Sequence is too short. (< 5 resolved nts)
6doa_1_B
Sequence is too short. (< 5 resolved nts)
6don_1_B
Sequence is too short. (< 5 resolved nts)
6dov_1_B
Sequence is too short. (< 5 resolved nts)
6dpo_1_B
Sequence is too short. (< 5 resolved nts)
6dod_1_B
Sequence is too short. (< 5 resolved nts)
6dob_1_B
Sequence is too short. (< 5 resolved nts)
6dow_1_B
Sequence is too short. (< 5 resolved nts)
6dpm_1_B