index.html 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  6. <link rel="icon" href="./favicon.ico" type="image/x-icon">
  7. <title>Mol* Viewer</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. html, body {
  15. width: 100%;
  16. height: 100%;
  17. overflow: hidden;
  18. }
  19. hr {
  20. margin: 10px;
  21. }
  22. h1, h2, h3, h4, h5 {
  23. margin-top: 5px;
  24. margin-bottom: 3px;
  25. }
  26. button {
  27. padding: 2px;
  28. }
  29. #app {
  30. position: absolute;
  31. left: 100px;
  32. top: 100px;
  33. width: 800px;
  34. height: 600px;
  35. }
  36. </style>
  37. <link rel="stylesheet" type="text/css" href="molstar.css" />
  38. </head>
  39. <body onload="loadPdb()">
  40. <div id="app"></div>
  41. <script type="text/javascript" src="./molstar.js"></script>
  42. <script type="text/javascript">
  43. function getParam(name, regex) {
  44. var r = new RegExp(name + '=' + '(' + regex + ')[&]?', 'i');
  45. return decodeURIComponent(((window.location.search || '').match(r) || [])[1] || '');
  46. }
  47. var debugMode = getParam('debug-mode', '[^&]+').trim() === '1';
  48. if (debugMode) molstar.setDebugMode(debugMode, debugMode);
  49. var viewer = new molstar.Viewer('app', {
  50. layoutShowControls: true,
  51. viewportShowExpand: true,
  52. collapseLeftPanel: false
  53. });
  54. // Set PDB Id here
  55. var regionDescriptors = {"pdb-id":"1afo","creation-date":"2021-09-03","is-transmembrane":1,"membrane-normal":{"x":Math.sin(Math.PI/2)*17.5,"y":0,"z":Math.cos(Math.PI/2)*17.5},"chains":[{"chain_id":"A","type":"alpha","seq":"VQLAHHFSEPEITLIIFGVMAGVIGTILLISYGIRRLIKK","regions":{"1":{"auth_ids":[62,63,64,65,66,67,68,69,70,71,72,73],"color":[255,0,0]},"H":{"auth_ids":[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],"color":[255,255,0]},"2":{"auth_ids":[96,97,98,99,100,101],"color":[0,0,255]}}},{"chain_id":"B","type":"alpha","seq":"VQLAHHFSEPEITLIIFGVMAGVIGTILLISYGIRRLIKK","regions":{"1":{"auth_ids":[62,63,64,65,66,67,68,69,70,71,72,73],"color":[255,0,0]},"H":{"auth_ids":[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],"color":[255,255,0]},"2":{"auth_ids":[100,101],"color":[0,0,255]}}}]};
  56. var pdbtmId = regionDescriptors["pdb-id"];
  57. regionDescriptors.format = 'mmcif'
  58. function loadPdb() {
  59. viewer.loadWithUNITMPMembraneRepresentation(
  60. // NOTE: Prepare CORS settings appropriately on backend
  61. // or made this index.html accessible from the same
  62. // origin (DOMAIN:PORT values).
  63. //`https://DOMAIN[:PORT]/api/pdbtm/${pdbtmId}/trpdb`,
  64. `https://cs.litemol.org/${pdbtmId}/full`,
  65. regionDescriptors
  66. );
  67. }
  68. </script>
  69. </body>
  70. </html>