JAL-1645 relocate developer info about BioJS MSA templates to jalview/doc.
authorJim Procter <jprocter@issues.jalview.org>
Wed, 9 Sep 2015 17:20:47 +0000 (18:20 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Wed, 9 Sep 2015 17:20:47 +0000 (18:20 +0100)
doc/biojsmsa-templates.html [new file with mode: 0644]
help/html/features/biojsmsa.html

diff --git a/doc/biojsmsa-templates.html b/doc/biojsmsa-templates.html
new file mode 100644 (file)
index 0000000..40e326d
--- /dev/null
@@ -0,0 +1,81 @@
+<html>
+<title>The BioJS MSA Templating System</title>
+<body>
+  <h2>BioJS MSA Templates</h2>
+  <p>The Jalview Desktop uses a template file to embed data when
+    exporting an alignment as a BioJS MSA HTML page. This means it is
+    possible to update Jalview's template with different versions of the
+    BioJS MSA viewer, or even customise the page for your own needs.</p>
+  <p>NOTE: This is an experimental feature new in jalview 2.9 -
+    please get in contact with the developers if you're interested in
+    creating your own templates so we can improve this documentation !</p>
+  <h3>The components of a BioJS template file</h3>
+  <ul>
+    <li>All JavaScripts necessary to render and visualise BioJS
+      data</li>
+    <li>JavaScripts to transform BioJSON data to BioJS MSA data</li>
+    <li>Place holder for BioJSON data (this can be a div or input
+      element as show below): <pre>
+        <code>&lt;div name="seqData" id="seqData" style="display: none;"&gt;#valid BioJSON data#&lt;/div&gt;  OR
+&lt;input type="hidden" id="seqData" name="seqData" value='#valid BioJSON data#'/&gt;
+</code>
+      </pre>
+    </li>
+  </ul>
+
+  The externalised BioJS MSA templates are available in the Github
+  repository
+  <a
+    href="https://github.com/jalview/exporter-templates/tree/master/biojs">https://github.com/jalview/exporter-templates/tree/master/biojs</a>.
+  <br />Jalview processes the
+  <b>package.json</b> file at
+  <a
+    href="https://github.com/jalview/exporter-templates/blob/master/biojs/package.json">https://github.com/jalview/exporter-templates/blob/master/biojs/package.json</a>
+  to work out the available versions of BioJS MSA Viewer templates and
+  the latest release version to use for its exports.
+
+
+  <h2>Creating/Updating a new BioJS MSA Template</h2>
+  The following steps can be taken to create or update a BioJS MSA
+  template
+  <ol>
+    <li>Add/update all BioJS MSA scripts to the template file</li>
+    <li>Add/update codes for transforming BioJSON data to BioJS MSA
+      data (this requires knowledge of both data models)</li>
+    <li>Ensure that the new template created can be employed by
+      Jalview to generate valid BioJS MSA files. This can be achieved by
+      following the steps below to deploy the new export template to a
+      test repository and subsequently configure Jalview to use the test
+      repository for testing the template:
+      <ol type="i">
+        <li>Publish the template along with a valid package.json
+          file to an online repository</li>
+        <li>Configure Jalview preferences to point to the raw URL
+          of package.json in your test repository. This is done by
+          creating/changing the property <b>'biojs_template_git_repo'</b>
+          in the <b>jalview_properties</b> file <br />e.g. <b>biojs_template_git_repo=https://raw.githubusercontent.com/gituser/biojs-templates/package.json</b>
+        </li>
+        <li>Restart Jalview and ensure that the new templates are
+          downloaded</li>
+        <li>Export an alignment to BioJS MSA</li>
+        <li>Check that the exported file is valid and reflects all
+          the incorporated changes</li>
+      </ol>
+    </li>
+    <li>Commit the new template to the official Jalview-BioJS
+      Github template repository <a
+      href="https://github.com/jalview/exporter-templates/tree/master/biojs">https://github.com/jalview/exporter-templates/tree/master/biojs</a>
+    </li>
+    <li>Update the package.json of the official template repository
+      at <a
+      href="https://github.com/jalview/exporter-templates/blob/master/biojs/package.json">https://github.com/jalview/exporter-templates/blob/master/biojs/package.json</a>
+      accordingly
+    </li>
+    <li>Restore value for <b>'biojs_template_git_repo'</b> in
+      jalview_properties to point to the official template repository
+    </li>
+    <li>Repeat steps 3iii to 3v above</li>
+  </ol>
+
+</body>
+</html>
\ No newline at end of file
index 63c6960..ff4d8da 100644 (file)
@@ -1,44 +1,32 @@
 <html>
-<h2>BioJS MSA Viewer</h2>
-
-Since Jalview 2.9, BioJS MSA HTML files can be generated from an alignment within the Jalview desktop application. BioJS MSA Viewer is a JavaScript based multiple sequence alignment visualisation system. Jalview generates BioJS HTML files by parsing a BioJS MSA export template file and embedding BioJSON data from a given alignment on the Jalview desktop application. 
-
-<p>To ensure that the BioJS MSA export mechanism is easily extensible, the export templates are externalised from the Jalview codebase. Consequently, new versions of BioJS MSA Viewer can easily be integrated into Jalview without having to deploy a new version of Jalview.</p>
-
-<h2>What constitutes a BioJS MSA Template</h2>
-<ul>
-<li>All JavaScripts necessary to render and visualise BioJS data</li>
-<li>JavaScripts to transform BioJSON data to BioJS MSA data </li>
-<li>Place holder for BioJSON data (this can be a div or input element as show below):   
-<pre><code>&lt;div name="seqData" id="seqData" style="display: none;"&gt;#valid BioJSON data#&lt;/div&gt;  OR
-&lt;input type="hidden" id="seqData" name="seqData" value='#valid BioJSON data#'/&gt;
-</code></pre></li></ul>
-
-The externalised BioJS MSA templates are available in the Github repository  <a href="https://github.com/jalview/exporter-templates/tree/master/biojs">https://github.com/jalview/exporter-templates/tree/master/biojs</a>. 
-<br/>Jalview processes the <b>package.json</b> file at <a href="https://github.com/jalview/exporter-templates/blob/master/biojs/package.json">https://github.com/jalview/exporter-templates/blob/master/biojs/package.json</a> to work out the available versions of BioJS MSA Viewer templates and the latest release version to use for its exports. 
-
-
-<h2>Creating/Updating a new BioJS MSA Template</h2>
-The following steps can be taken to create or update a BioJS MSA template
-<ol>
-<li>Add/update all BioJS MSA scripts to the template file</li>
-<li>Add/update codes for transforming BioJSON data to BioJS MSA data (this requires knowledge of both data models)</li>
-<li>Ensure that the new template created can be employed by Jalview to generate valid BioJS MSA files. This can be achieved by following the steps below to deploy the new export template to a test repository and subsequently configure Jalview to use the test repository for testing the template:
-    <ol type="i">
-       <li>Publish the template along with a valid package.json file to an online repository</li>
-       <li>Configure Jalview preferences to point to the raw URL of package.json in your test repository. This is done by creating/changing the property <b>'biojs_template_git_repo'</b> in the <b>jalview_properties</b> file <br/>e.g. 
-         <b>biojs_template_git_repo=https://raw.githubusercontent.com/gituser/biojs-templates/package.json</b></li>
-       <li>Restart Jalview and ensure that the new templates are downloaded</li>
-       <li>Export an alignment to BioJS MSA</li>
-       <li>Check that the exported file is valid and reflects all the incorporated changes</li>
-    </ol>
-</li>
-<li>Commit the new template to the official Jalview-BioJS Github template repository <a href="https://github.com/jalview/exporter-templates/tree/master/biojs">https://github.com/jalview/exporter-templates/tree/master/biojs</a></li>
-<li>Update the package.json of the official template repository at <a href="https://github.com/jalview/exporter-templates/blob/master/biojs/package.json">https://github.com/jalview/exporter-templates/blob/master/biojs/package.json</a> accordingly</li>
-<li>Restore  value for <b>'biojs_template_git_repo'</b> in jalview_properties to point to the official template repository</li>
-<li>Repeat steps 3iii to 3v above</li>
-</ol>
-
-<b>Note: </b>
-When Jalview starts up, provided that there is an internet connection, Jalview checks if there are new updates of BioJS MSA template added to the repository and downloads them to a local user directory for subsequent offline use.
+<title>BioJS MSA Viewer Export</title>
+<body>
+  <p>
+    <strong>Exporting Alignments for viewing with the BioJS MSA
+      Viewer</strong>
+  </p>
+  <p>Since Jalview 2.9, HTML files can be generated from an
+    alignment within the Jalview desktop application that show the
+    alignment in an interactive viewer called 'BioJS-MSA'. The BioJS MSA
+    Viewer is a full-featured JavaScript based multiple sequence
+    alignment visualisation system created by a community of biological
+    data visualisation developers, and is developed independently of
+    Jalview.</p>
+  <p>
+    To find out more about the BioJS MSA Viewer, please go to <a
+      href="http://msa.biojs.net/">http://msa.biojs.net/</a>.
+  <p>
+    <strong>Making sure your BioJS MSA exports uses the latest
+      BioJS MSA Viewer</strong>
+  </p>
+  <p>In order to allow Jalview to export data with the latest
+    version of the MSA viewer, the Jalview Desktop will download
+    templates for HTML export from our public GitHub Repository.
+    Normally, this should happen without you needing to do anything, but
+    if you do encounter problems, then please get in contact via the
+    jalview-discuss mailing list, or file a bug report.</p>
+  <p>Templates are downloaded to a directory called
+    '.biojs_templates' in your user's home storage space (e.g.
+    ~/.biojs_templates).</p>
+</body>
 </html>