behavior.ts 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /**
  2. * Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. * @author Sebastian Bittrich <sebastian.bittrich@rcsb.org>
  6. */
  7. import { ParamDefinition as PD } from '../../mol-util/param-definition';
  8. import { StructureRepresentationPresetProvider, PresetStructureRepresentations } from '../../mol-plugin-state/builder/structure/representation-preset';
  9. import { StateObject, StateObjectRef, StateObjectCell, StateTransformer, StateTransform } from '../../mol-state';
  10. import { Task } from '../../mol-task';
  11. import { PluginBehavior } from '../../mol-plugin/behavior';
  12. import { PluginStateObject, PluginStateTransform } from '../../mol-plugin-state/objects';
  13. import { PluginContext } from '../../mol-plugin/context';
  14. import { DefaultQueryRuntimeTable } from '../../mol-script/runtime/query/compiler';
  15. import { StructureSelectionQuery, StructureSelectionCategory } from '../../mol-plugin-state/helpers/structure-selection-query';
  16. import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
  17. import { GenericRepresentationRef } from '../../mol-plugin-state/manager/structure/hierarchy-state';
  18. import { PluginUIContext } from '../../mol-plugin-ui/context';
  19. // TMDET imports
  20. import { MembraneOrientationRepresentationProvider, MembraneOrientationParams, MembraneOrientationRepresentation } from './representation';
  21. import { MembraneOrientationProvider, MembraneOrientation, TmDetDescriptorCache } from './prop';
  22. import { applyTransformations, createMembraneOrientation } from './transformation';
  23. import { ComponentsType, PDBTMDescriptor, PMS } from './types';
  24. import { registerTmDetSymmetry } from './symmetry';
  25. import { LabeledResidues } from './labeling';
  26. import { TmDetColorThemeProvider } from './tmdet-color-theme';
  27. import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
  28. const Tag = MembraneOrientation.Tag;
  29. const TMDET_MEMBRANE_ORIENTATION = 'Membrane Orientation';
  30. export const TMDETMembraneOrientation = PluginBehavior.create<{ autoAttach: boolean }>({
  31. name: 'tmdet-membrane-orientation-prop',
  32. category: 'custom-props',
  33. display: {
  34. name: TMDET_MEMBRANE_ORIENTATION,
  35. description: 'Data calculated with TMDET algorithm.'
  36. },
  37. ctor: class extends PluginBehavior.Handler<{ autoAttach: boolean }> {
  38. private provider = MembraneOrientationProvider
  39. register(): void {
  40. DefaultQueryRuntimeTable.addCustomProp(this.provider.descriptor);
  41. this.ctx.customStructureProperties.register(this.provider, this.params.autoAttach);
  42. this.ctx.representation.structure.registry.add(MembraneOrientationRepresentationProvider);
  43. this.ctx.query.structure.registry.add(isTransmembrane);
  44. this.ctx.representation.structure.themes.colorThemeRegistry.add(TmDetColorThemeProvider);
  45. this.ctx.managers.lociLabels.addProvider(LabeledResidues.labelProvider!);
  46. this.ctx.customModelProperties.register(LabeledResidues.propertyProvider, true);
  47. this.ctx.genericRepresentationControls.set(Tag.Representation, selection => {
  48. const refs: GenericRepresentationRef[] = [];
  49. selection.structures.forEach(structure => {
  50. const memRepr = structure.genericRepresentations?.filter(r => r.cell.transform.transformer.id === MembraneOrientation3D.id)[0];
  51. if (memRepr) refs.push(memRepr);
  52. });
  53. return [refs, 'Membrane Orientation'];
  54. });
  55. this.ctx.builders.structure.representation.registerPreset(MembraneOrientationPreset);
  56. }
  57. update(p: { autoAttach: boolean }) {
  58. let updated = this.params.autoAttach !== p.autoAttach;
  59. this.params.autoAttach = p.autoAttach;
  60. this.ctx.customStructureProperties.setDefaultAutoAttach(this.provider.descriptor.name, this.params.autoAttach);
  61. return updated;
  62. }
  63. unregister() {
  64. DefaultQueryRuntimeTable.removeCustomProp(this.provider.descriptor);
  65. this.ctx.customStructureProperties.unregister(this.provider.descriptor.name);
  66. this.ctx.representation.structure.registry.remove(MembraneOrientationRepresentationProvider);
  67. this.ctx.query.structure.registry.remove(isTransmembrane);
  68. this.ctx.genericRepresentationControls.delete(Tag.Representation);
  69. this.ctx.builders.structure.representation.unregisterPreset(MembraneOrientationPreset);
  70. }
  71. },
  72. params: () => ({
  73. autoAttach: PD.Boolean(false)
  74. })
  75. });
  76. //
  77. export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Membrane', MS.struct.modifier.union([
  78. MS.struct.modifier.wholeResidues([
  79. MS.struct.modifier.union([
  80. MS.struct.generator.atomGroups({
  81. 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
  82. 'atom-test': MembraneOrientation.symbols.isTransmembrane.symbol(),
  83. })
  84. ])
  85. ])
  86. ]), {
  87. description: 'Select residues that are embedded between the membrane layers.',
  88. category: StructureSelectionCategory.Residue,
  89. ensureCustomProperties: (ctx, structure) => {
  90. return MembraneOrientationProvider.attach(ctx, structure);
  91. }
  92. });
  93. //
  94. // //////////////////////////// TMDET VIEWER FUNCTIONS
  95. //
  96. export let membraneOrientation: MembraneOrientation;
  97. export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
  98. storeCameraSnapshot(plugin); // store if it is not stored yet
  99. loadInitialSnapshot(plugin); // load if there is a stored one
  100. setTimeout(() => plugin.clear(), 100); // clear scene after some delay
  101. setTimeout(async () => {
  102. const pdbtmDescriptor: PDBTMDescriptor = await downloadRegionDescriptor(plugin, params);
  103. TmDetDescriptorCache.add(pdbtmDescriptor);
  104. membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
  105. // load structure
  106. await loadStructure(plugin, params, pdbtmDescriptor);
  107. // cartoon, colors etc.
  108. await createStructureRepresentation(plugin, pdbtmDescriptor);
  109. //
  110. // It also resets the camera because the membranes render 1st and the structure might not be fully visible
  111. //
  112. rotateCamera(plugin);
  113. }, 500);
  114. }
  115. async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
  116. // run a fetch task
  117. const downloadResult: string = await plugin.runTask(plugin.fetch({ url: params.regionDescriptorUrl })) as string;
  118. const pdbtmDescriptor: any = JSON.parse(downloadResult);
  119. return pdbtmDescriptor;
  120. }
  121. async function createStructureRepresentation(plugin: PluginUIContext, pdbtmDescriptor: any) {
  122. // get the first structure of the first model
  123. const structure: StateObjectRef<PMS> = plugin.managers.structure.hierarchy.current.models[0].structures[0].cell;
  124. const components = await createStructureComponents(plugin, structure);
  125. await applyTransformations(plugin, pdbtmDescriptor);
  126. await buildStructureRepresentation(plugin, pdbtmDescriptor, components);
  127. }
  128. async function createStructureComponents(plugin: PluginUIContext, structure: StateObjectCell<PMS, StateTransform<StateTransformer<StateObject<any, StateObject.Type<any>>, StateObject<any, StateObject.Type<any>>, any>>>) {
  129. return {
  130. polymer: await plugin.builders.structure.tryCreateComponentStatic(structure, 'polymer'),
  131. ligand: await plugin.builders.structure.tryCreateComponentStatic(structure, 'ligand'),
  132. water: await plugin.builders.structure.tryCreateComponentStatic(structure, 'water'),
  133. };
  134. }
  135. async function buildStructureRepresentation(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor, components: ComponentsType) {
  136. const builder = plugin.builders.structure.representation;
  137. const update = plugin.build();
  138. if (components.polymer)
  139. builder.buildRepresentation(update, components.polymer, {
  140. type: 'cartoon',
  141. color: TmDetColorThemeProvider.name as any, colorParams: { pdbtmDescriptor }
  142. },
  143. { tag: 'polymer' }
  144. );
  145. if (components.ligand)
  146. builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick' }, { tag: 'ligand' });
  147. if (components.water)
  148. builder.buildRepresentation(update, components.water, { type: 'ball-and-stick', typeParams: { alpha: 0.6 } }, { tag: 'water' });
  149. await update.commit();
  150. }
  151. async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor: PDBTMDescriptor): Promise<void> {
  152. // replace original symmetry format function
  153. registerTmDetSymmetry(pdbtmDescriptor);
  154. const builders = ctx.builders;
  155. const data = await builders.data.download({
  156. url: params.structureUrl,
  157. label: `${pdbtmDescriptor.pdb_id}`,
  158. isBinary: false
  159. }); // , { state: { isGhost: true } });
  160. const trajectory = await builders.structure.parseTrajectory(data, 'mmcif');
  161. // create membrane representation
  162. await builders.structure.hierarchy.applyPreset(
  163. trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
  164. }
  165. //
  166. // //////////////////////////// END OF TMDET VIEWER SECTION
  167. //
  168. type MembraneOrientation3DType = typeof MembraneOrientation3D
  169. const MembraneOrientation3D = PluginStateTransform.BuiltIn({
  170. name: Tag.Representation,
  171. display: {
  172. name: TMDET_MEMBRANE_ORIENTATION,
  173. description: 'Membrane Orientation planes and rims. Data calculated with TMDET algorithm.'
  174. },
  175. from: PluginStateObject.Molecule.Structure,
  176. to: PluginStateObject.Shape.Representation3D,
  177. params: () => {
  178. return {
  179. ...MembraneOrientationParams,
  180. };
  181. }
  182. })({
  183. canAutoUpdate({ oldParams, newParams }) {
  184. return true;
  185. },
  186. apply({ a, params }, plugin: PluginContext) {
  187. return Task.create(TMDET_MEMBRANE_ORIENTATION, async ctx => {
  188. await MembraneOrientationProvider.attach({ runtime: ctx, assetManager: plugin.managers.asset }, a.data);
  189. const repr = MembraneOrientationRepresentation({ webgl: plugin.canvas3d?.webgl, ...plugin.representation.structure.themes }, () => MembraneOrientationParams);
  190. await repr.createOrUpdate(params, a.data).runInContext(ctx);
  191. return new PluginStateObject.Shape.Representation3D({ repr, sourceData: a.data }, { label: 'Membrane Orientation' });
  192. });
  193. },
  194. update({ a, b, newParams }, plugin: PluginContext) {
  195. return Task.create(TMDET_MEMBRANE_ORIENTATION, async ctx => {
  196. await MembraneOrientationProvider.attach({ runtime: ctx, assetManager: plugin.managers.asset }, a.data);
  197. const props = { ...b.data.repr.props, ...newParams };
  198. await b.data.repr.createOrUpdate(props, a.data).runInContext(ctx);
  199. b.data.sourceData = a.data;
  200. return StateTransformer.UpdateResult.Updated;
  201. });
  202. },
  203. isApplicable(a) {
  204. return MembraneOrientationProvider.isApplicable(a.data);
  205. }
  206. });
  207. export const MembraneOrientationPreset = StructureRepresentationPresetProvider({
  208. id: 'preset-membrane-orientation',
  209. display: {
  210. name: TMDET_MEMBRANE_ORIENTATION, group: 'Annotation',
  211. description: 'Shows orientation of membrane layers. Data calculated with TMDET algorithm.' // TODO add ' or obtained via RCSB PDB'
  212. },
  213. isApplicable(a) {
  214. return MembraneOrientationProvider.isApplicable(a.data);
  215. },
  216. params: () => StructureRepresentationPresetProvider.CommonParams,
  217. async apply(ref, params, plugin) {
  218. const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
  219. const structure = structureCell?.obj?.data;
  220. if (!structureCell || !structure) return {};
  221. if (!MembraneOrientationProvider.get(structure).value) {
  222. await plugin.runTask(Task.create(TMDET_MEMBRANE_ORIENTATION, async runtime => {
  223. await MembraneOrientationProvider.attach({ runtime, assetManager: plugin.managers.asset }, structure);
  224. }));
  225. }
  226. const membraneOrientation = await tryCreateMembraneOrientation(plugin, structureCell);
  227. const colorTheme = TmDetColorThemeProvider.name as any;
  228. const preset = await PresetStructureRepresentations.auto.apply(ref, { ...params, theme: { globalName: colorTheme, focus: { name: colorTheme } } }, plugin);
  229. return { components: preset.components, representations: { ...preset.representations, membraneOrientation } };
  230. }
  231. });
  232. export function tryCreateMembraneOrientation(plugin: PluginContext, structure: StateObjectRef<PMS>, params?: StateTransformer.Params<MembraneOrientation3DType>, initialState?: Partial<StateTransform.State>) {
  233. const state = plugin.state.data;
  234. const membraneOrientation = state.build().to(structure)
  235. .applyOrUpdateTagged(Tag.Representation, MembraneOrientation3D, params, { state: initialState });
  236. return membraneOrientation.commit({ revertOnError: true });
  237. }