behavior.ts 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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 { StateObjectRef, StateTransformer, StateTransform, StateObjectSelector } 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. // TMDET imports
  27. import { MembraneOrientationRepresentationProvider, MembraneOrientationParams, MembraneOrientationRepresentation } from './representation';
  28. import { MembraneOrientationProvider, TmDetDescriptorCache, isTransmembrane as tmSymbol, setMembraneOrientation } from './prop';
  29. import { createMembraneOrientation } from './transformation';
  30. import { PDBTMDescriptor, PMS } from './types';
  31. import { registerTmDetSymmetry } from './symmetry';
  32. import { TmDetLabelProvider } from './labeling';
  33. import { TmDetColorThemeProvider, updateSiteColors } from './tmdet-color-theme';
  34. //import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
  35. import { DebugUtil } from './debug-utils';
  36. import { StateTransforms } from '../mol-plugin-state/transforms';
  37. const TMDET_MEMB_ORI_REPRESENTATION_TAG = 'tmdet-membrane-orientation-3d';
  38. const TMDET_MEMBRANE_ORIENTATION = 'TMDET Membrane Orientation';
  39. export const TMDET_STRUCTURE_PRESET_ID = 'tmdet-preset-membrane-orientation';
  40. export const TMDETMembraneOrientation = PluginBehavior.create<{ autoAttach: boolean }>({
  41. name: 'tmdet-membrane-orientation-prop',
  42. category: 'custom-props',
  43. display: {
  44. name: TMDET_MEMBRANE_ORIENTATION,
  45. description: 'Data calculated with TMDET algorithm.'
  46. },
  47. ctor: class extends PluginBehavior.Handler<{ autoAttach: boolean }> {
  48. private provider = MembraneOrientationProvider
  49. register(): void {
  50. console.log('TMDET plugin behavior REGISTER');
  51. DefaultQueryRuntimeTable.addCustomProp(this.provider.descriptor);
  52. this.ctx.customStructureProperties.register(this.provider, this.params.autoAttach);
  53. this.ctx.representation.structure.registry.add(MembraneOrientationRepresentationProvider);
  54. this.ctx.query.structure.registry.add(isTransmembrane);
  55. this.ctx.representation.structure.themes.colorThemeRegistry.add(TmDetColorThemeProvider);
  56. this.ctx.managers.lociLabels.addProvider(TmDetLabelProvider);
  57. this.ctx.genericRepresentationControls.set(TMDET_MEMB_ORI_REPRESENTATION_TAG, selection => {
  58. const refs: GenericRepresentationRef[] = [];
  59. selection.structures.forEach(structure => {
  60. const memRepr = structure.genericRepresentations?.filter(r => r.cell.transform.transformer.id === MembraneOrientation3D.id)[0];
  61. if (memRepr) refs.push(memRepr);
  62. });
  63. return [refs, 'Membrane Orientation'];
  64. });
  65. this.ctx.builders.structure.representation.registerPreset(MembraneOrientationPreset);
  66. }
  67. update(p: { autoAttach: boolean }) {
  68. console.log('TMDET plugin behavior UPDATE');
  69. let updated = this.params.autoAttach !== p.autoAttach;
  70. this.params.autoAttach = p.autoAttach;
  71. this.ctx.customStructureProperties.setDefaultAutoAttach(this.provider.descriptor.name, this.params.autoAttach);
  72. return updated;
  73. }
  74. unregister() {
  75. console.log('TMDET plugin behavior UNREGISTER');
  76. DefaultQueryRuntimeTable.removeCustomProp(this.provider.descriptor);
  77. this.ctx.customStructureProperties.unregister(this.provider.descriptor.name);
  78. this.ctx.representation.structure.registry.remove(MembraneOrientationRepresentationProvider);
  79. this.ctx.query.structure.registry.remove(isTransmembrane);
  80. this.ctx.genericRepresentationControls.delete(TMDET_MEMB_ORI_REPRESENTATION_TAG);
  81. this.ctx.builders.structure.representation.unregisterPreset(MembraneOrientationPreset);
  82. this.ctx.representation.structure.themes.colorThemeRegistry.remove(TmDetColorThemeProvider);
  83. this.ctx.managers.lociLabels.removeProvider(TmDetLabelProvider);
  84. }
  85. },
  86. params: () => ({
  87. autoAttach: PD.Boolean(false)
  88. })
  89. });
  90. //
  91. export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Membrane', MS.struct.modifier.union([
  92. MS.struct.modifier.wholeResidues([
  93. MS.struct.modifier.union([
  94. MS.struct.generator.atomGroups({
  95. 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
  96. 'atom-test': tmSymbol.symbol(),
  97. })
  98. ])
  99. ])
  100. ]), {
  101. description: 'Select residues that are embedded between the membrane layers.',
  102. category: StructureSelectionCategory.Residue,
  103. ensureCustomProperties: (ctx, structure) => {
  104. return MembraneOrientationProvider.attach(ctx, structure);
  105. }
  106. });
  107. //
  108. // //////////////////////////// TMDET VIEWER FUNCTIONS
  109. //
  110. export async function loadWithUNITMPMembraneRepresentation(plugin: PluginContext, params: any) {
  111. //storeCameraSnapshot(plugin); // store if it is not stored yet
  112. //loadInitialSnapshot(plugin); // load if there is a stored one
  113. setTimeout(() => { plugin.clear(); }, 100); // clear scene after some delay
  114. updateSiteColors(params.side1);
  115. const pdbtmDescriptor: PDBTMDescriptor = await downloadRegionDescriptor(plugin, params);
  116. pdbtmDescriptor.side1 = params.side1;
  117. TmDetDescriptorCache.add(pdbtmDescriptor);
  118. const membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
  119. setMembraneOrientation(membraneOrientation);
  120. // load structure
  121. await loadStructure(plugin, params, pdbtmDescriptor);
  122. }
  123. async function downloadRegionDescriptor(plugin: PluginContext, params: any): Promise<any> {
  124. // run a fetch task
  125. const downloadResult: string = await plugin.runTask(plugin.fetch({ url: params.regionDescriptorUrl })) as string;
  126. const pdbtmDescriptor: any = JSON.parse(downloadResult);
  127. return pdbtmDescriptor;
  128. }
  129. async function loadStructure(ctx: PluginContext, params: any, pdbtmDescriptor: PDBTMDescriptor): Promise<void> {
  130. // replace original symmetry format function
  131. registerTmDetSymmetry(pdbtmDescriptor);
  132. let format: "mmcif"|"pdb" = "mmcif";
  133. // check url to determine file format and compression
  134. const match: string[] = params.structureUrl.match(new RegExp('/(pdb|cif)(.gz)?$/g/'));
  135. DebugUtil.log(`format: ${params.format}`);
  136. if ((params.format != 'mmcif' || params.format != 'pdb') && match != null) {
  137. if (match[0].startsWith('cif')) {
  138. format = 'mmcif';
  139. }
  140. if (match[0].startsWith('pdb')) {
  141. format = 'pdb';
  142. }
  143. } else if (params.format) {
  144. format = params.format;
  145. }
  146. const builders = ctx.builders;
  147. const data = await downloadData(ctx, params, pdbtmDescriptor);
  148. const trajectory = await builders.structure.parseTrajectory(data, format);
  149. const modelParams = { modelIndex: 0 };
  150. const props = {
  151. type: {
  152. name: 'assembly' as const,
  153. params: { id: '1' }
  154. }
  155. };
  156. await ctx.state.data.build().to(trajectory)
  157. .apply(StateTransforms.Model.ModelFromTrajectory, modelParams, { ref: 'model' })
  158. .apply(StateTransforms.Model.StructureFromModel, props, { ref: 'assembly' })
  159. .commit();
  160. const builder = ctx.builders.structure;
  161. const model = new StateObjectSelector(ctx.state.data.build().to('model').ref, ctx.state.data);
  162. await builder.insertModelProperties(model.ref);
  163. const structure = new StateObjectSelector(ctx.state.data.build().to('assembly').ref, ctx.state.data);
  164. const structureProperties = await builder.insertStructureProperties(structure);
  165. await ctx.builders.structure.representation.applyPreset<any>(structureProperties, MembraneOrientationPreset, {});
  166. // create membrane representation
  167. await builders.structure.hierarchy.applyPreset(
  168. trajectory, 'default', { representationPreset: TMDET_STRUCTURE_PRESET_ID as any });
  169. }
  170. async function downloadData(ctx: PluginContext, params: any, pdbtmDescriptor: PDBTMDescriptor) {
  171. const builders = ctx.builders;
  172. let downloadResult = await ctx.runTask(ctx.fetch({ url: params.structureUrl, type: "string" }));
  173. DebugUtil.log('First 50 chars of input data', downloadResult.slice(0, 50));
  174. return await builders.data.rawData({
  175. data: downloadResult,
  176. label: `${pdbtmDescriptor.pdb_id}`,
  177. }); // , { state: { isGhost: true } });
  178. }
  179. //
  180. // //////////////////////////// END OF TMDET VIEWER SECTION
  181. //
  182. type MembraneOrientation3DType = typeof MembraneOrientation3D
  183. const MembraneOrientation3D = PluginStateTransform.BuiltIn({
  184. name: TMDET_MEMB_ORI_REPRESENTATION_TAG,
  185. display: {
  186. name: TMDET_MEMBRANE_ORIENTATION,
  187. description: 'Membrane Orientation planes and rims. Data calculated with TMDET algorithm.'
  188. },
  189. from: PluginStateObject.Molecule.Structure,
  190. to: PluginStateObject.Shape.Representation3D,
  191. params: () => {
  192. return {
  193. ...MembraneOrientationParams,
  194. };
  195. }
  196. })({
  197. canAutoUpdate({ oldParams, newParams }) {
  198. return true;
  199. },
  200. apply({ a, params }, plugin: PluginContext) {
  201. return Task.create(TMDET_MEMBRANE_ORIENTATION, async ctx => {
  202. await MembraneOrientationProvider.attach({ runtime: ctx, assetManager: plugin.managers.asset }, a.data);
  203. const repr = MembraneOrientationRepresentation({ webgl: plugin.canvas3d?.webgl, ...plugin.representation.structure.themes }, () => MembraneOrientationParams);
  204. await repr.createOrUpdate(params, a.data).runInContext(ctx);
  205. return new PluginStateObject.Shape.Representation3D({ repr, sourceData: a.data }, { label: TMDET_MEMBRANE_ORIENTATION });
  206. });
  207. },
  208. update({ a, b, newParams }, plugin: PluginContext) {
  209. return Task.create(TMDET_MEMBRANE_ORIENTATION, async ctx => {
  210. await MembraneOrientationProvider.attach({ runtime: ctx, assetManager: plugin.managers.asset }, a.data);
  211. const props = { ...b.data.repr.props, ...newParams };
  212. await b.data.repr.createOrUpdate(props, a.data).runInContext(ctx);
  213. b.data.sourceData = a.data;
  214. return StateTransformer.UpdateResult.Updated;
  215. });
  216. },
  217. isApplicable(a) {
  218. return MembraneOrientationProvider.isApplicable(a.data);
  219. }
  220. });
  221. export const MembraneOrientationPreset = StructureRepresentationPresetProvider({
  222. id: TMDET_STRUCTURE_PRESET_ID,
  223. display: {
  224. name: TMDET_MEMBRANE_ORIENTATION, group: 'Annotation',
  225. description: 'Shows orientation of membrane layers. Data calculated with TMDET algorithm.' // TODO add ' or obtained via RCSB PDB'
  226. },
  227. isApplicable(a) {
  228. return MembraneOrientationProvider.isApplicable(a.data);
  229. },
  230. params: () => StructureRepresentationPresetProvider.CommonParams,
  231. async apply(ref, params, plugin) {
  232. const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
  233. const structure = structureCell?.obj?.data;
  234. if (!structureCell || !structure) return {};
  235. if (!MembraneOrientationProvider.get(structure).value) {
  236. await plugin.runTask(Task.create(TMDET_MEMBRANE_ORIENTATION, async runtime => {
  237. await MembraneOrientationProvider.attach({ runtime, assetManager: plugin.managers.asset }, structure);
  238. }));
  239. }
  240. const membraneOrientation = await tryCreateMembraneOrientation(plugin, structureCell);
  241. const colorTheme = TmDetColorThemeProvider.name as any;
  242. // console.log('MembOriPreset apply params:', params);
  243. // console.log('MembOriPreset ref:', ref);
  244. const preset = await PresetStructureRepresentations.auto.apply(ref, { ...params, theme: { globalName: colorTheme, focus: { name: colorTheme } } }, plugin);
  245. return { components: preset.components, representations: { ...preset.representations, membraneOrientation } };
  246. }
  247. });
  248. export function tryCreateMembraneOrientation(plugin: PluginContext, structure: StateObjectRef<PMS>, params?: StateTransformer.Params<MembraneOrientation3DType>, initialState?: Partial<StateTransform.State>) {
  249. const state = plugin.state.data;
  250. const membraneOrientation = state.build().to(structure)
  251. .applyOrUpdateTagged(TMDET_MEMB_ORI_REPRESENTATION_TAG, MembraneOrientation3D, params, { state: initialState });
  252. return membraneOrientation.commit({ revertOnError: true });
  253. }