behavior.ts 13 KB

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