這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

PCAViz

描述

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).

安裝

You can install the PCAViz WordPress plugin via the official WordPress Plugin Directory. Search for PCAViz. The wordpress.org site provides useful instructions detailing how to install plugins from their directory.

You can also install the plugin using this repository’s pcaviz-wordpress/ directory. Either copy pcaviz-wordpress/ directly to your server’s wp-content/plugins/ directory (instructions), or create a ZIP file of the pcaviz-wordpress/ directory and upload it via your WordPress admin screen (instructions).

常見問題

How can I compress my MD trajectories to use with this plugin?

Download the PCAViz Compressor to compress your trajectories.

評價

There are no reviews for this plugin.

貢獻者及開發者

“PCAViz” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 PCAViz 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

1.0

  • The original version.