File: coot_sharpen_blur.py

package info (click to toggle)
coot 1.1.18%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 220,004 kB
  • sloc: cpp: 495,934; python: 35,043; ansic: 26,143; lisp: 22,768; sh: 13,186; makefile: 2,746; awk: 441; xml: 245; csh: 14
file content (134 lines) | stat: -rw-r--r-- 5,335 bytes parent folder | download | duplicates (2)
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

import coot
import gi
gi.require_version('Gtk', '4.0')
import coot_gui
from gi.repository import Gtk

def sharpen_blur_map_gui():

    def on_ok_button_clicked(button, combobox, check_button_for_resample, check_button_for_refinement_map, entry_for_blur, entry_for_resample, window):
        tree_iter = combobox.get_active_iter()
        if tree_iter is not None:
            model = combobox.get_model()
            it = model[tree_iter]
            imol_map = it[0]
            state_1 = check_button_for_resample.get_active()
            state_2 = check_button_for_refinement_map.get_active()
            print("state_1", state_1)
            print("state_2", state_2)
            imol_new = -1
            t1 = entry_for_blur.get_text()
            blur_factor = float(t1)
            if state_1:
                t2 = entry_for_resample.get_text()
                resample_factor = float(t2)
                coot.sharpen_blur_map_with_resampling_threaded_version(imol_map, blur_factor, resample_factor)
            else:
                imol_new = coot.sharpen_blur_map(imol_map, blur_factor)
            if state_2:
                print("set_imol_refinement_map() with ", imol_new)
                coot.set_imol_refinement_map(imol_new)

        window.destroy()

    def on_check_button_toggled(check_button, entry_2, label_2):
        print("toggled", check_button)
        if check_button.get_active():
            entry_2.set_sensitive(True)
            label_2.set_sensitive(True)
        else:
            entry_2.set_sensitive(False)
            label_2.set_sensitive(False)

    chooser_label = "Map for Sharpen/Blur"
    entry_hint_text_1 =  "Sharpen/Blur:"

    window = Gtk.Window()
    entry_hint_text_2 = "Factor:"
    default_entry_1_text = "20"
    default_entry_2_text = "1.3"

    label = Gtk.Label(label=chooser_label)
    vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL,spacing=10)
    vbox.set_margin_top(10)
    vbox.set_margin_bottom(10)
    vbox.set_margin_start(10)
    vbox.set_margin_end(10)
    hbox_for_sharpen  = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
    hbox_for_resample = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
    entry_1 = Gtk.Entry()
    entry_1.set_halign(Gtk.Align.END)
    entry_1.set_hexpand(True)
    entry_2 = Gtk.Entry()
    entry_2.set_halign(Gtk.Align.END)
    entry_2.set_hexpand(True)
    entry_label_1 = Gtk.Label(label=entry_hint_text_1)
    entry_label_2 = Gtk.Label(label=entry_hint_text_2)
    hbox_buttons = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL,spacing=5)
    hbox_buttons.set_halign(Gtk.Align.END)
    hbox_buttons.set_homogeneous(True)
    # combobox = Gtk.combo_box_new_text()
    ok_button    = Gtk.Button(label="Make Map")
    cancel_button = Gtk.Button(label="Close")
    h_sep = Gtk.Separator(orientation=Gtk.Orientation.HORIZONTAL)
    # map_mol_list = fill_option_menu_with_map_mol_options(combobox)
    # map_mol_list = fill_option_menu_with_map_mol_options(combobox)
    combobox_items = coot_gui.make_store_for_map_molecule_combobox()
    combobox = Gtk.ComboBox.new_with_model(combobox_items)
    renderer_text = Gtk.CellRendererText()
    if len(combobox_items) > 0:
        combobox.set_active(0)
    combobox.set_entry_text_column(1)
    combobox.pack_start(renderer_text, True)
    combobox.add_attribute(renderer_text, "text", 1)

    # combobox.connect("changed", on_mol_combobox_changed)
    check_button_for_resample = Gtk.CheckButton(label="Resample")
    check_button_for_refinement_map = Gtk.CheckButton(label="Make the new map the Refinement Map")

    window.set_title("Coot: Sharpen/Blur Map")
    window.set_default_size(400, 100)
    window.set_child(vbox)

    vbox.append(label)
    vbox.append(combobox)
    vbox.append(hbox_for_sharpen)
    vbox.append(hbox_for_resample)
    vbox.append(check_button_for_refinement_map)
    vbox.append(h_sep)
    vbox.append(hbox_buttons)

    hbox_for_sharpen.append(entry_label_1)
    hbox_for_sharpen.append(entry_1)
    hbox_for_resample.append(check_button_for_resample)
    hbox_for_resample.append(entry_label_2)
    hbox_for_resample.append(entry_2)
    hbox_buttons.append(ok_button)
    hbox_buttons.append(cancel_button)
    entry_1.set_size_request(52, -1)
    entry_2.set_size_request(52, -1)
    entry_1.set_text(default_entry_1_text)
    entry_2.set_text(default_entry_2_text)

    check_button_for_refinement_map.set_active(True)
    entry_label_2.set_sensitive(False)
    entry_2.set_sensitive(False)

    cancel_button.connect("clicked", lambda button: window.destroy())
    # ok_button.connect("clicked", on_ok_button_clicked, combobox, map_mol_list,
    # entry_1, entry_2, check_button, check_button_for_refinement_map, window)

    ok_button.connect("clicked", on_ok_button_clicked, combobox, check_button_for_resample, check_button_for_refinement_map, entry_1, entry_2, window)

    check_button_for_resample.connect("toggled", on_check_button_toggled, entry_2, entry_label_2)
                                                  
    window.show()

if False:
    if True:
        if coot_gui_api.main_menubar():
            menu = coot_gui.coot_menubar_menu("Cryo-EM")
            if menu:
                coot_gui.add_simple_coot_menu_menuitem(menu, "Sharpen/Blur Map",
                                              lambda func: sharpen_blur_map_gui())