preset.ts 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Yana Rose
  5. */
  6. import { StructureRepresentationPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/representation-preset';
  7. import { ParamDefinition as PD } from 'molstar/lib/mol-util/param-definition';
  8. import { SelectionExpression } from '../selection';
  9. import { StateObjectRef } from 'molstar/lib/mol-state';
  10. import reprBuilder = StructureRepresentationPresetProvider.reprBuilder;
  11. import updateFocusRepr = StructureRepresentationPresetProvider.updateFocusRepr;
  12. import { StateTransform } from 'molstar/lib/mol-state/transform';
  13. export const RcsbSuperpositionRepresentationPreset = StructureRepresentationPresetProvider({
  14. id: 'preset-superposition-representation-rcsb',
  15. display: {
  16. group: 'Superposition',
  17. name: 'Alignment',
  18. description: 'Show representations based on the structural alignment data.'
  19. },
  20. params: () => ({
  21. ...StructureRepresentationPresetProvider.CommonParams,
  22. selectionExpressions: PD.Value<SelectionExpression[]>([])
  23. }),
  24. async apply(ref, params, plugin) {
  25. const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
  26. if (!structureCell) return {};
  27. const structure = structureCell.obj!.data;
  28. const cartoonProps = { sizeFactor: structure.isCoarseGrained ? 0.8 : 0.2 };
  29. const components = Object.create(null);
  30. const representations = Object.create(null);
  31. for (const expr of params.selectionExpressions) {
  32. const comp = await plugin.builders.structure.tryCreateComponentFromExpression(structureCell, expr.expression, expr.label, { label: expr.label });
  33. Object.assign(components, { [expr.label]: comp });
  34. const { update, builder, typeParams, color } = reprBuilder(plugin, params);
  35. const typeProps = { ...typeParams };
  36. if (expr.type === 'cartoon') {
  37. Object.assign(typeProps, { ...cartoonProps });
  38. }
  39. if (typeof expr?.alpha !== 'undefined') {
  40. Object.assign(typeProps, { alpha: expr.alpha });
  41. }
  42. const reprProps = {
  43. type: expr.type,
  44. typeParams: typeProps,
  45. color: color as any
  46. };
  47. if (expr.color) {
  48. Object.assign(reprProps, {
  49. color: 'uniform',
  50. colorParams: { value: expr.color }
  51. });
  52. }
  53. Object.assign(representations, {
  54. [expr.label]: builder.buildRepresentation(update, comp, reprProps, {
  55. tag: expr.tag,
  56. // this only hides the visuals but the state UI will still indicate them as visible
  57. initialState: { isHidden: expr.isHidden || false }
  58. })
  59. });
  60. // make sure UI state is consistent
  61. if (comp?.cell?.state && expr.isHidden) {
  62. StateTransform.assignState(comp?.cell?.state, { isHidden: true });
  63. }
  64. await update.commit({ revertOnError: false });
  65. }
  66. // needed to apply same coloring scheme to focus representation
  67. await updateFocusRepr(plugin, structure, params.theme?.focus?.name, params.theme?.focus?.params);
  68. return representations;
  69. }
  70. });