preset.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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. import { PluginContext } from 'molstar/lib/mol-plugin/context';
  7. import { ParamDefinition as PD } from 'molstar/lib/mol-util/param-definition';
  8. import { TrajectoryHierarchyPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/hierarchy-preset';
  9. import { ValidationReportGeometryQualityPreset } from 'molstar/lib/extensions/rcsb/validation-report/behavior';
  10. import { AssemblySymmetryPreset } from 'molstar/lib/extensions/rcsb/assembly-symmetry/behavior';
  11. import { PluginStateObject } from 'molstar/lib/mol-plugin-state/objects';
  12. import { RootStructureDefinition } from 'molstar/lib/mol-plugin-state/helpers/root-structure';
  13. import { StructureRepresentationPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/representation-preset';
  14. import { StructureElement } from 'molstar/lib/mol-model/structure';
  15. import { ViewerState } from '../types';
  16. import {
  17. StateSelection,
  18. StateObjectSelector,
  19. StateObject,
  20. StateTransformer
  21. } from 'molstar/lib/mol-state';
  22. import { Mat4 } from 'molstar/lib/mol-math/linear-algebra';
  23. import { CustomStructureProperties } from 'molstar/lib/mol-plugin-state/transforms/model';
  24. import { FlexibleStructureFromModel } from './superpose/flexible-structure';
  25. import { PluginCommands } from 'molstar/lib/mol-plugin/commands';
  26. import { InteractivityManager } from 'molstar/lib/mol-plugin-state/manager/interactivity';
  27. import { MembraneOrientationPreset } from 'molstar/lib/extensions/anvil/behavior';
  28. import { setSubtreeVisibility } from 'molstar/lib/mol-plugin/behavior/static/state';
  29. import { VolumeStreaming } from 'molstar/lib/mol-plugin/behavior/dynamic/volume-streaming/behavior';
  30. import {
  31. InitVolumeStreaming,
  32. VolumeStreamingVisual
  33. } from 'molstar/lib/mol-plugin/behavior/dynamic/volume-streaming/transformers';
  34. import {
  35. createSelectionExpressions,
  36. normalizeTargets,
  37. SelectionExpression,
  38. Target,
  39. targetToLoci,
  40. toRange
  41. } from './selection';
  42. import { RcsbSuperpositionRepresentationPreset } from './superpose/preset';
  43. import {
  44. AssemblySymmetryDataProvider,
  45. AssemblySymmetryProvider
  46. } from 'molstar/lib/extensions/rcsb/assembly-symmetry/prop';
  47. import { Task } from 'molstar/lib/mol-task';
  48. import { PLDDTConfidenceColorThemeProvider } from 'molstar/lib/extensions/model-archive/quality-assessment/color/plddt';
  49. type BaseProps = {
  50. assemblyId?: string
  51. modelIndex?: number
  52. plddt?: 'off' | 'single-chain' | 'on'
  53. }
  54. export { Mat4 } from 'molstar/lib/mol-math/linear-algebra';
  55. export type AlignmentProps = {
  56. kind: 'alignment',
  57. targets?: (Target & {
  58. matrix?: Mat4
  59. })[],
  60. colors: {
  61. value: number,
  62. targets: Target[]
  63. }[]
  64. } & BaseProps
  65. export type EmptyProps = {
  66. kind: 'empty'
  67. } & BaseProps
  68. type ValidationProps = {
  69. kind: 'validation'
  70. colorTheme?: string
  71. showClashes?: boolean
  72. } & BaseProps
  73. type StandardProps = {
  74. kind: 'standard'
  75. } & BaseProps
  76. type SymmetryProps = {
  77. kind: 'symmetry'
  78. symmetryIndex?: number
  79. } & BaseProps
  80. type FeatureProps = {
  81. kind: 'feature'
  82. target: Target
  83. } & BaseProps
  84. type DensityProps = {
  85. kind: 'density'
  86. } & BaseProps
  87. type MembraneProps = {
  88. kind: 'membrane',
  89. } & BaseProps
  90. type FeatureDensityProps = {
  91. kind: 'feature-density',
  92. target: Target,
  93. radius?: number,
  94. hiddenChannels?: string[]
  95. } & BaseProps
  96. export type MotifProps = {
  97. kind: 'motif',
  98. label?: string,
  99. targets: Target[],
  100. color?: number
  101. } & BaseProps
  102. export type NakbProps = {
  103. kind: 'nakb'
  104. } & BaseProps
  105. export type PresetProps = ValidationProps | StandardProps | SymmetryProps | FeatureProps | DensityProps | AlignmentProps |
  106. MembraneProps | FeatureDensityProps | MotifProps | NakbProps | EmptyProps;
  107. const RcsbParams = () => ({
  108. preset: PD.Value<PresetProps>({ kind: 'standard', assemblyId: '' }, { isHidden: true })
  109. });
  110. type StructureObject = StateObjectSelector<PluginStateObject.Molecule.Structure, StateTransformer<StateObject<any, StateObject.Type<any>>, StateObject<any, StateObject.Type<any>>, any>>
  111. const CommonParams = StructureRepresentationPresetProvider.CommonParams;
  112. export const RcsbPreset = TrajectoryHierarchyPresetProvider({
  113. id: 'preset-trajectory-rcsb',
  114. display: { name: 'RCSB' },
  115. isApplicable: () => true,
  116. params: RcsbParams,
  117. async apply(trajectory, params, plugin) {
  118. const builder = plugin.builders.structure;
  119. const p = params.preset;
  120. const modelParams = { modelIndex: p.modelIndex || 0 };
  121. // jump through some hoops to determine the unknown assemblyId of query selections
  122. if (p.kind === 'motif') determineAssemblyId(trajectory, p);
  123. const structureParams: RootStructureDefinition.Params = { name: 'model', params: {} };
  124. if (p.assemblyId && p.assemblyId !== '' && p.assemblyId !== '0') {
  125. Object.assign(structureParams, {
  126. name: 'assembly',
  127. params: { id: p.assemblyId }
  128. } as RootStructureDefinition.Params);
  129. }
  130. const model = await builder.createModel(trajectory, modelParams);
  131. const modelProperties = await builder.insertModelProperties(model);
  132. let structure: StructureObject | undefined = undefined;
  133. let structureProperties: StructureObject | undefined = undefined;
  134. let unitcell: StateObjectSelector | undefined = undefined;
  135. // If flexible transformation is allowed, we may need to create a single structure component
  136. // from transformed substructures
  137. const allowsFlexTransform = p.kind === 'alignment';
  138. if (!allowsFlexTransform) {
  139. structure = await builder.createStructure(modelProperties || model, structureParams);
  140. structureProperties = await builder.insertStructureProperties(structure);
  141. // hide unit cell when dealing with motifs
  142. if (p.kind !== 'motif') {
  143. unitcell = await builder.tryCreateUnitcell(modelProperties, undefined, { isHidden: true });
  144. }
  145. }
  146. // default to pLDDT coloring when category present && single chain
  147. const presetParams = Object.create(null);
  148. if (checkPlddtColorTheme(structure, p.plddt ?? 'single-chain')) {
  149. Object.assign(presetParams, { theme: { globalName: 'plddt-confidence', focus: { name: 'plddt-confidence' } } });
  150. }
  151. let representation: StructureRepresentationPresetProvider.Result | undefined = undefined;
  152. if (p.kind === 'alignment') {
  153. // This creates a single structure from selections/transformations as specified
  154. const _structure = plugin.state.data.build().to(modelProperties)
  155. .apply(FlexibleStructureFromModel, { targets: p.targets });
  156. structure = await _structure.commit();
  157. const _structureProperties = plugin.state.data.build().to(structure)
  158. .apply(CustomStructureProperties);
  159. structureProperties = await _structureProperties.commit();
  160. // adding coloring lookup scheme
  161. structure.data!.inheritedPropertyData.colors = Object.create(null);
  162. for (const c of p.colors) {
  163. const colorValue = c.value;
  164. const targets = c.targets;
  165. for (const target of targets) {
  166. if (!target.labelAsymId) continue;
  167. if (!structure.data!.inheritedPropertyData.colors[target.labelAsymId])
  168. structure.data!.inheritedPropertyData.colors[target.labelAsymId] = new Map();
  169. const residues: number[] = (target.labelSeqRange) ? toRange(target.labelSeqRange.beg, target.labelSeqRange.end) : [];
  170. for (const num of residues) {
  171. structure.data!.inheritedPropertyData.colors[target.labelAsymId].set(num, colorValue);
  172. }
  173. }
  174. }
  175. // At this we have a structure that contains only the transformed substructures,
  176. // creating structure selections to have multiple components per each flexible part
  177. const entryId = model.data!.entryId;
  178. let selectionExpressions: SelectionExpression[] = [];
  179. if (p.targets) {
  180. for (const target of p.targets) {
  181. selectionExpressions = selectionExpressions.concat(createSelectionExpressions(entryId, target));
  182. }
  183. } else {
  184. selectionExpressions = selectionExpressions.concat(createSelectionExpressions(entryId));
  185. }
  186. const additions = {
  187. ignoreHydrogens: CommonParams.ignoreHydrogens.defaultValue,
  188. quality: CommonParams.quality.defaultValue,
  189. theme: { globalName: 'superpose', focus: { name: 'superpose' } },
  190. selectionExpressions: selectionExpressions
  191. };
  192. representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties!, RcsbSuperpositionRepresentationPreset, { ...presetParams, ...additions });
  193. } else if (p.kind === 'motif' && structure?.obj) {
  194. // let's force ASM_1 for motifs (as we use this contract in the rest of the stack)
  195. // TODO should ASM_1 be the default, seems like we'd run into problems when selecting ligands that are e.g. ambiguous with asym_id & seq_id alone?
  196. const targets = normalizeTargets(p.targets, structure!.obj.data);
  197. let selectionExpressions = createSelectionExpressions(p.label || model.data!.entryId, targets);
  198. const globalExpressions = createSelectionExpressions(p.label || model.data!.entryId);
  199. selectionExpressions = selectionExpressions.concat(globalExpressions.map(e => { return { ...e, alpha: 0.21 }; }));
  200. if (p.color) {
  201. selectionExpressions = selectionExpressions.map(e => { return { ...e, color: p.color }; });
  202. }
  203. const additions = {
  204. ignoreHydrogens: true,
  205. quality: CommonParams.quality.defaultValue,
  206. selectionExpressions: selectionExpressions
  207. };
  208. representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties!, RcsbSuperpositionRepresentationPreset, { ...presetParams, ...additions });
  209. } else if (p.kind === 'validation') {
  210. representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties!, ValidationReportGeometryQualityPreset, presetParams);
  211. } else if (p.kind === 'symmetry' && structure?.obj) {
  212. const data = structure!.obj.data;
  213. if (!AssemblySymmetryDataProvider.get(data).value) {
  214. await plugin.runTask(Task.create('Assembly Symmetry', async runtime => {
  215. const propCtx = { runtime, assetManager: plugin.managers.asset };
  216. await AssemblySymmetryDataProvider.attach(propCtx, data);
  217. await AssemblySymmetryProvider.attach(propCtx, data, { symmetryIndex: p.symmetryIndex });
  218. }));
  219. }
  220. representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties!, AssemblySymmetryPreset, presetParams);
  221. ViewerState(plugin).collapsed.next({
  222. ...ViewerState(plugin).collapsed.value,
  223. assemblySymmetry: false
  224. });
  225. } else if (p.kind === 'empty') {
  226. console.warn('Using empty representation');
  227. } else if (p.kind === 'membrane') {
  228. try {
  229. representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties!, MembraneOrientationPreset, presetParams);
  230. // reset the camera because the membranes render 1st and the structure might not be fully visible
  231. requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset());
  232. } catch (error) {
  233. const msg = 'Membrane calculation failed! - This can happen for tiny structures with only a dozen of residues.';
  234. plugin.log.error(msg);
  235. console.error(msg);
  236. console.error(error);
  237. // fall back to default representation to show something
  238. representation = await plugin.builders.structure.representation.applyPreset(structureProperties!, 'auto', presetParams);
  239. }
  240. } else if (p.kind === 'nakb') {
  241. representation = await plugin.builders.structure.representation.applyPreset<any>(structureProperties!, 'auto', { ...presetParams, theme: { globalName: 'nakb', focus: { name: 'nakb' } } });
  242. } else {
  243. representation = await plugin.builders.structure.representation.applyPreset(structureProperties!, 'auto', presetParams);
  244. }
  245. // TODO align with 'motif'?
  246. if ((p.kind === 'feature' || p.kind === 'feature-density') && structure?.obj) {
  247. let loci = targetToLoci(p.target, structure!.obj.data);
  248. // if requested: then don't force first residue
  249. const chainMode = !!p.target.extendToChain;
  250. // HELP-16678: check for rare case where ligand is not present in requested assembly
  251. if (loci.elements.length === 0 && !!p.assemblyId) {
  252. // switch to Model (a.k.a. show coordinates independent of assembly)
  253. const { selection } = plugin.managers.structure.hierarchy;
  254. const s = selection.structures[0];
  255. await plugin.managers.structure.hierarchy.updateStructure(s, { ...params, preset: { ...params.preset, assemblyId: void 0 } });
  256. // update loci
  257. loci = targetToLoci(p.target, structure!.obj.data);
  258. }
  259. const target = chainMode ? loci : StructureElement.Loci.firstResidue(loci);
  260. if (p.kind === 'feature-density') {
  261. await initVolumeStreaming(plugin, structure, { overrideRadius: p.radius || 0, hiddenChannels: p.hiddenChannels || ['fo-fc(+ve)', 'fo-fc(-ve)'] });
  262. }
  263. plugin.managers.structure.focus.setFromLoci(target);
  264. plugin.managers.camera.focusLoci(target);
  265. }
  266. if (p.kind === 'density' && structure) {
  267. await initVolumeStreaming(plugin, structure);
  268. await PluginCommands.Toast.Show(plugin, {
  269. title: 'Electron Density',
  270. message: 'Click on a residue to display electron density, click background to reset.',
  271. key: 'toast-density',
  272. timeoutMs: 60000
  273. });
  274. plugin.behaviors.interaction.click.subscribe(async (e: InteractivityManager.ClickEvent) => {
  275. if (e.current && e.current.loci && e.current.loci.kind !== 'empty-loci') {
  276. await PluginCommands.Toast.Hide(plugin, { key: 'toast-density' });
  277. }
  278. });
  279. }
  280. return {
  281. model,
  282. modelProperties,
  283. unitcell,
  284. structure,
  285. structureProperties,
  286. representation
  287. };
  288. }
  289. });
  290. function checkPlddtColorTheme(structure: StructureObject | undefined, plddt: 'on' | 'single-chain' | 'off') {
  291. if (!structure?.data) return false;
  292. if (plddt === 'off') return false;
  293. if (plddt === 'single-chain' && structure.data?.polymerUnitCount !== 1) return false;
  294. return PLDDTConfidenceColorThemeProvider.isApplicable({ structure: structure.data });
  295. }
  296. function determineAssemblyId(traj: any, p: MotifProps) {
  297. // nothing to do if assembly is known
  298. if (p.assemblyId && p.assemblyId !== '' && p.assemblyId !== '0') return;
  299. function equals(expr: string, val: string): boolean {
  300. const list = parseOperatorList(expr);
  301. const split = val.split('x');
  302. let matches = 0;
  303. for (let i = 0, il = Math.min(list.length, split.length); i < il; i++) {
  304. if (list[i].indexOf(split[i]) !== -1) matches++;
  305. }
  306. return matches === split.length;
  307. }
  308. function parseOperatorList(value: string): string[][] {
  309. // '(X0)(1-5)' becomes [['X0'], ['1', '2', '3', '4', '5']]
  310. // kudos to Glen van Ginkel.
  311. const oeRegex = /\(?([^()]+)\)?]*/g, groups: string[] = [], ret: string[][] = [];
  312. let g: any;
  313. while (g = oeRegex.exec(value)) groups[groups.length] = g[1];
  314. groups.forEach(g => {
  315. const group: string[] = [];
  316. g.split(',').forEach(e => {
  317. const dashIndex = e.indexOf('-');
  318. if (dashIndex > 0) {
  319. const from = parseInt(e.substring(0, dashIndex)), to = parseInt(e.substring(dashIndex + 1));
  320. for (let i = from; i <= to; i++) group[group.length] = i.toString();
  321. } else {
  322. group[group.length] = e.trim();
  323. }
  324. });
  325. ret[ret.length] = group;
  326. });
  327. return ret;
  328. }
  329. // set of provided [structOperId, labelAsymId] combinations
  330. const ids = p.targets.map(t => [t.structOperId || '1', t.labelAsymId!]).filter((x, i, a) => a.indexOf(x) === i);
  331. try {
  332. // find first assembly that contains all requested structOperIds - if multiple, the first will be returned
  333. const pdbx_struct_assembly_gen = traj.obj.data.representative.sourceData.data.frame.categories.pdbx_struct_assembly_gen;
  334. if (pdbx_struct_assembly_gen) {
  335. const assembly_id = pdbx_struct_assembly_gen.getField('assembly_id');
  336. const oper_expression = pdbx_struct_assembly_gen.getField('oper_expression');
  337. const asym_id_list = pdbx_struct_assembly_gen.getField('asym_id_list');
  338. for (let i = 0, il = pdbx_struct_assembly_gen.rowCount; i < il; i++) {
  339. if (ids.some(val => !equals(oper_expression.str(i), val[0]) || asym_id_list.str(i).indexOf(val[1]) === -1)) continue;
  340. Object.assign(p, { assemblyId: assembly_id.str(i) });
  341. return;
  342. }
  343. } else {
  344. // this happens e.g. for AlphaFold structures
  345. console.warn(`Source file is missing 'pdbx_struct_assembly_gen' category`);
  346. }
  347. } catch (error) {
  348. console.warn(error);
  349. }
  350. // default to '1' if error or legitimately not found
  351. console.warn(`Could not auto-detect assembly-of-interest. Falling back to '1'`);
  352. Object.assign(p, { assemblyId: '1' });
  353. }
  354. async function initVolumeStreaming(plugin: PluginContext, structure: StructureObject, props?: { overrideRadius?: number, hiddenChannels: string[] }) {
  355. if (!structure?.cell?.parent) return;
  356. const volumeRoot = StateSelection.findTagInSubtree(structure.cell.parent.tree, structure.cell.transform.ref, VolumeStreaming.RootTag);
  357. if (!volumeRoot) {
  358. const state = plugin.state.data;
  359. const params = PD.getDefaultValues(InitVolumeStreaming.definition.params!(structure.obj!, plugin));
  360. await plugin.runTask(state.applyAction(InitVolumeStreaming, params, structure.ref));
  361. // RO-2751: allow to specify radius of shown density
  362. if (props?.overrideRadius !== void 0) {
  363. const { params, transform } = state.select(StateSelection.Generators.ofType(VolumeStreaming))[0];
  364. const p = params?.values;
  365. (p.entry.params.view.params as any).radius = props.overrideRadius;
  366. await state.build().to(transform.ref).update(p).commit();
  367. }
  368. // RO-2751: hide all but 2Fo-Fc map
  369. if (props?.hiddenChannels?.length) {
  370. const cells = state.select(StateSelection.Generators.ofTransformer(VolumeStreamingVisual));
  371. for (const cell of cells) {
  372. if (props.hiddenChannels.indexOf(cell.obj!.tags![0]) !== -1) {
  373. setSubtreeVisibility(state, cell.transform.ref, true);
  374. }
  375. }
  376. }
  377. }
  378. ViewerState(plugin).collapsed.next({
  379. ...ViewerState(plugin).collapsed.value,
  380. volume: false
  381. });
  382. }