ViewDock: Difference between revisions
Jump to navigation
Jump to search
m (updated code) |
|||
Line 3: | Line 3: | ||
== Keyboard shortcuts == | == Keyboard shortcuts == | ||
Using ViewDock requires a fair amount of clicking and mouse movement. To reduce these you can use this [https://www.cgl.ucsf.edu/chimera/current/docs/ContributedSoftware/accelerators/accelerators.html#adding Chimera accelerators script], written by Tom Goddard ([http://plato.cgl.ucsf.edu/pipermail/chimera-users/2020-March/016642.html | Using ViewDock requires a fair amount of clicking and mouse movement. To reduce these you can use this [https://www.cgl.ucsf.edu/chimera/current/docs/ContributedSoftware/accelerators/accelerators.html#adding Chimera accelerators script], written by Tom Goddard ([http://plato.cgl.ucsf.edu/pipermail/chimera-users/2020-March/016642.html Chimera user list discussion]): | ||
def register_accelerators(): | def register_accelerators(): | ||
Line 65: | Line 65: | ||
Accelerators "cv" (Viable), "cd" (Delete), "cx" (Purge), work like clicking the radio buttons in the ViewDock dialog box - they change the status of the selected compound. Accelerators "cn" and "cp" | Accelerators "cv" (Viable), "cd" (Delete), "cx" (Purge), work like clicking the radio buttons in the ViewDock dialog box - they change the status of the selected compound. Accelerators "cn" and "cp" | ||
== ChimeraX/ViewDockX == | |||
There is an equivalent tool [https://www.cgl.ucsf.edu/chimerax/docs/user/tools/viewdockx.html ViewDockX] in the next generation visualisation tool [https://www.cgl.ucsf.edu/chimerax/ ChimeraX]. |
Revision as of 13:53, 30 March 2020
ViewDock is a UCSF Chimera extension for viewing outputs from several docking software packages. There is a tutorial on the Chimera web pages.
Keyboard shortcuts
Using ViewDock requires a fair amount of clicking and mouse movement. To reduce these you can use this Chimera accelerators script, written by Tom Goddard (Chimera user list discussion):
def register_accelerators(): from Accelerators import standard_accelerators standard_accelerators.register_accelerators() from Accelerators import add_accelerator add_accelerator('cd', 'Mark current View Dock compound deleted', vdock_delete) add_accelerator('cx', 'Mark current View Dock compound purged', vdock_purged) add_accelerator('cv', 'Mark current View Dock compound viable', vdock_viable) add_accelerator('cn', 'Move to next View Dock compound', vdock_next) add_accelerator('cp', 'Move to next View Dock compound', vdock_previous) def vdock_delete(): from ViewDock.Compound import Compound vdock_set_state(Compound.Deleted) def vdock_purged(): from ViewDock.Compound import Compound vdock_set_state(Compound.Purged) def vdock_viable(): from ViewDock.Compound import Compound vdock_set_state(Compound.Viable) def vdock_set_state(state): vd = vdock_dialog() if vd: vd.results.setSelectedState(state) vd._reloadCompounds() def vdock_next(): vdock_step(1) def vdock_previous(): vdock_step(-1) def vdock_step(step): vd = vdock_dialog() if vd: r = vd.results csel = r.selected if csel: c = csel[0] clist = r.compoundList i = clist.index(c) if i+step < len(clist) and i+step >= 0: nextc = clist[i+step] vd.results.setSelected([nextc]) def vdock_dialog(): from ViewDock import ViewDock from chimera import extension for vd in extension.manager.instances: if isinstance(vd, ViewDock): return vd return None
To use, enable Chimera keyboard shortcuts and load the new file.
Accelerators "cv" (Viable), "cd" (Delete), "cx" (Purge), work like clicking the radio buttons in the ViewDock dialog box - they change the status of the selected compound. Accelerators "cn" and "cp"
ChimeraX/ViewDockX
There is an equivalent tool ViewDockX in the next generation visualisation tool ChimeraX.