index.ts 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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 var 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. (window as any) ['regionDescriptors']['membrane-normal'] as any
  67. );
  68. const membrane: MembraneOrientation = {
  69. planePoint1: Vec3.fromArray(Vec3.zero(), membraneNormal, 0),
  70. planePoint2: Vec3.fromArray(Vec3.zero(), membraneNormal, 0),
  71. // NOTE: centroid is not 0,0,0. It is x,y,0. Right?
  72. centroid: Vec3.fromArray(
  73. Vec3.zero(), [ membraneNormal[0], membraneNormal[1], 0 ], 0
  74. ),
  75. normalVector: membraneNormal,
  76. // TODO: radius is still just a dummy value now.
  77. // Can we send a precalculated value by our backend?
  78. //
  79. // (NOTE: the TMDET extension calculates and sets it during applying preset)
  80. radius: regionDescriptors[ 'radius' ]
  81. };
  82. membrane.planePoint2[2] *= -1;
  83. window.console.debug('before store:', membrane);
  84. localStorage.setItem(MEMBRANE_STORAGE_KEY, JSON.stringify(membrane));
  85. const isBinary = false;
  86. const data = await this.plugin.builders.data.download({
  87. url, label: `UniTMP: ${regionDescriptors['pdb-id']}`, isBinary
  88. }); //, { state: { isGhost: true } });
  89. const trajectory = await this.plugin.builders.structure.parseTrajectory(data, regionDescriptors.format);
  90. // create membrane representation
  91. await this.plugin.builders.structure.hierarchy.applyPreset(
  92. trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
  93. const structure: StateObjectRef<PluginStateObject.Molecule.Structure> =
  94. this.plugin.managers.structure.hierarchy.current.models[0].structures[0].cell;
  95. const components = {
  96. polymer: await this.plugin.builders.structure.tryCreateComponentStatic(structure, 'polymer'),
  97. ligand: await this.plugin.builders.structure.tryCreateComponentStatic(structure, 'ligand'),
  98. water: await this.plugin.builders.structure.tryCreateComponentStatic(structure, 'water'),
  99. };
  100. const builder = this.plugin.builders.structure.representation;
  101. const update = this.plugin.build();
  102. if (components.polymer) builder.buildRepresentation(update, components.polymer, { type: 'cartoon', typeParams: { alpha: 0.5 } }, { tag: 'polymer' });
  103. if (components.ligand) builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick' }, { tag: 'ligand' });
  104. if (components.water) builder.buildRepresentation(update, components.water, { type: 'ball-and-stick', typeParams: { alpha: 0.6 } }, { tag: 'water' });
  105. await update.commit();
  106. regionDescriptors.chains.forEach((chain: any) => {
  107. for(let regionKey in chain.regions) {
  108. const update = this.plugin.build();
  109. const region = chain.regions[regionKey];
  110. let color: Color = Color.fromArray(region.color, 0);
  111. this.applyColor(chain.chain_id, region.auth_ids, update.to(structure), color);
  112. update.commit();
  113. }
  114. });
  115. //
  116. // reset the camera because the membranes render 1st and the structure might not be fully visible
  117. //
  118. requestAnimationFrame(() => this.plugin.canvas3d?.requestCameraReset());
  119. }
  120. private applyColor(chain: string, auth_seq_ids: number[], update: StateBuilder.To<any, any>, color: Color) {
  121. const label: string = `${chain}.${auth_seq_ids.length}`;
  122. const query: Expression = this.getQuery(chain, auth_seq_ids);
  123. // based on https://github.com/molstar/molstar/issues/209
  124. update
  125. .apply(StateTransforms.Model.StructureSelectionFromExpression, { label: label, expression: query })
  126. .apply(StateTransforms.Representation.StructureRepresentation3D, createStructureRepresentationParams(this.plugin, update.selector.data, {
  127. color: 'uniform',
  128. colorParams: { value: color }
  129. }));
  130. }
  131. private getQuery(chainId: string, auth_array: number[]): Expression {
  132. const query: Expression =
  133. MS.struct.generator.atomGroups({
  134. 'residue-test': MS.core.set.has([MS.set( ...auth_array ), MS.ammp('auth_seq_id')]),
  135. 'chain-test': MS.core.rel.eq([chainId, MS.ammp('label_asym_id')])
  136. });
  137. return query;
  138. }
  139. ////////////////////////////// END OF PROTOTYPING SECTION
  140. constructor(elementOrId: string | HTMLElement, options: Partial<ViewerOptions> = {}) {
  141. const o = { ...DefaultViewerOptions, ...options };
  142. const defaultSpec = DefaultPluginUISpec();
  143. const spec: PluginUISpec = {
  144. actions: defaultSpec.actions,
  145. behaviors: [
  146. ...defaultSpec.behaviors,
  147. ...o.extensions.map(e => Extensions[e]),
  148. ],
  149. animations: [...defaultSpec.animations || []],
  150. customParamEditors: defaultSpec.customParamEditors,
  151. layout: {
  152. initial: {
  153. isExpanded: o.layoutIsExpanded,
  154. showControls: o.layoutShowControls,
  155. controlsDisplay: o.layoutControlsDisplay,
  156. regionState: {
  157. bottom: 'full',
  158. left: o.collapseLeftPanel ? 'collapsed' : 'full',
  159. right: 'full',
  160. top: 'full',
  161. }
  162. },
  163. },
  164. components: {
  165. ...defaultSpec.components,
  166. controls: {
  167. ...defaultSpec.components?.controls,
  168. top: o.layoutShowSequence ? undefined : 'none',
  169. bottom: o.layoutShowLog ? undefined : 'none',
  170. left: o.layoutShowLeftPanel ? undefined : 'none',
  171. },
  172. remoteState: o.layoutShowRemoteState ? 'default' : 'none',
  173. },
  174. config: [
  175. [PluginConfig.General.DisableAntialiasing, o.disableAntialiasing],
  176. [PluginConfig.General.PixelScale, o.pixelScale],
  177. [PluginConfig.General.EnableWboit, o.enableWboit],
  178. [PluginConfig.Viewport.ShowExpand, o.viewportShowExpand],
  179. [PluginConfig.Viewport.ShowControls, o.viewportShowControls],
  180. [PluginConfig.Viewport.ShowSettings, o.viewportShowSettings],
  181. [PluginConfig.Viewport.ShowSelectionMode, o.viewportShowSelectionMode],
  182. [PluginConfig.Viewport.ShowAnimation, o.viewportShowAnimation],
  183. [PluginConfig.State.DefaultServer, o.pluginStateServer],
  184. [PluginConfig.State.CurrentServer, o.pluginStateServer],
  185. [PluginConfig.VolumeStreaming.DefaultServer, o.volumeStreamingServer],
  186. [PluginConfig.VolumeStreaming.Enabled, !o.volumeStreamingDisabled],
  187. [PluginConfig.Download.DefaultPdbProvider, o.pdbProvider],
  188. [PluginConfig.Download.DefaultEmdbProvider, o.emdbProvider]
  189. ]
  190. };
  191. const element = typeof elementOrId === 'string'
  192. ? document.getElementById(elementOrId)
  193. : elementOrId;
  194. if (!element) throw new Error(`Could not get element with id '${elementOrId}'`);
  195. this.plugin = createPlugin(element, spec);
  196. }
  197. handleResize() {
  198. this.plugin.layout.events.updated.next();
  199. }
  200. }