-
Notifications
You must be signed in to change notification settings - Fork 2
/
3ds1_refine_001.log
1573 lines (1355 loc) · 65.5 KB
/
3ds1_refine_001.log
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
# Date 2019-04-19 Time 09:17:49 CST +0800 (1555636669.82 s)
#phil __OFF__
Command line arguments: "3ds1.mtz" "3ds1.pdb" "ordered_solvent=true" "optimize_xyz=true" "optimize_adp=true" "--overwrite" "main.nproc=16"
HOST = pva_mbp
HOSTTYPE = unknown
MACHTYPE = x86_64
OSTYPE = darwin
VENDOR = apple
USER = pafonine
PID = 96383
-------------------------------------------------------------------------------
PHENIX: Python-based Hierarchical ENvironment for Integrated Xtallography
Version: dev
Release tag: svn+SVN
User: pafonine
-------------------------------------------------------------------------------
phenix.refine: Macromolecular Structure Refinement
-------------------------------------------------------------------------------
Phenix developers include:
Paul Adams, Pavel Afonine, Gabor Bunkoczi, Tom Burnley, Vincent Chen,
Youval Dar, Ian Davis, Eli Draizen, Nathaniel Echols, Richard Gildea,
Piet Gros, Ralf Grosse-Kunstleve, Jeffrey Headd, Bradley Hintze, Li-Wei Hung,
Tom Ioerger, Dorothee Liebschner, Airlie McCoy, Erik McKee, Nigel Moriarty,
Robert Oeffner, Billy Poon, Randy Read, Jane Richardson, David Richardson,
Jim Sacchettini, Nicholas Sauter, Oleg Sobolev, Laurent Storoni,
Tom Terwilliger, Christopher Williams, Peter Zwart
Phenix home page:
http://www.phenix-online.org/
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Phenix components are copyrighted by:
- Lawrence Berkeley National Laboratory
- Los Alamos National Laboratory
- University of Cambridge
- Duke University
- Texas Agricultural Experiment Station &
Texas Engineering Experiment Station
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Major third-party components of Phenix include:
Python, wxWidgets, wxPython, Boost, SCons, Clipper,
CCP4 Monomer Library, CCP4 I/O libraries, PyCifRW, FFTPACK, L-BFGS,
MUSCLE, KSDSSP, PULCHRA, ANTLRv3
Enter phenix.acknowledgments for details.
-------------------------------------------------------------------------------
Processing inputs. This may take a minute or two.
Command line parameter definitions:
refinement.main.ordered_solvent = true
refinement.target_weights.optimize_xyz_weight = true
refinement.target_weights.optimize_adp_weight = true
refinement.main.nproc = 16
No user-defined map coefficients or files defined; will use default map
outputs instead.
Working crystal symmetry after inspecting all inputs:
Unit cell: (42.894, 42.894, 90.813, 90, 90, 90)
Space group: P 41 21 2 (No. 92)
================================== X-ray data =================================
F-obs:
3ds1.mtz:FOBS,SIGFOBS
Miller array info: 3ds1.mtz:FOBS,SIGFOBS
Observation type: xray.amplitude
Type of data: double, size=11748
Type of sigmas: double, size=11748
Number of Miller indices: 11748
Anomalous flag: False
Unit cell: (42.894, 42.894, 90.813, 90, 90, 90)
Space group: P 41 21 2 (No. 92)
Systematic absences: 0
Centric reflections: 2233
Resolution range: 28.7685 1.60119
Completeness in resolution range: 0.996607
Completeness with d_max=infinity: 0.996353
Wavelength: 0.0000
Number of F-obs in resolution range: 11748
Number of F-obs<0 (these reflections will be rejected): 0
Number of F-obs=0 (these reflections will be used in refinement): 0
Refinement resolution range: d_max = 28.7685
d_min = 1.6012
R-free flags:
3ds1.mtz:R-free-flags
Miller array info: 3ds1.mtz:R-free-flags
Observation type: None
Type of data: int, size=11788
Type of sigmas: None
Number of Miller indices: 11788
Anomalous flag: False
Unit cell: (42.894, 42.894, 90.813, 90, 90, 90)
Space group: P 41 21 2 (No. 92)
Systematic absences: 0
Centric reflections: 2255
Resolution range: 28.7685 1.60119
Completeness in resolution range: 1
Completeness with d_max=infinity: 0.999746
Wavelength: 0.0000
Test (R-free flags) flag value: 0
Number of work/free reflections by resolution:
work free %free
bin 1: 28.7731 - 3.4479 [1280/1308] 1236 44 3.4%
bin 2: 3.4479 - 2.7374 [1207/1207] 1146 61 5.1%
bin 3: 2.7374 - 2.3915 [1173/1173] 1118 55 4.7%
bin 4: 2.3915 - 2.1730 [1189/1189] 1123 66 5.6%
bin 5: 2.1730 - 2.0173 [1159/1159] 1100 59 5.1%
bin 6: 2.0173 - 1.8984 [1161/1161] 1118 43 3.7%
bin 7: 1.8984 - 1.8033 [1159/1159] 1104 55 4.7%
bin 8: 1.8033 - 1.7248 [1145/1145] 1083 62 5.4%
bin 9: 1.7248 - 1.6584 [1148/1148] 1087 61 5.3%
bin 10: 1.6584 - 1.6012 [1127/1139] 1074 53 4.7%
overall 11189 559 4.8%
Monomer Library directory:
"/Users/pafonine/phenix/modules/chem_data/mon_lib"
Total number of atoms: 810
Number of models: 1
Model: ""
Number of chains: 4
Chain: "A"
Number of atoms: 628
Number of conformers: 2
Conformer: "A"
Number of residues, atoms: 81, 622
Classifications: {'peptide': 81}
Link IDs: {'PTRANS': 4, 'TRANS': 75, 'PCIS': 1}
Conformer: "B"
Number of residues, atoms: 81, 622
Classifications: {'peptide': 81}
Link IDs: {'PTRANS': 4, 'TRANS': 75, 'PCIS': 1}
bond proxies already assigned to first conformer: 626
Chain: "T"
Number of atoms: 95
Number of conformers: 1
Conformer: ""
Number of residues, atoms: 11, 95
Classifications: {'peptide': 11}
Link IDs: {'TRANS': 10}
Chain: "A"
Number of atoms: 80
Number of conformers: 1
Conformer: ""
Number of residues, atoms: 80, 80
Classifications: {'water': 80}
Link IDs: {None: 79}
Chain: "T"
Number of atoms: 7
Number of conformers: 1
Conformer: ""
Number of residues, atoms: 7, 7
Classifications: {'water': 7}
Link IDs: {None: 6}
Residues with excluded nonbonded symmetry interactions: 1
residue:
pdb=" O HOH A 88 " occ=0.50
Time building chain proxies: 0.49, per 1000 atoms: 0.60
Number of scatterers: 810
At special positions: 0
Unit cell: (42.894, 42.894, 90.813, 90, 90, 90)
Space group: P 41 21 2 (No. 92)
Number of sites at special positions: 0
Number of scattering types: 4
Type Number sf(0)
S 5 16.00
O 226 8.00
N 122 7.00
C 457 6.00
sf(0) = scattering factor at diffraction angle 0.
No array of experimental phases found.
******************************************************************
INFO: Some parts of this job will make use of multiple processors:
******************************************************************
nproc = 16
Please ask your system administrator for advice about this, in particular if
you run this job through a queuing system.
============================== Scattering factors =============================
----------X-ray scattering dictionary----------
Number of scattering types: 4
Type Number sf(0) Gaussians
S 5 15.96 2
O 226 7.97 2
N 122 6.97 2
C 457 5.97 2
sf(0) = scattering factor at diffraction angle 0.
==================== Fixing bad ADP in input model (if any) ===================
========================== Anomalous scatterer groups =========================
All atoms refined with f_prime=0 and f_double_prime=0.
Number of disulfides: simple=0, symmetry=0
Automatic linking
Parameters for automatic linking
Linking & cutoffs
Metal : False - 3.50
Amimo acid : False - 1.90
Carbohydrate : True - 1.99
Ligands : True - 1.99
Small molecules : False - 1.98
Amino acid - RNA/DNA : False
Number of custom bonds: simple=0, symmetry=0
Time building additional restraints: 0.08
Conformation dependent library (CDL) restraints added in 43.3 milliseconds
Adding C-beta torsion restraints...
Number of C-beta restraints generated: 170
Time building geometry restraints manager: 0.11 seconds
NOTE: a complete listing of the restraints can be obtained by requesting
output of .geo file.
Histogram of bond lengths:
1.17 - 1.30: 126
1.30 - 1.43: 176
1.43 - 1.56: 423
1.56 - 1.68: 4
1.68 - 1.81: 8
Bond restraints: 737
Sorted by residual:
bond pdb=" C GLU A 180 "
pdb=" O GLU A 180 "
ideal model delta sigma weight residual
1.236 1.175 0.062 1.15e-02 7.56e+03 2.89e+01
bond pdb=" C GLY A 222 "
pdb=" O GLY A 222 "
ideal model delta sigma weight residual
1.237 1.176 0.061 1.44e-02 4.82e+03 1.79e+01
bond pdb=" C GLY A 223 "
pdb=" O GLY A 223 "
ideal model delta sigma weight residual
1.235 1.183 0.052 1.35e-02 5.49e+03 1.50e+01
bond pdb=" N GLU A 180 "
pdb=" CA GLU A 180 "
ideal model delta sigma weight residual
1.459 1.414 0.046 1.19e-02 7.06e+03 1.48e+01
bond pdb=" CB THR A 188 "
pdb=" OG1 THR A 188 "
ideal model delta sigma weight residual
1.433 1.373 0.060 1.60e-02 3.91e+03 1.40e+01
... (remaining 732 not shown)
Histogram of bond angle deviations from ideal:
97.96 - 105.13: 21
105.13 - 112.31: 334
112.31 - 119.49: 266
119.49 - 126.67: 369
126.67 - 133.85: 7
Bond angle restraints: 997
Sorted by residual:
angle pdb=" N GLY A 222 "
pdb=" CA GLY A 222 "
pdb=" C GLY A 222 "
ideal model delta sigma weight residual
114.92 110.35 4.57 1.30e+00 5.92e-01 1.23e+01
angle pdb=" N GLU A 180 "
pdb=" CA GLU A 180 "
pdb=" CB GLU A 180 "
ideal model delta sigma weight residual
110.01 105.22 4.79 1.45e+00 4.76e-01 1.09e+01
angle pdb=" N ALA A 209 "
pdb=" CA ALA A 209 "
pdb=" C ALA A 209 "
ideal model delta sigma weight residual
110.23 114.40 -4.17 1.45e+00 4.76e-01 8.26e+00
angle pdb=" OG1 THR A 188 "
pdb=" CB THR A 188 "
pdb=" CG2 THR A 188 "
ideal model delta sigma weight residual
109.30 103.85 5.45 2.00e+00 2.50e-01 7.42e+00
angle pdb=" CA ASN A 183 "
pdb=" C ASN A 183 "
pdb=" N TRP A 184 "
ideal model delta sigma weight residual
117.30 114.29 3.01 1.16e+00 7.43e-01 6.72e+00
... (remaining 992 not shown)
Histogram of dihedral angle deviations from ideal:
0.01 - 16.44: 413
16.44 - 32.86: 28
32.86 - 49.29: 3
49.29 - 65.72: 3
65.72 - 82.15: 1
Dihedral angle restraints: 448
sinusoidal: 182
harmonic: 266
Sorted by residual:
dihedral pdb=" CA GLY A 222 "
pdb=" C GLY A 222 "
pdb=" N GLY A 223 "
pdb=" CA GLY A 223 "
ideal model delta harmonic sigma weight residual
180.00 -164.08 -15.92 0 5.00e+00 4.00e-02 1.01e+01
dihedral pdb=" CA ARG A 162 "
pdb=" CB ARG A 162 "
pdb=" CG ARG A 162 "
pdb=" CD ARG A 162 "
ideal model delta sinusoidal sigma weight residual
60.00 110.58 -50.58 3 1.50e+01 4.44e-03 8.92e+00
dihedral pdb=" C VAL A 181 "
pdb=" N VAL A 181 "
pdb=" CA VAL A 181 "
pdb=" CB VAL A 181 "
ideal model delta harmonic sigma weight residual
-122.00 -129.23 7.23 0 2.50e+00 1.60e-01 8.37e+00
... (remaining 445 not shown)
Histogram of chiral volume deviations from ideal:
0.000 - 0.058: 61
0.058 - 0.117: 31
0.117 - 0.175: 13
0.175 - 0.233: 4
0.233 - 0.291: 1
Chirality restraints: 110
Sorted by residual:
chirality pdb=" CA ASN A 193 "
pdb=" N ASN A 193 "
pdb=" C ASN A 193 "
pdb=" CB ASN A 193 "
both_signs ideal model delta sigma weight residual
False 2.51 2.22 0.29 2.00e-01 2.50e+01 2.12e+00
chirality pdb=" CA LEU A 189 "
pdb=" N LEU A 189 "
pdb=" C LEU A 189 "
pdb=" CB LEU A 189 "
both_signs ideal model delta sigma weight residual
False 2.51 2.29 0.22 2.00e-01 2.50e+01 1.18e+00
chirality pdb=" CA SER A 149 "
pdb=" N SER A 149 "
pdb=" C SER A 149 "
pdb=" CB SER A 149 "
both_signs ideal model delta sigma weight residual
False 2.51 2.71 -0.20 2.00e-01 2.50e+01 9.82e-01
... (remaining 107 not shown)
Planarity restraints: 130
Sorted by residual:
delta sigma weight rms_deltas residual
plane pdb=" CB TYR A 164 " 0.018 2.00e-02 2.50e+03 1.19e-02 2.86e+00
pdb=" CG TYR A 164 " -0.010 2.00e-02 2.50e+03
pdb=" CD1 TYR A 164 " -0.011 2.00e-02 2.50e+03
pdb=" CD2 TYR A 164 " 0.003 2.00e-02 2.50e+03
pdb=" CE1 TYR A 164 " 0.003 2.00e-02 2.50e+03
pdb=" CE2 TYR A 164 " -0.011 2.00e-02 2.50e+03
pdb=" CZ TYR A 164 " -0.011 2.00e-02 2.50e+03
pdb=" OH TYR A 164 " 0.019 2.00e-02 2.50e+03
delta sigma weight rms_deltas residual
plane pdb=" CB TYR A 169 " 0.019 2.00e-02 2.50e+03 1.11e-02 2.46e+00
pdb=" CG TYR A 169 " -0.007 2.00e-02 2.50e+03
pdb=" CD1 TYR A 169 " -0.019 2.00e-02 2.50e+03
pdb=" CD2 TYR A 169 " -0.006 2.00e-02 2.50e+03
pdb=" CE1 TYR A 169 " 0.007 2.00e-02 2.50e+03
pdb=" CE2 TYR A 169 " -0.006 2.00e-02 2.50e+03
pdb=" CZ TYR A 169 " 0.004 2.00e-02 2.50e+03
pdb=" OH TYR A 169 " 0.008 2.00e-02 2.50e+03
delta sigma weight rms_deltas residual
plane pdb=" CG GLU A 159 " 0.006 2.00e-02 2.50e+03 1.17e-02 1.37e+00
pdb=" CD GLU A 159 " -0.020 2.00e-02 2.50e+03
pdb=" OE1 GLU A 159 " 0.007 2.00e-02 2.50e+03
pdb=" OE2 GLU A 159 " 0.007 2.00e-02 2.50e+03
... (remaining 127 not shown)
Histogram of nonbonded interaction distances:
2.40 - 2.90: 410
2.90 - 3.40: 923
3.40 - 3.90: 1832
3.90 - 4.40: 2013
4.40 - 4.90: 3114
Nonbonded interactions: 8292
Sorted by model distance:
nonbonded pdb=" OD2 ASP A 163 "
pdb=" OD2 ASP T 5 "
model vdw sym.op.
2.403 3.040 y-1/2,-x+1/2,z-1/4
nonbonded pdb=" OD2 ASP T 5 "
pdb=" OD2 ASP A 163 "
model vdw sym.op.
2.403 3.040 -y+1/2,x+1/2,z+1/4
nonbonded pdb=" OH TYR T 9 "
pdb=" O HOH T 19 "
model vdw
2.450 2.440
nonbonded pdb=" O HIS A 226 "
pdb=" O HOH A 13 "
model vdw
2.492 2.440
nonbonded pdb=" OE1 GLU T 4 "
pdb=" O HOH T 16 "
model vdw
2.503 2.440
... (remaining 8287 not shown)
NOTE: a complete listing of the restraints can be obtained by requesting
output of .geo file.
======================== Summary of geometry restraints =======================
====================== Modifying start model if requested =====================
n_use = 810
n_use_u_iso = 0
n_use_u_aniso = 810
n_grad_site = 0
n_grad_u_iso = 0
n_grad_u_aniso = 0
n_grad_occupancy = 0
n_grad_fp = 0
n_grad_fdp = 0
total number of scatterers = 810
================== Extract refinement strategy and selections =================
Refinement flags and selection counts:
individual_sites = True (810 atoms)
torsion_angles = False (0 atoms)
rigid_body = False (0 atoms in 0 groups)
individual_adp = True (iso = 0 aniso = 810)
group_adp = False (0 atoms in 0 groups)
tls = False (0 atoms in 0 groups)
occupancies = True (13 atoms)
group_anomalous = False
*******************************************************************************
Automatic adjustment:
hydrogens.refine=riding
*******************************************************************************
==================== Process input NCS or/and find new NCS ====================
Using existing and finding new NCS is disabled.
Use ncs_search.enabled=true to activate it.
Look at refinement.ncs for more NCS related parameters.
=================== Write initial parameters into .eff file ===================
Writing effective parameters to file:
/Users/pafonine/Desktop/QR2019April/low_high_res_pair/3ds1_refine_001.eff
Writing geometry restraints to file:
/Users/pafonine/Desktop/QR2019April/low_high_res_pair/3ds1_refine_001.geo
CPU time processing inputs: 5.90
============================ Non-default parameters ===========================
A complete record of all parameters was written to the .eff file above.
Below are only the non-defaults.
#phil __ON__
refinement {
crystal_symmetry {
unit_cell = 42.89400101 42.89400101 90.81300354 90 90 90
space_group = "P 41 21 2"
}
input {
pdb {
file_name = "3ds1.pdb"
}
xray_data {
file_name = "3ds1.mtz"
labels = "FOBS,SIGFOBS"
r_free_flags {
file_name = "3ds1.mtz"
label = "R-free-flags"
test_flag_value = 0
}
}
}
output {
prefix = "3ds1_refine"
serial = 1
}
electron_density_maps {
map_coefficients {
map_type = "2mFo-DFc"
mtz_label_amplitudes = "2FOFCWT"
mtz_label_phases = "PH2FOFCWT"
fill_missing_f_obs = True
}
map_coefficients {
map_type = "2mFo-DFc"
mtz_label_amplitudes = "2FOFCWT_no_fill"
mtz_label_phases = "PH2FOFCWT_no_fill"
}
map_coefficients {
map_type = "mFo-DFc"
mtz_label_amplitudes = "FOFCWT"
mtz_label_phases = "PHFOFCWT"
}
map_coefficients {
map_type = "anomalous"
mtz_label_amplitudes = "ANOM"
mtz_label_phases = "PANOM"
}
map {
map_type = "2mFo-DFc"
fill_missing_f_obs = True
}
map {
map_type = "2mFo-DFc"
}
map {
map_type = "mFo-DFc"
}
}
main {
ordered_solvent = True
nproc = 16
}
hydrogens {
refine = individual *riding Auto
}
target_weights {
optimize_xyz_weight = True
optimize_adp_weight = True
}
}
#phil __OFF__
=============================== refinement start ==============================
----------structure factors based statistics (before refinement)----------
----------X-ray data----------
|--(resolution: 1.60 - 28.77 A, n_refl.=11748 (all), 4.76 % free)------------|
| |
| r_work= 0.2749 r_free= 0.3123 coordinate error (max.-lik. estimate): 0.14 A |
| |
| normalized target function (ml) (work): 4.627053 |
| target function (ml) not normalized (work): 51772.095185 |
| target function (ml) not normalized (free): 2612.573658 |
|-----------------------------------------------------------------------------|
|-----------------------------------------------------------------------------|
| Bin Resolution Compl. No. Refl. R-factors Targets |
|number range work test work test work test|
| 1: 28.7731 - 2.5413 0.99 2938 136 0.2876 0.3332 5.8182 5.7819|
| 2: 2.5413 - 2.0173 1.00 2785 149 0.2625 0.2668 4.9669 4.9928|
| 3: 2.0173 - 1.7623 1.00 2756 131 0.2533 0.3327 4.1087 4.2831|
| 4: 1.7623 - 1.6012 1.00 2710 143 0.2462 0.3052 3.5135 3.6449|
|-----------------------------------------------------------------------------|
|-----------------------------------------------------------------------------|
|R-free likelihood based estimates for figures of merit, absolute phase error,|
|and distribution parameters alpha and beta (Acta Cryst. (1995). A51, 880-887)|
| |
| Bin Resolution No. Refl. FOM Phase Scale Alpha Beta |
| # range work test error factor |
| 1: 28.7731 - 2.5413 2938 136 0.72 31.58 0.98 0.86 15337.19|
| 2: 2.5413 - 2.0173 2785 149 0.63 40.60 1.15 0.93 5835.25|
| 3: 2.0173 - 1.7623 2756 131 0.75 30.94 1.12 0.91 795.51|
| 4: 1.7623 - 1.6012 2710 143 0.78 28.43 1.00 0.80 217.96|
|alpha: min = 0.80 max = 0.93 mean = 0.88|
|beta: min = 217.96 max = 15337.19 mean = 5728.39|
|figures of merit: min = 0.00 max = 1.00 mean = 0.72|
|phase err.(work): min = 0.00 max = 90.00 mean = 32.90|
|phase err.(test): min = 0.00 max = 89.18 mean = 33.15|
|-----------------------------------------------------------------------------|
----------Initial model statistics (before refinement)----------
min max mean <Bi,j> iso aniso
Overall: 11.42 54.27 23.75 1.83 810 0
Protein: 11.42 43.21 22.62 1.83 723 0
Water: 18.60 54.27 33.20 N/A 87 0
Chain A: 11.42 54.27 23.67 N/A 708 0
Chain T: 17.76 43.79 24.33 N/A 102 0
Histogram:
Values Number of atoms
11.42 - 15.70 49
15.70 - 19.99 230
19.99 - 24.27 216
24.27 - 28.56 146
28.56 - 32.84 73
32.84 - 37.13 52
37.13 - 41.41 25
41.41 - 45.70 13
45.70 - 49.98 5
49.98 - 54.27 1
|-Occupancies statistics------------------------------------------------------|
| occupancies: max = 1.00 min = 0.50 number of occupancies < 0.1 = 0 |
|-----------------------------------------------------------------------------|
*********************** REFINEMENT MACRO_CYCLE 1 OF 3 *************************
|--(resolution: 1.60 - 28.77 A, n_refl.=11748 (all), 4.76 % free)------------|
| |
| r_work= 0.2749 r_free= 0.3123 coordinate error (max.-lik. estimate): 0.14 A |
| |
| normalized target function (ml) (work): 4.627053 |
| target function (ml) not normalized (work): 51772.095185 |
| target function (ml) not normalized (free): 2612.573658 |
|-----------------------------------------------------------------------------|
=========================== Bulk-solvent and scaling ==========================
============================= updating all scales =============================
start: r(all,work,free)=0.2763 0.2749 0.3123 n_refl.: 11748
re-set all scales: r(all,work,free)=0.2763 0.2749 0.3123 n_refl.: 11748
remove outliers: r(all,work,free)=0.2763 0.2749 0.3123 n_refl.: 11748
overall B=1.17 to atoms: r(all,work,free)=0.2842 0.2830 0.3153 n_refl.: 11748
bulk-solvent and scaling: r(all,work,free)=0.2291 0.2268 0.2789 n_refl.: 11748
remove outliers: r(all,work,free)=0.2291 0.2268 0.2789 n_refl.: 11748
======================== Statistics in resolution bins ========================
Total model structure factor:
F_model = k_total * (F_calc + k_mask * F_mask)
k_total = k_isotropic * k_anisotropic
Resolution Compl Nwork Nfree R_work <Fobs> <Fmodel> kiso kani kmask
28.768-8.096 81.97 96 4 0.2350 292.180 280.266 0.995 0.946 0.325
8.025-6.498 99.01 97 3 0.2760 224.188 217.081 0.939 0.947 0.338
6.467-5.218 98.92 177 6 0.2390 254.841 243.325 1.003 0.947 0.337
5.202-4.200 99.41 323 16 0.2066 323.484 313.469 1.044 0.948 0.302
4.197-3.385 99.84 606 16 0.2008 290.333 283.240 1.045 0.948 0.196
3.383-2.727 100.00 1105 62 0.2348 183.580 176.726 1.022 0.949 0.000
2.726-2.198 100.00 2070 114 0.2257 116.304 112.041 1.046 0.949 0.000
2.197-1.771 100.00 3892 188 0.2348 59.667 58.237 1.092 0.949 0.000
1.771-1.601 99.60 2823 150 0.2475 27.833 26.786 0.981 0.949 0.000
Approximation of k_total with k_overall*exp(-b_overall*s**2/4)
k_overall=1.0016 b_overall=0.2673
============================ Set refinement target ============================
using refinement target ls_wunit_k1
================================== NQH flips ==================================
r_work=0.2268 r_free=0.2789
Analyzing N/Q/H residues for possible flip corrections...
Flipped N/Q/H residues before XYZ refinement:
A 179 GLN
Total number of N/Q/H flips: 1
r_work=0.2269 r_free=0.2789
==================== Compute data/restraints target weights ===================
|-----------------------------------------------------------------------------|
| XYZ refinement: T = Eexperimental * wxc * wxc_scale + Echem * wc |
| wxc = 19.347056 wxc_scale = 0.500 wc = 1.000 |
| |
| ADP refinement: T = Eexperimental * wxu * wxu_scale + Eadp * wu |
| wxu = 0.414868 wxu_scale = 1.000 wu = 1.000 |
|-----------------------------------------------------------------------------|
====================== XYZ individual (reciprocal space) ======================
R-FACTORS RMSD CLASH RAMA ROTA CBET WEIGHT TARGETS
work free delta bonds angl data restr
22.69 27.89 5.20 0.014 1.3 4.9 0.0 0.0 0 none 0.060 0.1710
23.78 28.14 4.35 0.003 0.6 3.5 0.0 0.0 0 0.125 0.064 0.0440
23.68 28.09 4.41 0.003 0.6 3.5 0.0 0.0 0 0.250 0.064 0.0441
23.65 28.08 4.43 0.003 0.6 3.5 0.0 0.0 0 0.500 0.063 0.0438
23.51 28.12 4.62 0.003 0.6 3.5 0.0 0.0 0 1.000 0.062 0.0441
23.25 28.07 4.82 0.003 0.6 3.5 0.0 0.0 0 2.000 0.059 0.0461
22.98 27.98 4.99 0.003 0.6 3.5 0.0 0.0 0 3.000 0.057 0.0483
22.86 28.07 5.20 0.004 0.6 3.5 0.0 0.0 0 4.000 0.056 0.0518
22.77 28.17 5.41 0.004 0.7 4.2 0.0 0.0 0 5.000 0.055 0.0531
22.80 28.35 5.56 0.005 0.7 4.2 0.0 0.0 0 6.000 0.054 0.0559
22.73 28.45 5.72 0.005 0.7 4.9 0.0 0.0 0 7.000 0.053 0.0597
22.59 28.39 5.80 0.005 0.7 4.9 0.0 0.0 0 8.000 0.052 0.0623
22.54 28.42 5.88 0.006 0.8 4.9 0.0 0.0 0 9.000 0.052 0.0648
22.53 28.54 6.00 0.006 0.8 4.9 0.0 1.3 0 10.000 0.052 0.0684
22.49 28.42 5.93 0.006 0.8 4.9 0.0 0.0 0 9.674 0.052 0.0668
Best XYZ weight: 3.000
Updating mask...
Accepted refinement result:
22.98 27.98 4.99 0.003 0.6 3.5 0.0 0.0 0 3.000 0.057 0.0483
Legend:
- first line corresponds to starting state (before refinement)
- R-factors reported in percent
- delta is Rfree-Rwork in percent
- CLASH is all-atom Molprobity clashscore
- ROTA is percent of side-chain rotamer outliers
- RAMA is percent of Ramachandran plot outliers
- CBET is number of Cbeta deviations
- WEIGHT is relative weight between X-ray (or neutron) target and restraints
- TARGETS: the values of X-ray (or neutron) and restraints target functions
====================== ADP refinement (reciprocal space) ======================
----------Individual ADP refinement----------
R-FACTORS <Bi-Bj> <B> WEIGHT TARGETS
work free delta data restr
22.98 27.98 4.99 1.831 24.928 0.415 0.057
25.92 30.56 4.64 1.096 26.823 0.012 0.068
23.74 28.72 4.98 1.388 25.662 0.052 0.059
22.19 27.08 4.89 3.000 26.853 0.207 0.051
21.68 26.78 5.09 4.047 27.578 0.415 0.048
21.49 26.82 5.34 4.828 27.871 0.622 0.047
21.41 26.88 5.47 5.461 28.150 0.830 0.046
21.37 26.90 5.53 6.009 28.355 1.037 0.046
21.34 26.90 5.56 6.455 28.517 1.245 0.046
21.32 26.84 5.52 7.010 28.774 1.452 0.045
21.31 26.92 5.61 7.378 28.932 1.659 0.045
21.31 26.94 5.63 7.805 29.084 1.867 0.045
21.30 26.98 5.68 7.953 29.143 2.074 0.045
max suggested <Bi-Bj> for this run: 10.00
max allowed Rfree-Rwork gap: 5.0
range of equivalent Rfree: 0.0
Best ADP weight: 0.207
Accepted refinement result:
22.19 27.08 4.89 3.000 26.853 0.207 0.051
min max mean <Bi,j> iso aniso
Overall: 14.36 65.92 26.85 3.00 810 0
Protein: 14.36 65.92 26.14 3.00 723 0
Water: 18.97 50.44 32.77 N/A 87 0
Chain A: 14.36 65.92 26.93 N/A 708 0
Chain T: 19.13 40.55 26.29 N/A 102 0
Histogram:
Values Number of atoms
14.36 - 19.52 147
19.52 - 24.67 220
24.67 - 29.83 206
29.83 - 34.99 120
34.99 - 40.14 74
40.14 - 45.30 26
45.30 - 50.45 5
50.45 - 55.61 3
55.61 - 60.76 7
60.76 - 65.92 2
============================= Occupancy refinement ============================
|-occupancy refinement: start-------------------------------------------------|
| r_work = 0.2219 r_free = 0.2708 target_work(ls_wunit_k1) = 0.051 |
| occupancies: max = 1.00 min = 0.50 number of occupancies < 0.1: 0 |
|-----------------------------------------------------------------------------|
|-occupancy refinement: end---------------------------------------------------|
| r_work = 0.2218 r_free = 0.2705 target_work(ls_wunit_k1) = 0.051 |
| occupancies: max = 1.00 min = 0.44 number of occupancies < 0.1: 0 |
|-----------------------------------------------------------------------------|
*********************** REFINEMENT MACRO_CYCLE 2 OF 3 *************************
|--(resolution: 1.60 - 28.77 A, n_refl.=11748 (all), 4.76 % free)------------|
| |
| r_work= 0.2218 r_free= 0.2705 coordinate error (max.-lik. estimate): 0.15 A |
| |
| normalized target function (ls_wunit_k1) (work): 0.051324 |
| target function (ls_wunit_k1) not normalized (work): 574.262999 |
| target function (ls_wunit_k1) not normalized (free): 46.511937 |
|-----------------------------------------------------------------------------|
=========================== Bulk-solvent and scaling ==========================
============================= updating all scales =============================
start: r(all,work,free)=0.2240 0.2218 0.2705 n_refl.: 11748
re-set all scales: r(all,work,free)=0.2902 0.2894 0.3109 n_refl.: 11748
remove outliers: r(all,work,free)=0.2902 0.2894 0.3109 n_refl.: 11748
overall B=-0.08 to atoms: r(all,work,free)=0.2894 0.2886 0.3104 n_refl.: 11748
bulk-solvent and scaling: r(all,work,free)=0.2238 0.2217 0.2703 n_refl.: 11748
remove outliers: r(all,work,free)=0.2238 0.2217 0.2703 n_refl.: 11748
======================== Statistics in resolution bins ========================
Total model structure factor:
F_model = k_total * (F_calc + k_mask * F_mask)
k_total = k_isotropic * k_anisotropic
Resolution Compl Nwork Nfree R_work <Fobs> <Fmodel> kiso kani kmask
28.768-8.096 81.97 96 4 0.2200 292.180 282.230 0.922 1.000 0.316
8.025-6.498 99.01 97 3 0.2579 224.188 219.270 0.885 1.001 0.319
6.467-5.218 98.92 177 6 0.2111 254.841 247.053 0.942 1.000 0.319
5.202-4.200 99.41 323 16 0.1736 323.484 317.681 0.988 1.001 0.307
4.197-3.385 99.84 606 16 0.1784 290.333 285.670 1.005 1.000 0.230
3.383-2.727 100.00 1105 62 0.2154 183.580 178.297 0.987 0.999 0.000
2.726-2.198 100.00 2070 114 0.2241 116.304 112.261 1.022 0.998 0.000
2.197-1.771 100.00 3892 188 0.2558 59.667 58.116 1.085 0.996 0.000
1.771-1.601 99.60 2823 150 0.2872 27.833 26.386 0.975 0.994 0.000
Approximation of k_total with k_overall*exp(-b_overall*s**2/4)
k_overall=1.0047 b_overall=-0.2308
============================ Set refinement target ============================
using refinement target ml
============================ Update CDL restraints ============================
================================== NQH flips ==================================
r_work=0.2217 r_free=0.2703
Analyzing N/Q/H residues for possible flip corrections...
No N/Q/H corrections needed this macrocycle
r_work=0.2217 r_free=0.2703
================== Update (add/remove/refine) ordered solvent =================
Start model:
number = 87
b_iso_min = 18.89 (limit = 1.00)
b_iso_max = 50.36 (limit = 80.00)
b_iso_mean = 32.69
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 2.50 (limit = 1.80)
dist_sol_mol_max = 4.29 (limit = 6.00)
Filtered:
number = 80
b_iso_min = 18.89 (limit = 1.00)
b_iso_max = 50.36 (limit = 80.00)
b_iso_mean = 32.54
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 2.50 (limit = 1.80)
dist_sol_mol_max = 4.29 (limit = 6.00)
Number of peaks found at mFobs-DFmodel map (map cutoff=3.00 sigma)= 84
Filter by distance & map next to the model:
mapped sites are within: 0.770 - 4.215
number of sites selected in [dist_min= 1.80, dist_max= 6.00]: 53 from: 84
mapped sites are within: 1.810 - 4.215
Just added new:
number = 133
b_iso_min = 18.89 (limit = 1.00)
b_iso_max = 50.36 (limit = 80.00)
b_iso_mean = 29.96
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 1.82 (limit = 1.80)
dist_sol_mol_max = 4.48 (limit = 6.00)
Filtered:
number = 116
b_iso_min = 18.89 (limit = 1.00)
b_iso_max = 50.36 (limit = 80.00)
b_iso_mean = 30.53
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 1.82 (limit = 1.80)
dist_sol_mol_max = 4.29 (limit = 6.00)
Number of peaks found at 2mFobs-DFmodel map (map cutoff=1.00 sigma)= 721
Filter by distance & map next to the model:
mapped sites are within: 0.031 - 0.500
number of sites selected in [dist_min= 0.01, dist_max= 0.50]: 551 from: 721
mapped sites are within: 0.031 - 0.500
ADP refinement (water only), start r_work=0.2383 r_free=0.2788
ADP refinement (water only), final r_work=0.2173 r_free=0.2602
Before filtering:
number = 116
b_iso_min = 19.42 (limit = 1.00)
b_iso_max = 172.88 (limit = 80.00)
b_iso_mean = 43.10
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 1.56 (limit = 1.80)
dist_sol_mol_max = 4.33 (limit = 6.00)
Before RSCC filtering: 103
After RSCC filtering: 92
2mFo-DFmodel map selection:
number = 92
b_iso_min = 19.42 (limit = 1.00)
b_iso_max = 55.88 (limit = 80.00)
b_iso_mean = 36.41
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 1.85 (limit = 1.80)
dist_sol_mol_max = 4.33 (limit = 6.00)
Final:
number = 92
b_iso_min = 19.42 (limit = 1.00)
b_iso_max = 55.88 (limit = 80.00)
b_iso_mean = 36.41
anisotropy_min = 1.00 (limit = 0.10)
occupancy_min = 0.45 (limit = 0.10)
occupancy_max = 1.00 (limit = 1.00)
dist_sol_mol_min = 1.85 (limit = 1.80)
dist_sol_mol_max = 4.33 (limit = 6.00)
========================= Local real-space refinement =========================
Before:
r_work=0.2197 r_free=0.2658
rotamer outliers: 0.00 %
outliers start: 0
outliers after map fit: 0
tune up
outliers final: 0
Did it for: 14
After:
r_work=0.2253 r_free=0.2641
rotamer outliers: 0.00 %
==================== Compute data/restraints target weights ===================
|-----------------------------------------------------------------------------|
| XYZ refinement: T = Eexperimental * wxc * wxc_scale + Echem * wc |
| wxc = 5.579301 wxc_scale = 0.500 wc = 1.000 |
| |
| ADP refinement: T = Eexperimental * wxu * wxu_scale + Eadp * wu |
| wxu = 0.073139 wxu_scale = 1.000 wu = 1.000 |
|-----------------------------------------------------------------------------|
====================== XYZ individual (reciprocal space) ======================
R-FACTORS RMSD CLASH RAMA ROTA CBET WEIGHT TARGETS
work free delta bonds angl data restr
22.53 26.41 3.87 0.003 0.7 7.6 0.0 0.0 0 none 4.525 0.5008
22.83 26.19 3.37 0.002 0.5 5.6 0.0 0.0 0 0.125 4.528 0.0286
22.54 25.93 3.39 0.003 0.5 6.9 0.0 0.0 0 0.250 4.517 0.0304
22.27 25.65 3.38 0.003 0.6 6.9 0.0 0.0 0 0.500 4.506 0.0336
22.06 25.65 3.58 0.004 0.6 5.6 0.0 0.0 0 1.000 4.499 0.0388
21.79 25.62 3.83 0.006 0.8 5.6 0.0 0.0 0 2.000 4.490 0.0506
21.60 25.62 4.02 0.008 0.9 4.9 0.0 0.0 0 3.000 4.484 0.0642
21.49 25.72 4.23 0.009 1.0 5.6 0.0 0.0 0 4.000 4.480 0.0741
21.41 25.78 4.37 0.010 1.1 5.6 0.0 0.0 0 5.000 4.478 0.0861
21.32 25.77 4.45 0.011 1.1 5.6 0.0 0.0 0 6.000 4.475 0.0972
21.25 25.74 4.49 0.012 1.2 5.6 0.0 0.0 0 7.000 4.473 0.1084
21.18 25.90 4.72 0.013 1.3 5.6 0.0 0.0 0 8.000 4.473 0.1200
21.14 25.97 4.83 0.014 1.3 4.9 0.0 0.0 0 9.000 4.473 0.1333
21.09 26.02 4.94 0.015 1.4 4.9 0.0 0.0 0 10.000 4.472 0.1446
21.64 25.59 3.95 0.007 0.9 4.9 0.0 0.0 0 2.790 4.484 0.0605
Best XYZ weight: 2.790
Updating mask...
Accepted refinement result:
21.64 25.59 3.95 0.007 0.9 4.9 0.0 0.0 0 2.790 4.484 0.0605
Legend:
- first line corresponds to starting state (before refinement)
- R-factors reported in percent
- delta is Rfree-Rwork in percent
- CLASH is all-atom Molprobity clashscore
- ROTA is percent of side-chain rotamer outliers
- RAMA is percent of Ramachandran plot outliers
- CBET is number of Cbeta deviations
- WEIGHT is relative weight between X-ray (or neutron) target and restraints
- TARGETS: the values of X-ray (or neutron) and restraints target functions
===================== Post-minimization rotamer correction ====================
Before:
r_work=0.2164 r_free=0.2559
rotamer outliers: 0.00 %
outliers start: 0