AssemblyRepresentationPresetProvider.ts 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import {
  2. StructureRepresentationPresetProvider
  3. } from "molstar/lib/mol-plugin-state/builder/structure/representation-preset";
  4. import {PluginContext} from "molstar/lib/mol-plugin/context";
  5. import {StateObjectRef} from "molstar/lib/mol-state";
  6. import {PluginStateObject} from "molstar/lib/mol-plugin-state/objects";
  7. import {StructureElement, StructureProperties as SP} from "molstar/lib/mol-model/structure";
  8. import {MolScriptBuilder as MS} from "molstar/lib/mol-script/language/builder";
  9. import uniqid from "uniqid";
  10. import {PLDDTConfidenceColorThemeProvider} from "molstar/lib/extensions/model-archive/quality-assessment/color/plddt";
  11. import {ColorTheme} from "molstar/lib/mol-theme/color";
  12. import reprBuilder = StructureRepresentationPresetProvider.reprBuilder;
  13. import {StructureBuilder} from "molstar/lib/mol-plugin-state/builder/structure";
  14. import {StructureRepresentationBuilder} from "molstar/lib/mol-plugin-state/builder/structure/representation";
  15. import {createSelectionExpressions} from "@rcsb/rcsb-molstar/build/src/viewer/helpers/selection";
  16. import {StateTransform} from "molstar/lib/mol-state/transform";
  17. type ComponentType = Awaited<ReturnType<InstanceType<typeof StructureBuilder>["tryCreateComponentFromExpression"]>>;
  18. type RepresentationType = ReturnType<InstanceType<typeof StructureRepresentationBuilder>["buildRepresentation"]>;
  19. type ComponentMapType = Record<string,ComponentType>;
  20. type RepresentationMapType = Record<string,RepresentationType>;
  21. export const AssemblyRepresentationPresetProvider = StructureRepresentationPresetProvider({
  22. id: "rcsb-saguaro-3d",
  23. display: {
  24. name: 'Feature View 3D'
  25. },
  26. params(a: PluginStateObject.Molecule.Structure | undefined, plugin: PluginContext) {
  27. return {};
  28. },
  29. async apply(structureRef: StateObjectRef<PluginStateObject.Molecule.Structure>, params: {}, plugin: PluginContext) {
  30. const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, structureRef);
  31. if(!structureCell)
  32. return {};
  33. const structure = structureCell.obj!.data;
  34. const l = StructureElement.Location.create(structure);
  35. const componentMap : ComponentMapType = {}
  36. const representationMap : RepresentationMapType = {}
  37. const chains: Set<string> = new Set();
  38. for(const unit of structure.units) {
  39. StructureElement.Location.set(l, structure, unit, unit.elements[0]);
  40. const asymId = SP.chain.label_asym_id(l);
  41. if(chains.has(asymId)) continue;
  42. if(SP.entity.type(l) === "polymer"){
  43. chains.add(asymId);
  44. const authId = SP.chain.auth_asym_id(l);
  45. const comp = await plugin.builders.structure.tryCreateComponentFromExpression(
  46. structureCell,
  47. MS.struct.generator.atomGroups({
  48. 'chain-test': MS.core.logic.and([
  49. MS.core.rel.eq([MS.ammp('label_asym_id'), asymId])
  50. ])
  51. }),
  52. uniqid(`${asymId}`),
  53. {
  54. label: asymId == authId ? asymId : `${asymId} [${authId}]`
  55. }
  56. );
  57. componentMap[asymId] = comp;
  58. //TODO This needs to be called after tryCreateComponentFromExpression
  59. const {update, builder} = reprBuilder(plugin, {
  60. ignoreHydrogens: true,
  61. ignoreLight: false,
  62. quality: "auto"
  63. });
  64. representationMap[asymId] = builder.buildRepresentation(update, comp, {
  65. color: PLDDTConfidenceColorThemeProvider.isApplicable({ structure }) ? PLDDTConfidenceColorThemeProvider.name as ColorTheme.BuiltIn : "chain-id",
  66. type: "cartoon"
  67. });
  68. await update.commit({ revertOnError: false });
  69. }
  70. }
  71. for(const expression of createSelectionExpressions("none")){
  72. if(expression.tag == "polymer")
  73. continue;
  74. const comp = await plugin.builders.structure.tryCreateComponentFromExpression(
  75. structureCell,
  76. expression.expression,
  77. uniqid(`${expression.tag}`),
  78. {
  79. label: `${expression.tag}`
  80. });
  81. componentMap[expression.tag] = comp;
  82. //TODO This needs to be called after tryCreateComponentFromExpression
  83. const { update, builder } = reprBuilder(plugin, {
  84. ignoreHydrogens: true,
  85. ignoreLight: false,
  86. quality: "auto"
  87. });
  88. representationMap[expression.tag] = builder.buildRepresentation(update, comp, {
  89. type: expression.type
  90. },{
  91. initialState:{
  92. isHidden: expression.tag == "water" ? true : false
  93. }
  94. });
  95. if (comp?.cell?.state && expression.tag == "water") {
  96. StateTransform.assignState(comp?.cell?.state, { isHidden: true });
  97. }
  98. await update.commit({ revertOnError: false });
  99. }
  100. return {
  101. components: componentMap,
  102. representations: representationMap
  103. };
  104. }
  105. });