RMSDTT: RMSD Trajectory Tool v2.0
The RMSDTT plugin adds support for rmsd calculations and alignment of trajectories to the RMSD Tool plugin. Other feature added include:
- Plotting data via the Multiplot VMD plugin (in all systems), Xmgrace (on unix systems) or MS Excel (on windows).
- Saving data to a file.
- Swapping equivalent atoms (i.e. Glu OE1 and OE2) to reduce RMSD.
- Statistics (average, standard deviation, minima and maxima).
- Multi-line atoms selection with support for comments.
The RMSDTT plugin is now distributed as part of VMD since version 1.8.4 (to be released shortly). Development snapshots of the RMSDTT plugin can be obtained here.
As an example, in the following figure the RMSD of the trace of minimized structure min and trajectories equilibration and md are calculated with the xray structure as reference (top molecule). Statistics for each molecule and totals are shown in the table. In addition a plot was requested (plot not shown). Note how lines can be commented in the atom selection box.
Send a mail to the author if you would like to be informed about new updates of this plugin.
| version 2.01 (24 Apr '06) |
[download] |
Change log:
- Using Average as the reference molecule was not working. Syntax of VMD command measure avpos updated (thanks to Christopher Lanci for reporting this bug).
|
| version 2.0 (3 Apr '06) |
[download] |
Change log:
- Included in VMD 1.8.4.
- Complete rewrite to speed up the calculations, add Multiplot support and redesign the gui.
|
Previous versions can be found here
The RMSDTT plugin v2.0 has been included in the VMD distribution since VMD version 1.8.4. If you have a previous VMD version I recommend you to upgrade. If you still need the RMSDTT plugin in a previous VMD version or if you want to update to a most recent version of the RMSDTT plugin, follow this instructions:
- Download the plugin from here to the directory where you store your VMD plugins.
- Add the following to your .vmdrc startup file (or create one) (for unix the path should be $HOME/.vmdrc, and for windows %USERPROFILE%\vmd.rc):
- For VMD 1.8.4 and up (will be used instead of the RMSDTT plugin version distributed with VMD 1.8.4):
set auto_path [linsert $auto_path 0 {/path/to/your/plugins/directory}]
- For VMD 1.8.3
lappend auto_path {/path/to/your/plugins/directory}
vmd_install_extension rmsdtt rmsdtt_tk_cb "WMC PhysBio/RMSDTT"
- For VMD 1.8.2 and down
lappend auto_path {/path/to/your/plugins/directory}
if { [catch "package require rmsdtt" msg] } {
puts "VMD RMSDTT package could not be loaded:\n$msg"
} elseif { [catch {menu tk register "rmsdtt" rmsdtt} msg] } {
puts "VMD RMSDTT could not be started:\n$msg"
}
Remember to use the correct path to your plugins directory; i.e, if you saved the plugin in /home/user/myplugins, write that same path in the auto_path line.
Note: If you created the .vmdrc file, remember to add menu main on to get the main menu back.
- To be able to use MS Excel on Windows you will need the tcom tcl library. Download the library and install it (i.e. in your plugins directories) (in general, only the tcom/lib/tcom directory is needed). Then add the following to your vmd.rc file:
lappend auto_path {/path/to/tcom/lib/tcom}
if { [catch "package require tcom" msg] } {
puts "VMD tcom package could not be loaded:\n$msg"
}
- Start VMD. The RMSDTT plugin should be accessible from the Extensions menu.
Luis Gracia, PhD
Weill Medical College, Cornell University
1300 York Ave, New York, 10021 NY
Send comments and feedback to Luis Gracia.
|