PCAViz

0

PCAViz is a tool for displaying molecular dynamics simulations in the browser. To encourage use, an easy-to-install PCAViz-powered WordPress plugin enables “plug-and-play” trajector

Version
Last updated
Active installations
WordPress Version
Tested up to
PHP Version
Rating
Total ratings
This plugin is outdated and might not be supported anymore.

Description

PCAViz is a tool for displaying molecular dynamics simulations in the browser. To encourage use, an easy-to-install PCAViz-powered WordPress plugin enables “plug-and-play” trajectory visualization. The PCAViz download also provides examples showing how to use PCAViz in any webpage.

Examples of Use

The PCAViz WordPress Plugin uses shortcodes that can be inserted into any WordPress post or page.

Major Attributes

  1. If you use the plugin without any attributes, it will allow your site visitors to select from any of the compressed JSON files you’ve uploaded to your WordPress media library. Note that these files must end in .compressed.json to be recognized. [pcaviz]
  2. If you want to show your site visitors a specific simulation present in your media library, simplify specify the name of the simulation. PCAViz will search through your media library and will choose the first JSON file ending in .compressed.json that includes your specified text in its title, URL, or file name. [pcaviz file="larp1"]
  3. You can also control the molecular styles. The WordPress plugin uses 3DMol.js to render molecules. Passing the plugin a 3DMol.js AtomStyleSpec JSON string changes the way the molecules are displayed. [pcaviz visStyle='{"cartoon": {"style": "trace", "color": "grey", "opacity": 0.75}}']

    Note that the 3DMol.js documentation shows AtomStyleSpec examples as JavaScript objects. PCAViz accepts only JSON strings. The two look similar, but with important differences (e.g., keys in JSON strings must always be quoted). We recommend using a JSON validator to check your AtomStyleSpec strings.

Minor Attributes

  1. To explicitly specify the height and width of the viewer, in pixels: [pcaviz height=150 width=150]
  2. To align the viewer to the left, center, or right, and to optionally add a caption: [pcaviz align="right" caption="My molecule in motion!"]
  3. To instead use the caption associated with the .compressed.json file in your media library: [pcaviz mediaLibraryCaption="true"]

    (Note that this option is automatically set to true when no file attribute is specified.)

  4. To hide the playback buttons: [pcaviz playback_buttons="false"]
  5. To prevent the plugin from looping the animation: [pcaviz loop="false"]
  6. The plugin starts playing the simulation automatically by default. To deactivate autoplay: [pcaviz autoplay="false"]
  7. To specify the duration of the animation and how frequently the atomic positions are updated: [pcaviz durationInMilliseconds=10000 updateFreqInMilliseconds=50]
  8. To smooth the animation by averaging the atomic coordinates over multiple frames: [pcaviz windowAverageSize=25]
  9. To control how the plugin caches calculated coordinates: [pcaviz caching="continuous"]

    Acceptable values are “none” (no caching), “continuous” (cache each frame’s coordinates after they are first calculated), and “pre” (calculate and cache all frame coordinates before starting the animation).