1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
import coot_gui_api
if (have_coot_python):
if coot_gui_api.main_menubar():
add_simple_coot_menu_menuitem(coot_menubar_menu("Ligand"),
"Isolated Molprobity Dots for this Ligand",
lambda func: contact_score_ligand_func())
add_simple_coot_menu_menuitem(coot_menubar_menu("Ligand"),
"Isolated Coot Ligand Dots for this Ligand",
lambda func: coot_contact_dots_ligand_func())
add_simple_coot_menu_menuitem(coot_menubar_menu("Ligand"),
"Coot All-Atom Contact Dots",
lambda func: coot_all_atom_contact_dots_func())
|