-
Notifications
You must be signed in to change notification settings - Fork 1
/
smallest.str
5797 lines (5587 loc) · 675 KB
/
smallest.str
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
data_c17438_2l96
save_entry_information
_Entry.Sf_category entry_information
_Entry.Sf_framecode entry_information
_Entry.ID c17438_2l96
_Entry.Title
;
LAK160-P7
;
_Entry.Version_type original
_Entry.Submission_date 2011-02-01
_Entry.Accession_date 2011-02-01
_Entry.Last_release_date .
_Entry.Original_release_date .
_Entry.Origination author
_Entry.NMR_STAR_version 3.1.1.20
_Entry.Original_NMR_STAR_version 3.1
_Entry.Experimental_method NMR
_Entry.Experimental_method_subtype SOLUTION
_Entry.Details 'Synthetic cationic anti-microbial peptide LAK160-P7'
_Entry.BMRB_internal_directory_name .
loop_
_Entry_author.Ordinal
_Entry_author.Given_name
_Entry_author.Family_name
_Entry_author.First_initial
_Entry_author.Middle_initials
_Entry_author.Family_title
_Entry_author.Entry_ID
1 Louic Vermeer . S. . c17438_2l96
2 Tam Bui . T. . c17438_2l96
3 Yun Lan . . . c17438_2l96
4 Elmira Jumagulova . . . c17438_2l96
5 Justyna Kozlowska . . . c17438_2l96
6 Caitlin McIntyre . . . c17438_2l96
7 Alex Drake . F. . c17438_2l96
8 James Mason . A. . c17438_2l96
stop_
loop_
_SG_project.SG_project_ID
_SG_project.Project_name
_SG_project.Full_name_of_center
_SG_project.Initial_of_center
_SG_project.Entry_ID
1 'not applicable' 'not applicable' . c17438_2l96
stop_
loop_
_Struct_keywords.Keywords
_Struct_keywords.Text
_Struct_keywords.Entry_ID
anti-microbial . c17438_2l96
cationic . c17438_2l96
proline . c17438_2l96
ampiphatic . c17438_2l96
synthetic . c17438_2l96
stop_
loop_
_Data_set.Type
_Data_set.Count
_Data_set.Entry_ID
assigned_chemical_shifts 1 c17438_2l96
stop_
loop_
_Datum.Type
_Datum.Count
_Datum.Entry_ID
'1H chemical shifts' 49 c17438_2l96
stop_
loop_
_Release.Release_number
_Release.Format_type
_Release.Format_version
_Release.Date
_Release.Submission_date
_Release.Type
_Release.Author
_Release.Detail
_Release.Entry_ID
1 . . 2012-01-30 2011-02-01 original author . c17438_2l96
stop_
loop_
_Related_entries.Database_name
_Related_entries.Database_accession_code
_Related_entries.Relationship
_Related_entries.Entry_ID
BRMB 17441 LAK160-P12 c17438_2l96
PDB 2L9A LAK160-P12 c17438_2l96
BRMB 17442 LAK160-P710 c17438_2l96
PDB 2L99 LAK160-P710 c17438_2l96
stop_
save_
save_entry_citation
_Citation.Sf_category citations
_Citation.Sf_framecode entry_citation
_Citation.Entry_ID c17438_2l96
_Citation.ID 1
_Citation.Class 'entry citation'
_Citation.CAS_abstract_code .
_Citation.MEDLINE_UI_code .
_Citation.DOI .
_Citation.PubMed_ID .
_Citation.Full_citation .
_Citation.Title 'The role of proline induced conformational flexibility in determining the antibacterial potency of linear cationic alpha-helical peptides.'
_Citation.Status 'in preparation'
_Citation.Type journal
_Citation.Journal_abbrev 'Biophys. J.'
_Citation.Journal_name_full .
_Citation.Journal_volume .
_Citation.Journal_issue .
_Citation.Journal_ASTM .
_Citation.Journal_ISSN .
_Citation.Journal_CSD .
_Citation.Book_title .
_Citation.Book_chapter_title .
_Citation.Book_volume .
_Citation.Book_series .
_Citation.Book_publisher .
_Citation.Book_publisher_city .
_Citation.Book_ISBN .
_Citation.Conference_title .
_Citation.Conference_site .
_Citation.Conference_state_province .
_Citation.Conference_country .
_Citation.Conference_start_date .
_Citation.Conference_end_date .
_Citation.Conference_abstract_number .
_Citation.Thesis_institution .
_Citation.Thesis_institution_city .
_Citation.Thesis_institution_country .
_Citation.WWW_URL .
_Citation.Page_first .
_Citation.Page_last .
_Citation.Year .
_Citation.Details .
loop_
_Citation_author.Ordinal
_Citation_author.Given_name
_Citation_author.Family_name
_Citation_author.First_initial
_Citation_author.Middle_initials
_Citation_author.Family_title
_Citation_author.Entry_ID
_Citation_author.Citation_ID
1 Louic Vermeer . S. . c17438_2l96 1
2 Tam Bui . T. . c17438_2l96 1
3 Yun Lan . . . c17438_2l96 1
4 Elmira Jumagulova . . . c17438_2l96 1
5 Justyna Kozlowska . . . c17438_2l96 1
6 Caitlin McIntyre . . . c17438_2l96 1
7 Alex Drake . F. . c17438_2l96 1
8 James Mason . A. . c17438_2l96 1
stop_
save_
save_assembly
_Assembly.Sf_category assembly
_Assembly.Sf_framecode assembly
_Assembly.Entry_ID c17438_2l96
_Assembly.ID 1
_Assembly.Name LAK160-P7
_Assembly.BMRB_code .
_Assembly.Number_of_components 1
_Assembly.Organic_ligands .
_Assembly.Metal_ions .
_Assembly.Non_standard_bonds .
_Assembly.Ambiguous_conformational_states .
_Assembly.Ambiguous_chem_comp_sites .
_Assembly.Molecules_in_chemical_exchange .
_Assembly.Paramagnetic no
_Assembly.Thiol_state .
_Assembly.Molecular_mass .
_Assembly.Enzyme_commission_number .
_Assembly.Details .
_Assembly.DB_query_date .
_Assembly.DB_query_revised_last_date .
loop_
_Entity_assembly.ID
_Entity_assembly.Entity_assembly_name
_Entity_assembly.Entity_ID
_Entity_assembly.Entity_label
_Entity_assembly.Asym_ID
_Entity_assembly.PDB_chain_ID
_Entity_assembly.Experimental_data_reported
_Entity_assembly.Physical_state
_Entity_assembly.Conformational_isomer
_Entity_assembly.Chemical_exchange_state
_Entity_assembly.Magnetic_equivalence_group_code
_Entity_assembly.Role
_Entity_assembly.Details
_Entity_assembly.Entry_ID
_Entity_assembly.Assembly_ID
1 LAK160-P7 1 $LAK160-P7 A . yes native no no . . . c17438_2l96 1
stop_
save_
save_LAK160-P7
_Entity.Sf_category entity
_Entity.Sf_framecode LAK160-P7
_Entity.Entry_ID c17438_2l96
_Entity.ID 1
_Entity.BMRB_code .
_Entity.Name LAK160-P7
_Entity.Type polymer
_Entity.Polymer_common_type .
_Entity.Polymer_type polypeptide(L)
_Entity.Polymer_type_details .
_Entity.Polymer_strand_ID X
_Entity.Polymer_seq_one_letter_code_can .
_Entity.Polymer_seq_one_letter_code
;
KKLKLAPAKLALLWKALALK
LKKA
;
_Entity.Target_identifier .
_Entity.Polymer_author_defined_seq .
_Entity.Polymer_author_seq_details .
_Entity.Ambiguous_conformational_states no
_Entity.Ambiguous_chem_comp_sites no
_Entity.Nstd_monomer no
_Entity.Nstd_chirality no
_Entity.Nstd_linkage no
_Entity.Nonpolymer_comp_ID .
_Entity.Nonpolymer_comp_label .
_Entity.Number_of_monomers 24
_Entity.Number_of_nonpolymer_components .
_Entity.Paramagnetic no
_Entity.Thiol_state 'not present'
_Entity.Src_method man
_Entity.Parent_entity_ID 1
_Entity.Fragment .
_Entity.Mutation .
_Entity.EC_number .
_Entity.Calc_isoelectric_point .
_Entity.Formula_weight 2666.540
_Entity.Formula_weight_exptl .
_Entity.Formula_weight_exptl_meth .
_Entity.Details .
_Entity.DB_query_date .
_Entity.DB_query_revised_last_date 2012-02-04
loop_
_Entity_db_link.Author_supplied
_Entity_db_link.Database_code
_Entity_db_link.Accession_code
_Entity_db_link.Entry_mol_code
_Entity_db_link.Entry_mol_name
_Entity_db_link.Entry_experimental_method
_Entity_db_link.Entry_structure_resolution
_Entity_db_link.Entry_relation_type
_Entity_db_link.Entry_details
_Entity_db_link.Chimera_segment
_Entity_db_link.Seq_query_to_submitted_percent
_Entity_db_link.Seq_subject_length
_Entity_db_link.Seq_identity
_Entity_db_link.Seq_positive
_Entity_db_link.Seq_homology_expectation_val
_Entity_db_link.Seq_align_begin
_Entity_db_link.Seq_align_end
_Entity_db_link.Seq_difference_details
_Entity_db_link.Seq_alignment_details
_Entity_db_link.Entry_ID
_Entity_db_link.Entity_ID
no PDB 2L96 . "Solution Structure Of Lak160-P7" . . . . . 100.00 24 100.00 100.00 4.72e-01 . . . . c17438_2l96 1
stop_
loop_
_Entity_comp_index.ID
_Entity_comp_index.Auth_seq_ID
_Entity_comp_index.Comp_ID
_Entity_comp_index.Comp_label
_Entity_comp_index.Entry_ID
_Entity_comp_index.Entity_ID
1 1 LYS . c17438_2l96 1
2 2 LYS . c17438_2l96 1
3 3 LEU . c17438_2l96 1
4 4 LYS . c17438_2l96 1
5 5 LEU . c17438_2l96 1
6 6 ALA . c17438_2l96 1
7 7 PRO . c17438_2l96 1
8 8 ALA . c17438_2l96 1
9 9 LYS . c17438_2l96 1
10 10 LEU . c17438_2l96 1
11 11 ALA . c17438_2l96 1
12 12 LEU . c17438_2l96 1
13 13 LEU . c17438_2l96 1
14 14 TRP . c17438_2l96 1
15 15 LYS . c17438_2l96 1
16 16 ALA . c17438_2l96 1
17 17 LEU . c17438_2l96 1
18 18 ALA . c17438_2l96 1
19 19 LEU . c17438_2l96 1
20 20 LYS . c17438_2l96 1
21 21 LEU . c17438_2l96 1
22 22 LYS . c17438_2l96 1
23 23 LYS . c17438_2l96 1
24 24 ALA . c17438_2l96 1
stop_
loop_
_Entity_poly_seq.Hetero
_Entity_poly_seq.Mon_ID
_Entity_poly_seq.Num
_Entity_poly_seq.Comp_index_ID
_Entity_poly_seq.Entry_ID
_Entity_poly_seq.Entity_ID
. LYS 1 1 c17438_2l96 1
. LYS 2 2 c17438_2l96 1
. LEU 3 3 c17438_2l96 1
. LYS 4 4 c17438_2l96 1
. LEU 5 5 c17438_2l96 1
. ALA 6 6 c17438_2l96 1
. PRO 7 7 c17438_2l96 1
. ALA 8 8 c17438_2l96 1
. LYS 9 9 c17438_2l96 1
. LEU 10 10 c17438_2l96 1
. ALA 11 11 c17438_2l96 1
. LEU 12 12 c17438_2l96 1
. LEU 13 13 c17438_2l96 1
. TRP 14 14 c17438_2l96 1
. LYS 15 15 c17438_2l96 1
. ALA 16 16 c17438_2l96 1
. LEU 17 17 c17438_2l96 1
. ALA 18 18 c17438_2l96 1
. LEU 19 19 c17438_2l96 1
. LYS 20 20 c17438_2l96 1
. LEU 21 21 c17438_2l96 1
. LYS 22 22 c17438_2l96 1
. LYS 23 23 c17438_2l96 1
. ALA 24 24 c17438_2l96 1
stop_
save_
save_natural_source
_Entity_natural_src_list.Sf_category natural_source
_Entity_natural_src_list.Sf_framecode natural_source
_Entity_natural_src_list.Entry_ID c17438_2l96
_Entity_natural_src_list.ID 1
loop_
_Entity_natural_src.ID
_Entity_natural_src.Entity_ID
_Entity_natural_src.Entity_label
_Entity_natural_src.Entity_chimera_segment_ID
_Entity_natural_src.NCBI_taxonomy_ID
_Entity_natural_src.Type
_Entity_natural_src.Common
_Entity_natural_src.Organism_name_scientific
_Entity_natural_src.Organism_name_common
_Entity_natural_src.Organism_acronym
_Entity_natural_src.ICTVdb_decimal_code
_Entity_natural_src.Superkingdom
_Entity_natural_src.Kingdom
_Entity_natural_src.Genus
_Entity_natural_src.Species
_Entity_natural_src.Strain
_Entity_natural_src.Variant
_Entity_natural_src.Subvariant
_Entity_natural_src.Organ
_Entity_natural_src.Tissue
_Entity_natural_src.Tissue_fraction
_Entity_natural_src.Cell_line
_Entity_natural_src.Cell_type
_Entity_natural_src.ATCC_number
_Entity_natural_src.Organelle
_Entity_natural_src.Cellular_location
_Entity_natural_src.Fragment
_Entity_natural_src.Fraction
_Entity_natural_src.Secretion
_Entity_natural_src.Plasmid
_Entity_natural_src.Plasmid_details
_Entity_natural_src.Gene_mnemonic
_Entity_natural_src.Dev_stage
_Entity_natural_src.Details
_Entity_natural_src.Citation_ID
_Entity_natural_src.Citation_label
_Entity_natural_src.Entry_ID
_Entity_natural_src.Entity_natural_src_list_ID
1 1 $LAK160-P7 . . 'no natural source' . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . c17438_2l96 1
stop_
save_
save_experimental_source
_Entity_experimental_src_list.Sf_category experimental_source
_Entity_experimental_src_list.Sf_framecode experimental_source
_Entity_experimental_src_list.Entry_ID c17438_2l96
_Entity_experimental_src_list.ID 1
loop_
_Entity_experimental_src.ID
_Entity_experimental_src.Entity_ID
_Entity_experimental_src.Entity_label
_Entity_experimental_src.Entity_chimera_segment_ID
_Entity_experimental_src.Production_method
_Entity_experimental_src.Host_org_scientific_name
_Entity_experimental_src.Host_org_name_common
_Entity_experimental_src.Host_org_details
_Entity_experimental_src.Host_org_NCBI_taxonomy_ID
_Entity_experimental_src.Host_org_genus
_Entity_experimental_src.Host_org_species
_Entity_experimental_src.Host_org_strain
_Entity_experimental_src.Host_org_variant
_Entity_experimental_src.Host_org_subvariant
_Entity_experimental_src.Host_org_organ
_Entity_experimental_src.Host_org_tissue
_Entity_experimental_src.Host_org_tissue_fraction
_Entity_experimental_src.Host_org_cell_line
_Entity_experimental_src.Host_org_cell_type
_Entity_experimental_src.Host_org_cellular_location
_Entity_experimental_src.Host_org_organelle
_Entity_experimental_src.Host_org_gene
_Entity_experimental_src.Host_org_culture_collection
_Entity_experimental_src.Host_org_ATCC_number
_Entity_experimental_src.Vector_type
_Entity_experimental_src.PDBview_host_org_vector_name
_Entity_experimental_src.PDBview_plasmid_name
_Entity_experimental_src.Vector_name
_Entity_experimental_src.Vector_details
_Entity_experimental_src.Vendor_name
_Entity_experimental_src.Host_org_dev_stage
_Entity_experimental_src.Details
_Entity_experimental_src.Citation_ID
_Entity_experimental_src.Citation_label
_Entity_experimental_src.Entry_ID
_Entity_experimental_src.Entity_experimental_src_list_ID
1 1 $LAK160-P7 . 'obtained from a vendor' . . . . . . . . . . . . . . . . . . . . . . . . . . . . . c17438_2l96 1
stop_
save_
save_sample_1
_Sample.Sf_category sample
_Sample.Sf_framecode sample_1
_Sample.Entry_ID c17438_2l96
_Sample.ID 1
_Sample.Type micelle
_Sample.Sub_type .
_Sample.Details .
_Sample.Aggregate_sample_number .
_Sample.Solvent_system '90% H2O/10% D2O'
_Sample.Preparation_date .
_Sample.Preparation_expiration_date .
_Sample.Polycrystallization_protocol .
_Sample.Single_crystal_protocol .
_Sample.Crystal_grow_apparatus .
_Sample.Crystal_grow_atmosphere .
_Sample.Crystal_grow_details .
_Sample.Crystal_grow_method .
_Sample.Crystal_grow_method_cit_ID .
_Sample.Crystal_grow_pH .
_Sample.Crystal_grow_pH_range .
_Sample.Crystal_grow_pressure .
_Sample.Crystal_grow_pressure_esd .
_Sample.Crystal_grow_seeding .
_Sample.Crystal_grow_seeding_cit_ID .
_Sample.Crystal_grow_temp .
_Sample.Crystal_grow_temp_details .
_Sample.Crystal_grow_temp_esd .
_Sample.Crystal_grow_time .
_Sample.Oriented_sample_prep_protocol .
_Sample.Lyophilization_cryo_protectant .
_Sample.Storage_protocol .
loop_
_Sample_component.ID
_Sample_component.Mol_common_name
_Sample_component.Isotopic_labeling
_Sample_component.Assembly_ID
_Sample_component.Assembly_label
_Sample_component.Entity_ID
_Sample_component.Entity_label
_Sample_component.Product_ID
_Sample_component.Type
_Sample_component.Concentration_val
_Sample_component.Concentration_val_min
_Sample_component.Concentration_val_max
_Sample_component.Concentration_val_units
_Sample_component.Concentration_val_err
_Sample_component.Vendor
_Sample_component.Vendor_product_name
_Sample_component.Vendor_product_code
_Sample_component.Entry_ID
_Sample_component.Sample_ID
1 LAK160-P7 'natural abundance' . . 1 $LAK160-P7 . . 1 . . mM . . . . c17438_2l96 1
2 SDS 'natural abundance' . . . . . . 100 . . mM . . . . c17438_2l96 1
3 TRIS 'natural abundance' . . . . . . 5 . . mM . . . . c17438_2l96 1
4 H2O 'natural abundance' . . . . . . 90 . . % . . . . c17438_2l96 1
5 D2O 'natural abundance' . . . . . . 10 . . % . . . . c17438_2l96 1
stop_
save_
save_sample_conditions
_Sample_condition_list.Sf_category sample_conditions
_Sample_condition_list.Sf_framecode sample_conditions
_Sample_condition_list.Entry_ID c17438_2l96
_Sample_condition_list.ID 1
_Sample_condition_list.Details .
loop_
_Sample_condition_variable.Type
_Sample_condition_variable.Val
_Sample_condition_variable.Val_err
_Sample_condition_variable.Val_units
_Sample_condition_variable.Entry_ID
_Sample_condition_variable.Sample_condition_list_ID
temperature 310 . K c17438_2l96 1
pH 7 . pH c17438_2l96 1
pressure 1 . atm c17438_2l96 1
'ionic strength' 100 . mM c17438_2l96 1
stop_
save_
save_SPARKY
_Software.Sf_category software
_Software.Sf_framecode SPARKY
_Software.Entry_ID c17438_2l96
_Software.ID 1
_Software.Name SPARKY
_Software.Version 3.113
_Software.Details .
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
Goddard . . c17438_2l96 1
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
'peak picking' c17438_2l96 1
'chemical shift assignment' c17438_2l96 1
stop_
save_
save_ARIA
_Software.Sf_category software
_Software.Sf_framecode ARIA
_Software.Entry_ID c17438_2l96
_Software.ID 2
_Software.Name ARIA
_Software.Version 2.2
_Software.Details .
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
"Linge, O'Donoghue and Nilges" . . c17438_2l96 2
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
'structure solution' c17438_2l96 2
refinement c17438_2l96 2
stop_
save_
save_TOPSPIN
_Software.Sf_category software
_Software.Sf_framecode TOPSPIN
_Software.Entry_ID c17438_2l96
_Software.ID 3
_Software.Name TOPSPIN
_Software.Version 3.0
_Software.Details .
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
'Bruker Biospin' . . c17438_2l96 3
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
collection c17438_2l96 3
processing c17438_2l96 3
stop_
save_
save_ProcheckNMR
_Software.Sf_category software
_Software.Sf_framecode ProcheckNMR
_Software.Entry_ID c17438_2l96
_Software.ID 4
_Software.Name ProcheckNMR
_Software.Version 3.5.4
_Software.Details .
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
'Laskowski and MacArthur' . . c17438_2l96 4
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
'data analysis' c17438_2l96 4
stop_
save_
save_AQUA
_Software.Sf_category software
_Software.Sf_framecode AQUA
_Software.Entry_ID c17438_2l96
_Software.ID 5
_Software.Name AQUA
_Software.Version 3.2
_Software.Details .
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
'Rullmann, Doreleijers and Kaptein' . . c17438_2l96 5
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
'data analysis' c17438_2l96 5
stop_
save_
save_CNSSOLVE
_Software.Sf_category software
_Software.Sf_framecode CNSSOLVE
_Software.Entry_ID c17438_2l96
_Software.ID 6
_Software.Name CNSSOLVE
_Software.Version 1.21
_Software.Details 'Used by aria, so some CNS files were replaced according to the ARIA installation instructions.'
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
'Brunger, Adams, Clore, Gros, Nilges and Read' . . c17438_2l96 6
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
'structure solution' c17438_2l96 6
stop_
save_
save_Python
_Software.Sf_category software
_Software.Sf_framecode Python
_Software.Entry_ID c17438_2l96
_Software.ID 7
_Software.Name Python
_Software.Version 2.6.5
_Software.Details 'in-house developed python scripts to analyse results, details are in the paper.'
loop_
_Vendor.Name
_Vendor.Address
_Vendor.Electronic_address
_Vendor.Entry_ID
_Vendor.Software_ID
'Python Software Foundation' . . c17438_2l96 7
stop_
loop_
_Task.Task
_Task.Entry_ID
_Task.Software_ID
'data analysis' c17438_2l96 7
stop_
save_
save_spectrometer_1
_NMR_spectrometer.Sf_category NMR_spectrometer
_NMR_spectrometer.Sf_framecode spectrometer_1
_NMR_spectrometer.Entry_ID c17438_2l96
_NMR_spectrometer.ID 1
_NMR_spectrometer.Details .
_NMR_spectrometer.Manufacturer Bruker
_NMR_spectrometer.Model Avance
_NMR_spectrometer.Serial_number .
_NMR_spectrometer.Field_strength 500
save_
save_NMR_spectrometer_list
_NMR_spectrometer_list.Sf_category NMR_spectrometer_list
_NMR_spectrometer_list.Sf_framecode NMR_spectrometer_list
_NMR_spectrometer_list.Entry_ID c17438_2l96
_NMR_spectrometer_list.ID 1
loop_
_NMR_spectrometer_view.ID
_NMR_spectrometer_view.Name
_NMR_spectrometer_view.Manufacturer
_NMR_spectrometer_view.Model
_NMR_spectrometer_view.Serial_number
_NMR_spectrometer_view.Field_strength
_NMR_spectrometer_view.Details
_NMR_spectrometer_view.Citation_ID
_NMR_spectrometer_view.Citation_label
_NMR_spectrometer_view.Entry_ID
_NMR_spectrometer_view.NMR_spectrometer_list_ID
1 spectrometer_1 Bruker Avance . 500 Cryoprobe . . c17438_2l96 1
stop_
save_
save_experiment_list
_Experiment_list.Sf_category experiment_list
_Experiment_list.Sf_framecode experiment_list
_Experiment_list.Entry_ID c17438_2l96
_Experiment_list.ID 1
_Experiment_list.Details .
loop_
_Experiment.ID
_Experiment.Name
_Experiment.Raw_data_flag
_Experiment.NMR_spec_expt_ID
_Experiment.NMR_spec_expt_label
_Experiment.MS_expt_ID
_Experiment.MS_expt_label
_Experiment.SAXS_expt_ID
_Experiment.SAXS_expt_label
_Experiment.FRET_expt_ID
_Experiment.FRET_expt_label
_Experiment.EMR_expt_ID
_Experiment.EMR_expt_label
_Experiment.Sample_ID
_Experiment.Sample_label
_Experiment.Sample_state
_Experiment.Sample_volume
_Experiment.Sample_volume_units
_Experiment.Sample_condition_list_ID
_Experiment.Sample_condition_list_label
_Experiment.Sample_spinning_rate
_Experiment.Sample_angle
_Experiment.NMR_tube_type
_Experiment.NMR_spectrometer_ID
_Experiment.NMR_spectrometer_label
_Experiment.NMR_spectrometer_probe_ID
_Experiment.NMR_spectrometer_probe_label
_Experiment.NMR_spectral_processing_ID
_Experiment.NMR_spectral_processing_label
_Experiment.Mass_spectrometer_ID
_Experiment.Mass_spectrometer_label
_Experiment.X_ray_instrument_ID
_Experiment.X_ray_instrument_label
_Experiment.Fluorescence_instrument_ID
_Experiment.Fluorescence_instrument_label
_Experiment.EMR_instrument_ID
_Experiment.EMR_instrument_label
_Experiment.Chromatographic_system_ID
_Experiment.Chromatographic_system_label
_Experiment.Chromatographic_column_ID
_Experiment.Chromatographic_column_label
_Experiment.Entry_ID
_Experiment.Experiment_list_ID
1 '2D 1H-1H TOCSY' no . . . . . . . . . . 1 $sample_1 isotropic . . 1 $sample_conditions . . . 1 $spectrometer_1 . . . . . . . . . . . . . . . . c17438_2l96 1
2 '2D 1H-1H NOESY' no . . . . . . . . . . 1 $sample_1 isotropic . . 1 $sample_conditions . . . 1 $spectrometer_1 . . . . . . . . . . . . . . . . c17438_2l96 1
stop_
save_
save_chemical_shift_reference_1
_Chem_shift_reference.Sf_category chem_shift_reference
_Chem_shift_reference.Sf_framecode chemical_shift_reference_1
_Chem_shift_reference.Entry_ID c17438_2l96
_Chem_shift_reference.ID 1
_Chem_shift_reference.Details .
loop_
_Chem_shift_ref.Atom_type
_Chem_shift_ref.Atom_isotope_number
_Chem_shift_ref.Mol_common_name
_Chem_shift_ref.Atom_group
_Chem_shift_ref.Concentration_val
_Chem_shift_ref.Concentration_units
_Chem_shift_ref.Solvent
_Chem_shift_ref.Rank
_Chem_shift_ref.Chem_shift_units
_Chem_shift_ref.Chem_shift_val
_Chem_shift_ref.Ref_method
_Chem_shift_ref.Ref_type
_Chem_shift_ref.Indirect_shift_ratio
_Chem_shift_ref.External_ref_loc
_Chem_shift_ref.External_ref_sample_geometry
_Chem_shift_ref.External_ref_axis
_Chem_shift_ref.Indirect_shift_ratio_cit_ID
_Chem_shift_ref.Indirect_shift_ratio_cit_label
_Chem_shift_ref.Ref_correction_type
_Chem_shift_ref.Correction_val
_Chem_shift_ref.Correction_val_cit_ID
_Chem_shift_ref.Correction_val_cit_label
_Chem_shift_ref.Entry_ID
_Chem_shift_ref.Chem_shift_reference_ID
H 1 TSP 'methyl carbons' . . . . ppm 0.00 internal direct 1.0 . . . 1 $entry_citation . . 1 $entry_citation c17438_2l96 1
stop_
save_
save_assigned_chem_shift_list_1
_Assigned_chem_shift_list.Sf_category assigned_chemical_shifts
_Assigned_chem_shift_list.Sf_framecode assigned_chem_shift_list_1
_Assigned_chem_shift_list.Entry_ID c17438_2l96
_Assigned_chem_shift_list.ID 1
_Assigned_chem_shift_list.Sample_condition_list_ID 1
_Assigned_chem_shift_list.Sample_condition_list_label $sample_conditions
_Assigned_chem_shift_list.Chem_shift_reference_ID 1
_Assigned_chem_shift_list.Chem_shift_reference_label $chemical_shift_reference_1
_Assigned_chem_shift_list.Chem_shift_1H_err .
_Assigned_chem_shift_list.Chem_shift_13C_err .
_Assigned_chem_shift_list.Chem_shift_15N_err .
_Assigned_chem_shift_list.Chem_shift_31P_err .
_Assigned_chem_shift_list.Chem_shift_2H_err .
_Assigned_chem_shift_list.Chem_shift_19F_err .
_Assigned_chem_shift_list.Error_derivation_method .
_Assigned_chem_shift_list.Details .
_Assigned_chem_shift_list.Text_data_format .
_Assigned_chem_shift_list.Text_data .
loop_
_Chem_shift_experiment.Experiment_ID
_Chem_shift_experiment.Experiment_name
_Chem_shift_experiment.Sample_ID
_Chem_shift_experiment.Sample_label
_Chem_shift_experiment.Sample_state
_Chem_shift_experiment.Entry_ID
_Chem_shift_experiment.Assigned_chem_shift_list_ID
2 '2D 1H-1H NOESY' . . . c17438_2l96 1
stop_
loop_
_Atom_chem_shift.ID
_Atom_chem_shift.Assembly_atom_ID
_Atom_chem_shift.Entity_assembly_ID
_Atom_chem_shift.Entity_ID
_Atom_chem_shift.Comp_index_ID
_Atom_chem_shift.Seq_ID
_Atom_chem_shift.Comp_ID
_Atom_chem_shift.Atom_ID
_Atom_chem_shift.Atom_type
_Atom_chem_shift.Atom_isotope_number
_Atom_chem_shift.Val
_Atom_chem_shift.Val_err
_Atom_chem_shift.Assign_fig_of_merit
_Atom_chem_shift.Ambiguity_code
_Atom_chem_shift.Occupancy
_Atom_chem_shift.Resonance_ID
_Atom_chem_shift.Auth_entity_assembly_ID
_Atom_chem_shift.Auth_asym_ID
_Atom_chem_shift.Auth_seq_ID
_Atom_chem_shift.Auth_comp_ID
_Atom_chem_shift.Auth_atom_ID
_Atom_chem_shift.Details
_Atom_chem_shift.Entry_ID
_Atom_chem_shift.Assigned_chem_shift_list_ID
1 . 1 1 1 1 LYS H H 1 7.543 0.000 . 1 . . . X 1 LYS H . c17438_2l96 1
2 . 1 1 1 1 LYS HA H 1 4.104 0.003 . 1 . . . X 1 LYS HA . c17438_2l96 1
3 . 1 1 2 2 LYS H H 1 8.545 0.001 . 1 . . . X 2 LYS H . c17438_2l96 1
4 . 1 1 2 2 LYS HA H 1 4.353 0.006 . 1 . . . X 2 LYS HA . c17438_2l96 1
5 . 1 1 3 3 LEU H H 1 7.891 0.003 . 1 . . . X 3 LEU H . c17438_2l96 1