index.ts 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /**
  2. * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. import { TMDETMembraneOrientation } from '../../extensions/tmdet/behavior';
  8. import { StateTransforms } from '../../mol-plugin-state/transforms';
  9. import { createPlugin } from '../../mol-plugin-ui';
  10. import { PluginUIContext } from '../../mol-plugin-ui/context';
  11. import { PluginLayoutControlsDisplay } from '../../mol-plugin/layout';
  12. import { DefaultPluginUISpec, PluginUISpec } from '../../mol-plugin-ui/spec';
  13. import { PluginConfig } from '../../mol-plugin/config';
  14. import { PluginSpec } from '../../mol-plugin/spec';
  15. import { StateBuilder, StateObjectRef } from '../../mol-state';
  16. import { Color } from '../../mol-util/color';
  17. import '../../mol-util/polyfill';
  18. import { ObjectKeys } from '../../mol-util/type-helpers';
  19. import './embedded.html';
  20. import './favicon.ico';
  21. import './index.html';
  22. import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
  23. import { createStructureRepresentationParams } from '../../mol-plugin-state/helpers/structure-representation-params';
  24. import { Expression } from '../../mol-script/language/expression';
  25. import { PluginStateObject } from '../../mol-plugin-state/objects';
  26. import { MembraneOrientation } from '../../extensions/tmdet/prop';
  27. import { MEMBRANE_STORAGE_KEY } from '../../extensions/tmdet/algorithm';
  28. import { Vec3 } from '../../mol-math/linear-algebra';
  29. require('mol-plugin-ui/skin/light.scss');
  30. export { PLUGIN_VERSION as version } from '../../mol-plugin/version';
  31. export { setDebugMode, setProductionMode } from '../../mol-util/debug';
  32. const Extensions = {
  33. 'tmdet-membrane-orientation': PluginSpec.Behavior(TMDETMembraneOrientation)
  34. };
  35. const DefaultViewerOptions = {
  36. extensions: ObjectKeys(Extensions),
  37. layoutIsExpanded: true,
  38. layoutShowControls: true,
  39. layoutShowRemoteState: true,
  40. layoutControlsDisplay: 'reactive' as PluginLayoutControlsDisplay,
  41. layoutShowSequence: true,
  42. layoutShowLog: true,
  43. layoutShowLeftPanel: true,
  44. collapseLeftPanel: false,
  45. disableAntialiasing: false,
  46. pixelScale: 1,
  47. enableWboit: true,
  48. viewportShowExpand: PluginConfig.Viewport.ShowExpand.defaultValue,
  49. viewportShowControls: PluginConfig.Viewport.ShowControls.defaultValue,
  50. viewportShowSettings: PluginConfig.Viewport.ShowSettings.defaultValue,
  51. viewportShowSelectionMode: PluginConfig.Viewport.ShowSelectionMode.defaultValue,
  52. viewportShowAnimation: PluginConfig.Viewport.ShowAnimation.defaultValue,
  53. pluginStateServer: PluginConfig.State.DefaultServer.defaultValue,
  54. volumeStreamingServer: PluginConfig.VolumeStreaming.DefaultServer.defaultValue,
  55. volumeStreamingDisabled: !PluginConfig.VolumeStreaming.Enabled.defaultValue,
  56. pdbProvider: PluginConfig.Download.DefaultPdbProvider.defaultValue,
  57. emdbProvider: PluginConfig.Download.DefaultEmdbProvider.defaultValue,
  58. };
  59. type ViewerOptions = typeof DefaultViewerOptions;
  60. export let membrane: MembraneOrientation;
  61. export class Viewer {
  62. plugin: PluginUIContext
  63. // //////////////////////////// UNITMP VIEWER PROTOTYPING SECTION
  64. async loadWithUNITMPMembraneRepresentation(url: string, regionDescriptors: any) {
  65. const membraneNormal: Vec3 = Vec3.fromObj(
  66. regionDescriptors['membrane-normal']
  67. );
  68. membraneNormal[0] = membraneNormal[2];
  69. membraneNormal[2] = 0;
  70. console.log('DEBUG-01', membraneNormal);
  71. const membrane: MembraneOrientation = {
  72. planePoint1: Vec3.fromArray(Vec3.zero(), membraneNormal, 0),
  73. planePoint2: Vec3.fromArray(Vec3.zero(), membraneNormal, 0),
  74. centroid: Vec3.fromArray(
  75. Vec3.zero(), [ 0, 0, 0 ], 0
  76. ),
  77. normalVector: membraneNormal,
  78. // (NOTE: the TMDET extension calculates and sets it during applying preset)
  79. radius: regionDescriptors[ 'radius' ]
  80. };
  81. membrane.planePoint2[0] *= -1;
  82. console.log('DEBUG-02', membrane.planePoint2);
  83. localStorage.setItem(MEMBRANE_STORAGE_KEY, JSON.stringify(membrane));
  84. const isBinary = false;
  85. const data = await this.plugin.builders.data.download({
  86. url, label: `UniTMP: ${regionDescriptors['pdb-id']}`, isBinary
  87. }); // , { state: { isGhost: true } });
  88. const trajectory = await this.plugin.builders.structure.parseTrajectory(data, regionDescriptors.format);
  89. // create membrane representation
  90. await this.plugin.builders.structure.hierarchy.applyPreset(
  91. trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
  92. const structure: StateObjectRef<PluginStateObject.Molecule.Structure> =
  93. this.plugin.managers.structure.hierarchy.current.models[0].structures[0].cell;
  94. const components = {
  95. polymer: await this.plugin.builders.structure.tryCreateComponentStatic(structure, 'polymer'),
  96. ligand: await this.plugin.builders.structure.tryCreateComponentStatic(structure, 'ligand'),
  97. water: await this.plugin.builders.structure.tryCreateComponentStatic(structure, 'water'),
  98. };
  99. const builder = this.plugin.builders.structure.representation;
  100. const update = this.plugin.build();
  101. if (components.polymer) builder.buildRepresentation(update, components.polymer, { type: 'cartoon', typeParams: { alpha: 0.5 } }, { tag: 'polymer' });
  102. if (components.ligand) builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick' }, { tag: 'ligand' });
  103. if (components.water) builder.buildRepresentation(update, components.water, { type: 'ball-and-stick', typeParams: { alpha: 0.6 } }, { tag: 'water' });
  104. await update.commit();
  105. regionDescriptors.chains.forEach((chain: any) => {
  106. for(let regionKey in chain.regions) {
  107. const update = this.plugin.build();
  108. const region = chain.regions[regionKey];
  109. this.createRegionRepresentation(chain.chain_id, region, update.to(structure));
  110. update.commit();
  111. }
  112. });
  113. //
  114. // reset the camera because the membranes render 1st and the structure might not be fully visible
  115. //
  116. requestAnimationFrame(() => this.plugin.canvas3d?.requestCameraReset());
  117. }
  118. private createRegionRepresentation(chain: string, region: any, update: StateBuilder.To<any, any>) {
  119. const regionLabel: string = `${chain} | ${region.name}`;
  120. const color: Color = Color.fromArray(region.color, 0);
  121. const query: Expression = this.getQuery(chain, region.auth_ids as number[]);
  122. // based on https://github.com/molstar/molstar/issues/209
  123. update
  124. .apply(StateTransforms.Model.StructureSelectionFromExpression, { label: regionLabel, expression: query })
  125. .apply(StateTransforms.Representation.StructureRepresentation3D, createStructureRepresentationParams(this.plugin, update.selector.data, {
  126. color: 'uniform',
  127. colorParams: { value: color }
  128. }));
  129. }
  130. private getQuery(chainId: string, auth_array: number[]): Expression {
  131. const query: Expression =
  132. MS.struct.generator.atomGroups({
  133. 'residue-test': MS.core.set.has([MS.set( ...auth_array ), MS.ammp('auth_seq_id')]),
  134. 'chain-test': MS.core.rel.eq([chainId, MS.ammp('label_asym_id')])
  135. });
  136. return query;
  137. }
  138. // //////////////////////////// END OF PROTOTYPING SECTION
  139. constructor(elementOrId: string | HTMLElement, options: Partial<ViewerOptions> = {}) {
  140. const o = { ...DefaultViewerOptions, ...options };
  141. const defaultSpec = DefaultPluginUISpec();
  142. const spec: PluginUISpec = {
  143. actions: defaultSpec.actions,
  144. behaviors: [
  145. ...defaultSpec.behaviors,
  146. ...o.extensions.map(e => Extensions[e]),
  147. ],
  148. animations: [...defaultSpec.animations || []],
  149. customParamEditors: defaultSpec.customParamEditors,
  150. layout: {
  151. initial: {
  152. isExpanded: o.layoutIsExpanded,
  153. showControls: o.layoutShowControls,
  154. controlsDisplay: o.layoutControlsDisplay,
  155. regionState: {
  156. bottom: 'full',
  157. left: o.collapseLeftPanel ? 'collapsed' : 'full',
  158. right: 'full',
  159. top: 'full',
  160. }
  161. },
  162. },
  163. components: {
  164. ...defaultSpec.components,
  165. controls: {
  166. ...defaultSpec.components?.controls,
  167. top: o.layoutShowSequence ? undefined : 'none',
  168. bottom: o.layoutShowLog ? undefined : 'none',
  169. left: o.layoutShowLeftPanel ? undefined : 'none',
  170. },
  171. remoteState: o.layoutShowRemoteState ? 'default' : 'none',
  172. },
  173. config: [
  174. [PluginConfig.General.DisableAntialiasing, o.disableAntialiasing],
  175. [PluginConfig.General.PixelScale, o.pixelScale],
  176. [PluginConfig.General.EnableWboit, o.enableWboit],
  177. [PluginConfig.Viewport.ShowExpand, o.viewportShowExpand],
  178. [PluginConfig.Viewport.ShowControls, o.viewportShowControls],
  179. [PluginConfig.Viewport.ShowSettings, o.viewportShowSettings],
  180. [PluginConfig.Viewport.ShowSelectionMode, o.viewportShowSelectionMode],
  181. [PluginConfig.Viewport.ShowAnimation, o.viewportShowAnimation],
  182. [PluginConfig.State.DefaultServer, o.pluginStateServer],
  183. [PluginConfig.State.CurrentServer, o.pluginStateServer],
  184. [PluginConfig.VolumeStreaming.DefaultServer, o.volumeStreamingServer],
  185. [PluginConfig.VolumeStreaming.Enabled, !o.volumeStreamingDisabled],
  186. [PluginConfig.Download.DefaultPdbProvider, o.pdbProvider],
  187. [PluginConfig.Download.DefaultEmdbProvider, o.emdbProvider]
  188. ]
  189. };
  190. const element = typeof elementOrId === 'string'
  191. ? document.getElementById(elementOrId)
  192. : elementOrId;
  193. if (!element) throw new Error(`Could not get element with id '${elementOrId}'`);
  194. this.plugin = createPlugin(element, spec);
  195. }
  196. handleResize() {
  197. this.plugin.layout.events.updated.next();
  198. }
  199. }