Difference between revisions of "Borrowed JSmol"

From Jmol
Jump to navigation Jump to search
(Borrowed JSmol)
(Borrowed JSmol)
Line 1: Line 1:
 
This page collects methods for displaying structures in JSmol on the web without actually having control of a web server.
 
This page collects methods for displaying structures in JSmol on the web without actually having control of a web server.
 
== Hosting JSmol pages in a cloud service ==
 
...
 
  
 
== Display using JSmol of structures uploaded to a cloud service ==
 
== Display using JSmol of structures uploaded to a cloud service ==
Line 9: Line 6:
 
* where the file with the molecule or structure is located (your personal file)
 
* where the file with the molecule or structure is located (your personal file)
  
''An idea picked from''
+
:''An idea picked from'' [http://molecularmodelingbasics.blogspot.com.es/2015/11/quick-way-to-share-interactive.html Quick way to share interactive molecular structures and animations] by Jan Jensen (licensed under Creative Commons Attribution 4.0)
[http://molecularmodelingbasics.blogspot.com.es/2015/11/quick-way-to-share-interactive.html Quick way to share interactive molecular structures and animations] by Jan Jensen (licensed under Creative Commons Attribution 4.0)
 
  
 
=== JSmol display ===
 
=== JSmol display ===
Display of the molecular structure in a JSmol panel is achieved via this page:
+
Display of the molecular structure in a JSmol panel is achieved via this page provided by Bob Hanson:
 
  {{StOlaf}}jmol.php
 
  {{StOlaf}}jmol.php
 
with a special syntax in the URL: you must append the <code>?source=</code> token followed by the url of your molecular file (see examples below).
 
with a special syntax in the URL: you must append the <code>?source=</code> token followed by the url of your molecular file (see examples below).
Line 33: Line 29:
 
|}
 
|}
  
''(Thanks to @janhjensen for the tip)''
+
:''(Thanks to @janhjensen for the tip)''
  
 
=== DropBox ===
 
=== DropBox ===
Once your molecular file has been uploaded to Dropbox, you need a trick:
+
Once your molecular file has been uploaded to Dropbox, you need to trick the regular link, of the form
 
 
Change the regular link, of the form
 
  
 
<code>http<span style="color:red">s</span>://www.dropbox.com/s/xxx/file?dl=0</code>  
 
<code>http<span style="color:red">s</span>://www.dropbox.com/s/xxx/file?dl=0</code>  
  
to this form:
+
changing it to this form:
  
 
<code><nowiki>http://dl.dropboxusercontent.com/s/xxx/file</nowiki></code>
 
<code><nowiki>http://dl.dropboxusercontent.com/s/xxx/file</nowiki></code>
Line 57: Line 51:
 
|}
 
|}
  
''(Thanks to @janhjensen and @aminophen for the tip)''
+
:''(Thanks to @janhjensen and @aminophen for the tip)''
  
 
=== Other servers ===
 
=== Other servers ===
 
It may also be possible to use any other web server, as long as you can grab a permanent url that directly points to your file.
 
It may also be possible to use any other web server, as long as you can grab a permanent url that directly points to your file.
  
=== Custom displays via script ==
+
=== Custom displays via script ===
...
+
The idea is to link to a JmolScript file rather than to the molecular file. In this way, you provide a personalized view and rendering, or activate an animation,... without any further instructions for your target colleague to operate JSmol.
 +
 
 +
Remember that the script file must contain a load command that points to the url of the molecular file.
 +
 
 +
Another possible solution is to save a PNG+JMOL file, upload it and then serve that to the StOlaf JSmol.php page. That should preserve the whole state of the model.
 +
 
 +
 
 +
 
 +
 
 +
== Hosting JSmol pages in a cloud service ==
 +
''...pending...''

Revision as of 17:55, 18 December 2015

This page collects methods for displaying structures in JSmol on the web without actually having control of a web server.

Display using JSmol of structures uploaded to a cloud service

There are 2 parts here:

  • where the page that embeds the JSmol object is located (a common resource),
  • where the file with the molecule or structure is located (your personal file)
An idea picked from Quick way to share interactive molecular structures and animations by Jan Jensen (licensed under Creative Commons Attribution 4.0)

JSmol display

Display of the molecular structure in a JSmol panel is achieved via this page provided by Bob Hanson:

https://chemapps.stolaf.edu/jmol/jmol.php

with a special syntax in the URL: you must append the ?source= token followed by the url of your molecular file (see examples below).

The URL may easily be copied and shared by email, Tweet, blog or any other means to whoever you want to show your molecular model to. Since all data are in public servers and the page uses JSmol/html5, it is most likely that ayone can view it on any platform, without installing or learning any software.

If you want to share a customized view of your molecule (not just the default ball & stick rendering), the way to follow is to write a small script file that will load the molecule and then apply any Jmol scripting. Then your link should use the url of that script file rather than the molecular file. See details below.

FigShare

Once your molecular file has been uploaded to figshare, copy the link to it (it may be in any file format that Jmol accepts, like the most common pdb and mol formats). For example:

link to file http://files.figshare.com/1860026/ethen_01oIRC.cml
url for JSmol display https://chemapps.stolaf.edu/jmol/jmol.php?source=http://files.figshare.com/1860026/ethen_01oIRC.cml
(Thanks to @janhjensen for the tip)

DropBox

Once your molecular file has been uploaded to Dropbox, you need to trick the regular link, of the form

https://www.dropbox.com/s/xxx/file?dl=0

changing it to this form:

http://dl.dropboxusercontent.com/s/xxx/file

and then append it to the JSmol url:

link to file https://www.dropbox.com/s/t42dx22mxsioja6/ethen_test.xyz?dl=0
url for JSmol display https://chemapps.stolaf.edu/jmol/jmol.php?source=http://dl.dropboxusercontent.com/s/t42dx22mxsioja6/ethen_test.xyz
(Thanks to @janhjensen and @aminophen for the tip)

Other servers

It may also be possible to use any other web server, as long as you can grab a permanent url that directly points to your file.

Custom displays via script

The idea is to link to a JmolScript file rather than to the molecular file. In this way, you provide a personalized view and rendering, or activate an animation,... without any further instructions for your target colleague to operate JSmol.

Remember that the script file must contain a load command that points to the url of the molecular file.

Another possible solution is to save a PNG+JMOL file, upload it and then serve that to the StOlaf JSmol.php page. That should preserve the whole state of the model.



Hosting JSmol pages in a cloud service

...pending...

Contributors

AngelHerraez