TmTrajectoryHierarchyPreset.ts 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. */
  6. /**
  7. * Copyright (C) 2023, Protein Bioinformatics Research Group, RCNS
  8. *
  9. * Licensed under CC BY-NC 4.0, see LICENSE file for more info.
  10. *
  11. * @author Gabor Tusnady <tusnady.gabor@ttk.hu>
  12. * @author Csongor Gerdan <gerdan.csongor@ttk.hu>
  13. */
  14. import { ParamDefinition as PD } from 'molstar/lib/mol-util/param-definition';
  15. import { TrajectoryHierarchyPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/hierarchy-preset';
  16. import { PluginStateObject } from 'molstar/lib/mol-plugin-state/objects';
  17. import {
  18. StateObjectSelector,
  19. StateObjectRef,
  20. } from 'molstar/lib/mol-state';
  21. import { MembraneOrientationPreset } from './tmdet-extension/behavior';
  22. import { StateTransforms } from 'molstar/lib/mol-plugin-state/transforms';
  23. import { applyTransformations } from './tmdet-extension/transformation';
  24. import { TmDetDescriptorCache } from './tmdet-extension/prop';
  25. import { registerTmDetSymmetry } from './tmdet-extension/symmetry';
  26. import { PresetProps } from '@rcsb/rcsb-molstar/build/src/viewer/helpers/preset';
  27. const RcsbParams = () => ({
  28. preset: PD.Value<PresetProps>({ kind: 'standard', assemblyId: '' }, { isHidden: true })
  29. });
  30. export const TmDetRcsbPreset = TrajectoryHierarchyPresetProvider({
  31. id: 'tmdet-preset-trajectory-rcsb',
  32. display: { name: 'TMDET RCSB Preset' },
  33. isApplicable: () => true,
  34. params: RcsbParams,
  35. async apply(trajectory: StateObjectRef<PluginStateObject.Molecule.Trajectory>, params, plugin) {
  36. console.log('TMDET RCSB PRESET: apply start', params);
  37. const entryId = (trajectory as any).obj?.data.representative.entryId;
  38. console.log('TRAJECTORY entry ID:', entryId);
  39. const descriptor = TmDetDescriptorCache.get(entryId);
  40. registerTmDetSymmetry(descriptor!);
  41. const modelParams = { modelIndex: 0 };
  42. const props = {
  43. type: {
  44. name: 'assembly' as const,
  45. params: { id: '1' }
  46. }
  47. };
  48. await plugin.state.data.build().to(trajectory)
  49. .apply(StateTransforms.Model.ModelFromTrajectory, modelParams, { ref: 'model' })
  50. .apply(StateTransforms.Model.StructureFromModel, props, { ref: 'assembly' })
  51. .commit();
  52. //applyTransformations(plugin, descriptor!);
  53. const builder = plugin.builders.structure;
  54. const model = new StateObjectSelector(plugin.state.data.build().to('model').ref, plugin.state.data);
  55. const modelProperties = await builder.insertModelProperties(model.ref);
  56. const structure = new StateObjectSelector(plugin.state.data.build().to('assembly').ref, plugin.state.data);
  57. const structureProperties = await builder.insertStructureProperties(structure);
  58. const representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties, MembraneOrientationPreset, {});
  59. (window as any).plugin = plugin;
  60. const result = {
  61. model,
  62. modelProperties,
  63. unitcell: undefined,
  64. structure,
  65. structureProperties,
  66. representation
  67. };
  68. console.log('TmDetRcsbPreset apply result', result);
  69. return result;
  70. }
  71. });