forked from pemsley/coot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5520 lines (3664 loc) · 187 KB
/
ChangeLog
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
2018-01-09 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.9
2017-03-13 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.8
2016-11-07 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.7
2016-08-18 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.6
2016-08-08 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.5
2016-07-28 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.4
2016-04-01 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.3
2015-08-27 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.2
2013-12-10 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8.1
2013-05-14 Paul Emsley <pemsley at mrc dash lmb dot ac dot uk>
* Release 0.8
2013-05-14 Paul Emsley <[email protected]>
* Release 0.7.1
2012-09-28 Paul Emsley <[email protected]>
* Release 0.7
2010-01-26 Paul Emsley <[email protected]>
* Release 0.6.1
2009-12-01 Paul Emsley <[email protected]>
* Release 0.6
2008-12-15 Paul Emsley <[email protected]>
* Release 0.5.2, fix silly shift labelling atoms bug.
* Release 0.5.1
2008-09-24 Paul Emsley <[email protected]>
* Release 0.5
2008-01-02 Paul Emsley <[email protected]>
* Release 0.4
2007-07-12 Paul Emsley <[email protected]>
* src/graphics-info.h: add geom_p->add_planar_peptide_restraint()
to graphics_info_t::init().
2007-07-11 Paul Emsley <[email protected]>
* src/globjects.cc: changed smooth_scroll_step to 80 from 8.
2007-06-29 Paul Emsley <[email protected]>
* Release 0.3.2
2007-06-26 Paul Emsley <[email protected]>
* coot-utils/coot-shelx-ins.cc: (make_atom): set the U matrix
correctly. There was a transposition of u12 and u23. Ouch.
2007-06-16 Paul Emsley <[email protected]>
* src/molecule-class-info.cc: (add try/catch mechanism round
file.open_read() in read_ccp4_map()). Fixes a crash on reading a
non-CCP4 map.
2007-06-21 Paul Emsley <emsley@localhost>
* db-main/db-main.cc (clear_results): clear the output fragment
too.
2007-06-18 Paul Emsley <emsley@localhost>
* src/c-interface.cc: Add action view - as a direct view. But,
don't we really instead want to insert such a thing into a set of
views that we already have?
2007-06-17 Paul Emsley <emsley@localhost>
* ligand/wiggly-ligand.cc: turn off debugging for wiggly ligands.
2007-06-07 Paul Emsley <[email protected]>
* coords/Bond_lines.cc: (construct_from_atom_selection): Don't
mark S, SE, CL, BR, or P as bonded.
2007-05-29 Paul Emsley <emsley@localhost>
* src/molecule-class-info-other.cc:
change_chain_id_with_residue_range_helper_insert_or_add() the
target_residue should simply be a residue that will appear in the
pdb file before the inserted residue.
2007-05-18 Paul Emsley <[email protected]>
* src/c-interface.cc: (hardware_stereo_mode): kill off the
SIDE_BY_SIDE_STEREO widget, if it was active.
2007-05-12 Paul Emsley <emsley@localhost>
* src/c-interface-build.cc (get_monomer): check that the library
does not provide the restraints for the given 3-letter-code before
passing to the libcheck function [Judit Debreczeni].
2007-05-04 Paul Emsley <emsley@localhost>
* src/molecule-class-info.cc: (anisotropic_atoms): Add in cholesky
decomposition to the matrix.
2007-05-03 Paul Emsley <emsley@localhost>
* src/graphics-info-modelling.cc: Added
execute_simple_nucleotide_addition() function.
2007-05-01 Paul Emsley <emsley@localhost>
* src/molecule-class-info.cc: Kevin Cowtan provided a patch for
CNS map reading.
2007-04-13 Paul Emsley <emsley@localhost>
* src/pick.cc: Added Segid info to picked atom output info
[Christie Durnham]
2007-04-07 Paul Emsley <[email protected]>
* Release 0.3.1
* enable NCS ghosts. Add fractional matrix for LSQing.
* Release 0.3
2007-03-31 Paul Emsley <[email protected]>
* src/graphics-info.cc: (destroy_edit_backbone_rama_plot): set
edit_phi_psi_plot to null so that it is not left dangling when we
do edit phi/psi the the N-terminal residue, where there is no
Ramachandran plot made. Fixes Richard Baxter bug.
(update_molecule_to): don't call molecule_class_info_t's
update_molecule_to if there are no atoms in the guide point
vector. This stops the creation of a molecule with no atoms in
it, which causes problems because it seems to be closed. Also
this means that the model is not modified without creating a new
atom selection. Fixes Richard Baxter bug.
2007-03-19 Paul Emsley <[email protected]>
* src/cc-interface.hh: Add USE_GUILE protection to
dictionaries_read().
2007-03-06 Paul Emsley <[email protected]>
* src/c-interface-build.cc: (replace_fragment): function added.
2007-03-05 Paul Emsley <[email protected]>
* src/c-interface.h: (zoom_factor) function added.
2007-02-13 Paul Emsley <[email protected]>
* mapview.glade: Fix typo in "No Restraints" window [Steven
Sheriff].
2007-02-10 Paul Emsley <[email protected]>
* configure.in: Changed to version 0.2.1-pre-2 as I manually apply
diffs from Paris.
2007-02-08 Paul Emsley <[email protected]>
* src/callbacks.c: Many functions: change return types from gchar*
to const char * [typically from entries] to compile cleanly with
GTK2.
* src/c-interface-info.cc:
(generic_string_vector_to_list_internal): needs USE_GUILE
protection.
* macros/guile-gtk.m4 (AM_PATH_GUILE_GTK): Use coot_gtk2 to set
the version of libguilegtk-x.y.la for GUILE_GTK_LIBS.
2007-02-07 Paul Emsley <[email protected]>
* src/Makefile.am (INCLUDES): reordered because we want GTK flags
and GUILE flags to come first because they could be in a different
directory - when test building.
* src/molecule-class-info-other.cc: (get_term_type) return
"singleton" as a possible terminal residue type.
* ligand/residue_by_phi_psi.cc: (residue_by_phi_psi) and other
functions: add support for terminus type "singleton". Treat as a
C-terminal addition.
* src/graphics-info-modelling.cc:
(execute_rotate_translate_ready): change the code path to check
for atoms being in the same chain before putting up the GUI and
making an intermediate molecule.
* src/graphics-info-modelling.cc:
(execute_rigid_body_refine): change the code path to check for
atoms being in the same chain before doing rigid body refine. Does
that fix Bob Nolte's bug?
2007-01-30 Paul Emsley <[email protected]>
* ligand/rigid-body.cc: (rigid_body_fit): Assign a (0,0,0)
grad_vec when the occupancy of the atom is 0, otherwise it was
undefined. Fixes crazy alpha helix placement?
2007-01-04 Paul Emsley <[email protected]>
* Release 0.2
2006-12-05 Paul Emsley <[email protected]>
* src/graphics-info-state.cc: (save_state_file) save the map
sampling rate if it not the default.
2006-11-06 Paul Emsley <[email protected]>
* src/c-interface.cc: (dragged_refinement_steps_per_frame): return
the number of steps so that we can save them.
2006-11-02 Paul Emsley <[email protected]>
* src/c-interface-build.cc: (set_show_chi_angle_bond): Add a
redraw so that the new mode of chi angle drawing [typically called
from callbacks.c functions] are made effective [green bond no
longer left behind].
* src/c-interface-preferences.cc:
(save_accept_reject_dialog_window_position): only [dereference and]
save the position if the dialog is not null.
2006-11-03 Paul Emsley <[email protected]>
* src/molecule-class-info.cc: (handle_read_draw_molecule): only
update the bond width if this is NOT a undo.
2006-09-17 Paul Emsley <[email protected]>
* src/graphics-info-modelling.cc: (rot_trans_adjustment_changed):
add in code to check for CA bonds in master molecule and find
bonds appropriately.
* src/molecule-class-info.cc: remove intermediate pair of Cartesians
in draw_skeleton(), suggestion from Ezra Peisach.
2006-08-31 Paul Emsley <[email protected]>
* src/globjects.cc (key_press_event): mark as handled GDK_Meta_L
and GDK_Meta_R [for mac].
2006-08-23 Paul Emsley <[email protected]>
* Release 0.1.2.
2006-08-24 Paul Emsley <[email protected]>
* src/callbacks.c (on_auto_open_mtz_activate): correctly set the
sort_button [fixes random crash maybe].
* ligand/ligand.cc: ligand constructor: Change the default
map_atom_mask_radius to 2.0A.
2006-08-20 Paul Emsley <[email protected]>
* src/c-interface.cc: also c-interface-preferences.cc and
globjects.cc, callback.c and graphics-info-state.cc: Add code to
store, save and restore the position of the ramachandran plot.
2006-08-19 Paul Emsley <[email protected]>
* src/molecule-class-info-ncs.cc: (copy_residue_range): completely
re-written to fix bug noted by Panagis Filippakopoulos.
2006-08-14 Paul Emsley <[email protected]>
* src/c-interface-preferences.cc: (Add functions to save the
position of major widgets).
2006-08-08 Paul Emsley <[email protected]>
* src/globjects.cc: (handle_scroll_event): abstracted from long
glarea_button_press [More of the same please!]. Now scroll_events
[GTK2?] are handled similarly.
2006-08-08 Paul Emsley <[email protected]>
* src/geometry-graphs.cc:
(render_geometry_distortion_blocks_internal): Use sane_occupancy
to convert from shelx occupancies. Stops geometry distortions
going negative.
* src/c-interface.cc: function to set the default bond thickness,
saved/used in save_state_file().
* src/c-interface-build.cc: (on_merge_molecules_check_button_toggled):
Use GPOINTER_TO_INT to type user data. LTE bug.
* src/c-interface-build.cc (execute_refmac): Use GPOINTER_TO_INT
to get user data from active item. LTE bug.
* src/c-interface.cc (on_filename_filter_toggle_button_toggled):
Use GPOINTER_TO_INT to type user data. LTE bug.
* src/graphics-info-modelling.cc: (rot_trans_adjustment_changed):
Use GPOINTER_TO_INT to type user_data. LTE bug.
2006-08-07 Paul Emsley <[email protected]>
* src/graphics-info.cc: (on_change_current_chi_button_clicked):
use GPOINTER_TO_INT to type user data. LTE bug.
(difference_map_peaks_neighbour_peak): user GPOINTER_TO_INT to
type result of gtk_object_get_user_data(). LTE bug.
(rotamer_dialog_neighbour_rotamer): user GPOINTER_TO_INT to type
user_data. LTE bug.
(bonds_colour_rotation_adjustment_changed): use
GPOINTER_TO_INT. LTE bug.
2006-08-04 Paul Emsley <[email protected]>
* src/graphics-info.cc: (float_to_string): Valgrind was
complaining about uninitialized memory. Not sure why. Index the
arrays to 99 instead when zeroing.
* coords/Bond_lines.cc: (construct_from_asc): when outputing UDD
error for atom [it sholdn't happen] index the correct array. Valgrind
2006-08-03 Paul Emsley <[email protected]>
* src/molecule-class-info.cc: (label_atom): only draw the atom
labels if the molecule is being displayed.
* src/geometry-graphs.cc:
(render_geometry_distortion_blocks_internal): Don't do things for
atom index -1 [Not sure why atom index *is* -1 though]. This and
below fixes bug on geometry validation of 1HJ9 [Ulrich Englich].
* ideal/simple-restraint.cc: (distortion_score_plane_internal):
Don't do things for atom index -1.
2006-07-24 Paul Emsley <[email protected]>
* doc/user-manual.texi (masks): mask-map-by-molecule not
mask-map-by-protein.
* src/graphics-info-defines.cc: (check_if_in_pepflip_define): do a
redraw of the graphics after a pepflip.
2006-07-22 Paul Emsley <[email protected]>
* macros/glut.m4 (AM_PATH_GLUT): Add i686-apple-darwin* option.
2006-07-17 Paul Emsley <[email protected]>
* coot-utils/coot-shelx-ins.cc: move the precision setting out of
the format statement [ooops!] - fixes Doug Kuntz bug.
2006-07-28 Paul Emsley <[email protected]>
* build-it: Fix position of test of status of making guile.
* README: Removed the joke at the start of the README. It is
stale and misleading and I am not sure anyone got the joke (the
URL no longer gave a useful page).
2006-06-23 Paul Emsley <[email protected]>
* ligand/find-ligand.cc (main): add wiggly [flexible] ligand option.
* src/molecule-class-info-other.cc: (delete_residue_with_altconf):
when we have a shelxl molecule with just 1 alt conf left, set the
remaining occs to 11.0.
2006-06-16 Paul Emsley <[email protected]>
* coords/Bond_lines.cc: (construct_from_asc): Don't draw unbonded
hydrogens if the we are not drawing hydrogens. Fixed bug of
Donnie B.
2006-06-22 Paul Emsley <[email protected]>
* ligand/ideal-rna.cc: (make_molecule): put the antisense residues
in the chain in reverse order [so that they appear in the pdb file
in increasing order] by using a vector of residues.
2006-06-08 Paul Emsley <emsley@localhost>
* sequence-view/sequence-view.cc: (mol_to_canvas): check that
strand is non-null before doing anything with it. Fixes crash
with 1h5w reported by Roeland Boer [[email protected]].
2007-06-05 Paul Emsley <[email protected]>
* ideal/simple-restraint.cc: (find_link_type): Allow D-peptides as
well as L-peptides.
2006-06-05 Paul Emsley <[email protected]>
* geometry/protein-geometry.cc: (init_standard): use CLIBD_MON if
it is set.
2006-06-04 Paul Emsley <[email protected]>
* src/molecule-class-info-widget-work.cc:
(fill_ncs_control_frame_internal): don't test for display_it_flag
before setting the toggle button. [Actually, that whole frame
should be desensitised according to display_it button state].
2006-05-24 Paul Emsley <[email protected]>
* src/c-interface.h: enable documentation for superpose functions.
2006-05-22 Paul Emsley <[email protected]>
* src/c-interface.cc:
read_phs_and_make_map_using_cell_symm_from_mol renamed to
read_phs_and_make_map_using_cell_symm_from_mol_using_implicit_phs_filename.
read_phs_and_make_map_using_cell_symm_from_previous_mol created.
read_phs_and_make_map_using_cell_symm_from_mol created. So that
putting phs data on the command line will use the given pdb.
command line data handling needs to be call this function.
(add_filename_filter_button): filter button created.
(set_file_selection_pre_filtered): function created. To satisfy
Phil, I think.
* coot-utils/coot-shelx-ins.cc: (write_ins_file): use precision(9)
when outputting coords - stops [unreadable] accidental exponential
output formatting.
* src/c-interface-build.cc: (set_undo_molecule): Allow the setting
of the undo molecule to a molecule that might have 0 selected
atoms [e.g. we have a ligand as a molecule and accidently delete
it]
2006-05-21 Paul Emsley <[email protected]>
* src/c-interface-build.cc: (ideal_nucleic_acid): downcase the
sequence.
2006-05-30 Paul Emsley <[email protected]>
* src/c-interface.cc: (get_text_for_aniso_limit_radius_entry):
don't write over the end of the malloced memory.
2006-05-19 Paul Emsley <[email protected]>
* Release 0.1.1
2006-05-15 Paul Emsley <[email protected]>
* src/c-interface-build.cc:
(save_symmetry_coords_from_fileselection): remove origin pre-shift
from trans of symm atom before writing coords.
2006-05-11 Paul Emsley <[email protected]>
* coords/Bond_lines.cc: (construct_from_asc): Added in cross-bonds
to hydrogens that don't have bonds. Blasted hydrogens will no
longer seem to disappear.
2006-05-10 Paul Emsley <[email protected]>
* src/molecule-class-info.h: ghost_molecule_display_t, cleaned up
usage of display_it_flag [valgrind was complaining [rightly]].
2006-05-09 Paul Emsley <[email protected]>
* src/c-interface.cc: (set_show_unit_cells_all): Check maps too!
[PRE].
* src/callbacks.c (on_unit_cell_no_radiobutton_toggled): unit cell
radio button callbacks added. Now these radio button pair has
immediate effect [PRE].
2006-04-25 Paul Emsley <[email protected]>
* src/molecule-class-info.cc: (add_typed_pointer_atom): Set
attributes correctly for user-typed pointer atom.
2006-04-24 Paul Emsley <[email protected]>
* ligand/Makefile.am: Use libcoot-ligand.la throughout.
2006-04-24 Paul Emsley <[email protected]>
* src/rama_plot.cc: (draw_2_phi_psi_sets_on_canvas): remove bad
shadowing of loop variable. [FR].
* src/molecule-class-info-other.cc: proper syntax for
coot::nomenclature [remove extra qualification] [FR].
* src/molecule-class-info-ncs.cc: make
copy_residue_range_using_from_ncs_master_to_other_using_ghost()
return a value [FR].
2006-04-19 Paul Emsley <[email protected]>
* src/c-interface.cc: (set_graphics_window_size) add
use_graphics_interface_flag protection.
2006-04-17 Paul Emsley <[email protected]>
* src/c-interface-info.cc: (place_text), (remove_text) Added
fuctions. Add 3-d text [the text doesn't rotate, it stays
readable].
* src/c-interface.cc: Created function get_monomer() from the
internals of handle_get_libcheck_monomer_code(). get_monomer()
can be used from the scripting layer.
* src/c-interface.cc (safe-scheme-command). Now returns a value,
SCM, which can be decoded in the calling function. A good thing.
[This means that libguile.h had to be included in c-interface.h].
2006-04-15 Paul Emsley <[email protected]>
* coot-utils/peak-search.hh (coot): remove extra qualification for
find_protein_to_origin_translations() [test compile with 4.1.0].
2006-04-14 Paul Emsley <[email protected]>
* src/molecule-class-info.h: remove molecule_class_info_t from
function declaration for change_chain_id_with_residue_range [DB].
* src/rama_plot.hh: remove coot::rama_plot:: from function
declaration for get_phi_psi [DB].
* coot-utils/coot-map-heavy.hh (ffear_search): remove class
component of function name for
filter_by_distance_to_higher_peak() [also DB].
* coords/Cartesian.h: add proper declaration of friend functions.
Ancient broken code (however did it compile before?)! Compilation
problem spotted Donnie Berkholz.
2006-04-12 Paul Emsley <emsley@localhost>
* src/molecule-class-info-mutate.cc (mutate_base_internal): Allow
Ud and Tr as possible bases from which to mutate.
2006-04-13 Paul Emsley <[email protected]>
* ligand/wiggly-ligand.cc: Added #include for coot-utils.hh, it
seems to be needed in the case where GSL is not defined? Anyway,
no harm in explicitly including it.
2006-04-11 Paul Emsley <[email protected]>
* src/graphics-info-navigation.cc: (fill_go_to_atom_residue_list):
make the 2000 residue item limit change to 20000. Now the widget
behaviour is different, but you can exapand chains past the G
chain [the 2000th residue] individually. This is better, I suppose.
2006-04-11 Paul Emsley <[email protected]>
* src/graphics-info.cc: (apply_undo): Update the ramachandran plot
[if it exists for this molecule].
* coot-utils/coot-utils.cc: (create_directory): moved body of
make_directory_maybe here and changed logic of fstat vs is_dir
tests so that we don't test for a directory before file exists.
2006-04-04 Paul Emsley <[email protected]>
Release 0.1
* src/graphics-info-modelling.cc:
(new_alt_conf_occ_adjustment_changed): Don't change the alt conf
for fully occupied atoms.
2006-04-03 Paul Emsley <[email protected]>
* src/callbacks.c (on_rotate_translate_obj_cancel_button_clicked):
COOT_ROTATE_TRANSLATE_DIALOG remembers where it was put when we
press the Cancel button.
2006-04-01 Paul Emsley <[email protected]>
* src/c-interface-build.cc (delete_residue_range): check the
status of the "Keep Active" dialog before trying to close the
dialog. Bug reported by Bernhard Lohkamp.
2006-03-30 Paul Emsley <[email protected]>
* src/c-interface-waters.cc (renumber_waters): function added
* src/molecule-class-info-other.cc (renumber_waters): function
added.
* src/c-interface.cc: (auto_read_make_and_draw_maps): if "FWT",
"DELFWT" column labels fail, try "2FOFCWT" and "FOFCWT" also.
* src/rama_plot.cc: created function phi_psi_pair_helper_t
make_phi_psi_pair() which is the engine for making phi/psi pairs
from 2 chains. Uses new utility function std::pair<short int,
coot::phi_psi_t> get_phi_psi().
The GUI menu item has been renamed to "Kleywegt Plot" as per
conversation with George Sheldrick.
2006-02-26 Paul Emsley <[email protected]>
* ligand/Makefile.am (test_fffear_in_coot_LDADD): Add coot-compat
to get the correct getopt_long() as suggested by Ezra.
* src/main.cc and cmtz-cinterface.cc: Patch as Ezra suggests
commenting out NLS code.
2005-12-02 Paul Emsley <[email protected]>
* coords/Bond_lines.cc: (do_colour_by_chain_bonds) and
(do_colour_by_molecule_bonds): both now look at the atom element
and draw_hydrogens_flag. Also removed atom selection indexing and
just just atom pointers (which should be propogated to other
functions in this class).
2005-12-01 Paul Emsley <[email protected]>
* src/c-interface.cc: (apply_bond_parameters): remove looking for
the "carbons only" checkbuton.
2005-11-30 Paul Emsley <[email protected]>
* src/molecule-class-info.cc:
(initialize_coordinate_things_on_read_molecule_internal): add
setting of the [initial] bond colour map rotation step and "doit"
flag.
2005-11-12 Paul Emsley <[email protected]>
* src/molecule-class-info.cc: (insert_coords_chage_altconf) and
(insert_coords_atoms_into_residue_internal): Add shelx occupancy.
-1 is used when this is not from a shelx file.
* coot-utils/coot-shelx-ins.cc: Add add_fvar function which added
a free variable and returns the index of the new free variable
* coords/mmdb.cc: (get_atom_selection): added ifdefs for
HAVE_MMDB_IGNORE_HASH. May need to sort this out by hand.
2005-11-11 Paul Emsley <[email protected]>
* src/molecule-class-info-widget-work.cc:
(ncs_control_change_ncs_master_to_chain_update_widget): created.
When we change the NCS master the toggle buttons for the displayed
ghost chains need to change too.
2005-11-10 Paul Emsley <[email protected]>
* src/cmtz-interface.cc: (get_f_phi_columns): use try/catch
mechanism to stop crash on trying to CCP4MTZfile::open_read a cif
file.
2005-11-06 Paul Emsley <[email protected]>
* The move to CCP4 distribution of fftw, cmtz, cmap, mmdb, ssm,
clipper libraries. Substantial changes not documented here.
This diff is 38,000 lines.
mmtz and mmtz-extras have gone. New clipper-based mtz looking
routine added (cmtz-interface.cc).
Crystal and dataset info now appear in the mtz column chooser and
this had to be accounted for, so much splitting and recombining of
strings (new functions added).
macros updates to match ccp4 placing of include files.
The autobuilder is updated.
2005-11-05 Paul Emsley <[email protected]>
* geometry/protein-geometry-mmdb.cc (comp_atom_pad_atom_name): I
was getting the atom name wrong for "CCB" with element "C", so now
a check is made to see if first letter is the element name.
2005-10-31 Paul Emsley <[email protected]>
* macros/with-guile.m4, macros/with-python.m4: applied Ezra's
patch to use AM_CONDITIONAL to get to the wrapped guile interface.
2005-10-30 Paul Emsley <[email protected]>
* src/c-interface.cc: (handle_read_draw_molecule_with_recentre):
add statusbar text when the molecule fails to read.
2005-10-29 Paul Emsley <[email protected]>
* src/globjects.cc (key_press_event): add call to new scheme
function graphics-general-key-press-hook for as yet undefined
keys [Bryan Lepore].
2005-10-19 Paul Emsley <emsley@localhost>
* src/c-interface.cc: (another_level_from_map_molecule_number):
only try to mess with the contor levels of molecule istat if istat
is not an error [-1, e.g. from map, not mtz file]. Fixes
another-level crash.
2005-10-18 Paul Emsley <emsley@localhost>
* coot-utils/coot-fffear.cc: file created. For fffear class,
moved out of coot-map-heavy.cc
* coot-utils/coot-coord-utils.cc (pad_atom_name): copied from
geometry class. Should rationalize at some stage.
* coot-utils/coot-shelx-ins.cc: (make_atom_name): new version
which uses atom element and calls new util function
pad_atom_name().
2005-10-16 Paul Emsley <[email protected]>
* src/graphics-info.cc: (drag_refine_refine_intermediate_atoms):
created. Function for Frank von Delft.
* src/globjects.cc: (glarea_motion_notify): if dragged refinement
intermediate refinement set then refine intermediate atoms.
* src/molecule-class-info-other.cc: (add_OXT_to_residue): instead
of finding total 4 atoms, check that each of them has been
found. Now we can add OXT to residues with an alt conf.
2005-10-04 Paul Emsley <[email protected]>
* src/graphics-info-pick.cc
(rotate_intermediate_atoms_round_screen_x): function created.
Called by rotate_intermediate_atoms_maybe().
* src/globjects.cc: (glarea_motion_notify):
rotate_intermediate_atoms_maybe() now has axis argument and uses y
diff for rotation round the screen X axis.
2005-09-23 Paul Emsley <[email protected]>
* src/graphics-info-state.cc: (save-state_command): If
contoured_by_sigma_p() I meant to push back command strings, not
display strings. Fixes saving contour state issue for Bob Nolte.
* src/graphics-info-graphs.cc: (rotamers_from_mol): use dunbrack
constructor that adds extra PHE/TYR.
2005-09-20 Paul Emsley <[email protected]>
* coot-utils/peak-search.cc: (get_peaks): don't move the negative
cluster centres to local peak.
* ligand/ligand.cc: (fit_ligand_to_cluster): Try each orientation
eigen. Changed [created a version with extra args of the eigen
ori] of transform_ligand_atom() and fit_ligand_copy().
(calculate_cluster_centres_and_eigens): After sorting the eigen
values, check the matrix determinant. If negative, swap axes 2
and 3. No longer inverts [chiral] ligands.
* coot-utils/peak-search.cc: (get_peaks): Don't used
move_grid_to_peak on cluster centres of negative peaks.
2005-09-19 Paul Emsley <[email protected]>
* coords/Bond_lines.cc: (handle_MET_or_MSE_case): Add alt conf
testing to bonds. Also changed CYS case.
* ligand/ligand-extras.cc: (fit_water_internal): major rewrite.
Now uses list for clusters rather than vector. We only calculate
clusters once. Sphericity test has been removed.
2005-09-16 Paul Emsley <[email protected]>
* ideal/simple-restraint.cc: (make_link_restraints): test for
neighbouring residues [by residue seq number]. Fixes problem of
refining next to residue with all atoms in alt confs.
* src/molecule-class-info-other.cc:
(do_180_degree_side_chain_flip): make the alt conf work by using a
residue copy.
2005-09-15 Paul Emsley <[email protected]>
* geometry/protein-geometry.cc: (try_dynamic_add): Add in logic to
try to find "XXX-b-D.cif" or "XXX-a-L.cif"
* ideal/simple-restraint.cc: (find_link_type): override the return
value of find_glycosidic_linkage_type() until
find_glycosidic_linkage_type() returns sensible result. Fixing
flying carbohydrate.
2005-09-12 Paul Emsley <[email protected]>
* src/molecule-class-info-other.cc: (make_ball_and_stick): put the
glMaterialfv() call for specular inside the bond loop to colour
for bond type and comment out GL_AMBIENT_AND_DIFFUSE and
GL_EMISSION [no idea why they were there - not clear thinking...].
Ball and stick looks good now. I need to be able to remove the
object at some stage.
2005-09-11 Paul Emsley <[email protected]>
* src/graphics-info-defines.cc:
(other_modelling_tools_toggle_button_name_list): correct name of
cis/trans button.
* ligand/residue_by_phi_psi.cc: extract function
build_C_terminal_ALA() and build_N_terminal_ALA() out of
residue_by_phi_psi class [from
construct_prev_res_from_rama_angles() and
construct_next_res_from_rama_angles()].
* ligand/helix-placement.cc: (build_on_N_end, build_on_C_end,
trim_end, build_N_terminal_ALA, build_C_terminal_ALA): created to
extend or trim the placed helix.
* src/graphics-info-render.cc: (povray): Move the eye back.
(povray_molecule): change the scale of the rendered objects to 1.0.
2005-09-08 Paul Emsley <[email protected]>
* mini-mol/mini-mol.cc: add occupancy characteristic to a minimol
atom. Update pdb reading and writing.
* ligand/ligand.cc: (get_rigid_body_angle_components): The scaling
of the gradients to [angle] steps was too high, leading to
overstepping the minimum and therefore oscillations. 0.03 changed
to 0.01. Resulting in more rapid and more robust rigid body
refinement now.
2005-09-06 Paul Emsley <[email protected]>
* ligand/find-ligand.cc (main): corrected usage text.
2005-09-05 Paul Emsley <[email protected]>
* src/c-interface.cc: (parse_ccp4i_defs): line length limit was
100 chars on read. How *could* I have been so short-sighted?
expanded to 1000. Fixes crash reported by Lari Lehtiö I hope.
2005-09-02 Paul Emsley <[email protected]>
* src/molecule-class-info-other.cc:
(change_chain_id_with_residue_range): Fix crash reported by GSK's
Nino: ie. crash when Change Chain ID residue range to a chain id
that already exists [nresidues -> to_chain_nresidues].
2005-09-01 Paul Emsley <[email protected]>
* src/callbacks.c (on_raster3d1_activate): and friends. Added
default filename.
* ccp4mg-utils/Makefile.am: Clean up Makefile.am [remove the fink
hardcoding of CXXFLAGS for png]. PNG is not available then.
* src/graphics-info.cc: (update_residue_by_chi_change): update
chi_ang.change_by() to use pointer to Geom.
* src/c-interface-ligands.cc: (execute_ligand_search): update
install_simple_wiggly_ligands call to pass the pointer to Geom.
* geometry/protein-geometry.cc:
(get_monomer_torsions_from_geometry): now we have dynamic add,
this function is not const.
2005-08-31 Paul Emsley <[email protected]>
* src/callbacks.c (on_screendump_image_ok_button_clicked):
Created. Call the image creation functions according to
fileselection type.
* src/c-interface.cc: (make_image_raster3d) and
(make_image_povray) functions created to be used by new Snapshot
menu items.
* coot-utils/coot-shelx-ins.cc: (make_atom): abstracted out to
make the keyword conditions a bit more readable. Fixed read of
isotropic B factor and keep HKL card for output. As per GMS
instructions.
(write_ins_file): use function remove_leading_spaces for the atom
names.
* coot-utils/coot-utils.cc: (remove_leading_spaces): function
created [used for shelx output atom names].
* src/graphics-info-defines.cc
(check_if_in_reverse_direction_define): Created for new button on
other modelling tools menu. (setup_reverse_direction) created too
in c-interface-build.cc
2005-08-29 Paul Emsley <[email protected]>
* geometry/protein-geometry.cc:
(get_monomer_torsions_from_geometry): try_dynamic_add was not
being used if the monomer_type was not found in the list. It is
now. This needs to be passed read_number.
* src/graphics-info.cc: (set_transient_and_position): a copy of
the c-interface.cc's function - so that widgets created from
inside graphics-info.cc can be transiented and positioned
[e.g. chi angles and rotamers]. Needed the creation of
(positioned-widgets.h) which is included by c-interface.cc,
callbacks.c and graphics-info.cc.
* high-res/high-res.cc: (buccafilter): removed the
fragment-sort-by-length.
2005-08-25 Paul Emsley <[email protected]>
* analysis/bfkurt.cc: Tidied up with unsigning the for loop ints.
Also pass extra flag to write_table that allows the output of
every residue, not just the questionables.
* src/molecule-class-info.cc: (mutate): 5364 uncommented and
repositioned the DeleteSelection(). Or it should be. check me.
2005-08-23 Paul Emsley <[email protected]>
* doc/user-manual.texi (SHELX .ins/.res files): section created.
* coot-utils/coot-shelx-ins.cc: (debug) added.
* src/molecule-class-info-other.cc:
(reverse_direction_of_fragment): Given a residue spec, find the
fragment that that residue was in and reverse the direction of
that fragment leaving only CAs.
* src/c-interface-build.cc: (fill_partial_residues): function
created. Uses the new missing_atoms() function.
* src/molecule-class-info-other.cc (missing_atoms): created. Do a
check against the atom names in the dictionary and return a class
that contains a vector of CResidue *s of atoms that don't have all
their atoms.
* coot-utils/coot-coord-extras.hh: Added missing atom helper classes.
* src/graphics-info-pick.cc: (symmetry_atom_pick): Kevin inserted
some throw/catch code here on the setting of the space group name.
Also, construct the space group from the symops, not the space
group name.
* coords/Bond_lines.cc: (handle_MSE_case) changed considerably.
Also handled here now are CYS and MET. The normal construct bond
length limit has been reduced to 1.7A [whcih left Sulfur bonds
which this routine deals with].
* coot-utils/coot-shelx-ins.cc: (symm_card_composition_t): correct
the indexing of the ele array to set the symmetry card correctly
[rather than totally mis-indexed, as it had been].
* src/graphics-info-defines.cc:
(check_if_in_180_degree_flip_define): created and extensive
changes. Ligand fitting was moved out of the model/fit/refine
dialog and the 180 degree flip moved in. A mol is created from
the residue, so that we can call update_geometry_graphs [which has
presumed an intermediate atom molecule], so that 180 degree flips
can upate the rotamer graph. A chi_angles function
rotate_chi2_180() was created.
* src/c-interface.cc: (handle_read_draw_molecule_with_recentre):
rather than use the shelx split in get_atom_selection(), where a
normal atom_sel is returned [and the ShelxIns is lost], we call
read_shelx_ins_file directly and molecule_class_info_t keeps the