123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- /**
- * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { PresetProvider } from '../preset-provider';
- import { PluginStateObject } from '../../objects';
- import { ParamDefinition as PD } from '../../../mol-util/param-definition';
- import { VisualQuality, VisualQualityOptions } from '../../../mol-geo/geometry/base';
- import { ColorTheme } from '../../../mol-theme/color';
- import { Structure } from '../../../mol-model/structure';
- import { PluginContext } from '../../../mol-plugin/context';
- import { StateObjectRef, StateObjectSelector } from '../../../mol-state';
- import { StaticStructureComponentType } from '../../helpers/structure-component';
- import { StructureSelectionQueries as Q } from '../../helpers/structure-selection-query';
- import { PluginConfig } from '../../../mol-plugin/config';
- import { StructureFocusRepresentation } from '../../../mol-plugin/behavior/dynamic/selection/structure-focus-representation';
- import { createStructureColorThemeParams } from '../../helpers/structure-representation-params';
- export interface StructureRepresentationPresetProvider<P = any, S extends _Result = _Result> extends PresetProvider<PluginStateObject.Molecule.Structure, P, S> { }
- export function StructureRepresentationPresetProvider<P, S extends _Result>(repr: StructureRepresentationPresetProvider<P, S>) { return repr; }
- export namespace StructureRepresentationPresetProvider {
- export type Params<P extends StructureRepresentationPresetProvider> = P extends StructureRepresentationPresetProvider<infer T> ? T : never;
- export type State<P extends StructureRepresentationPresetProvider> = P extends StructureRepresentationPresetProvider<infer _, infer S> ? S : never;
- export type Result = {
- components?: { [name: string]: StateObjectSelector | undefined },
- representations?: { [name: string]: StateObjectSelector | undefined }
- }
- export const CommonParams = {
- ignoreHydrogens: PD.Optional(PD.Boolean(false)),
- quality: PD.Optional(PD.Select<VisualQuality>('auto', VisualQualityOptions)),
- theme: PD.Optional(PD.Group({
- globalName: PD.Optional(PD.Text<ColorTheme.BuiltIn>('')),
- carbonByChainId: PD.Optional(PD.Boolean(true)),
- focus: PD.Optional(PD.Group({
- name: PD.Optional(PD.Text<ColorTheme.BuiltIn>('')),
- params: PD.Optional(PD.Value<ColorTheme.BuiltInParams<ColorTheme.BuiltIn>>({} as any))
- }))
- }))
- };
- export type CommonParams = PD.ValuesFor<typeof CommonParams>
- export function reprBuilder(plugin: PluginContext, params: CommonParams) {
- const update = plugin.state.data.build();
- const builder = plugin.builders.structure.representation;
- const typeParams = {
- quality: plugin.managers.structure.component.state.options.visualQuality,
- ignoreHydrogens: !plugin.managers.structure.component.state.options.showHydrogens,
- };
- if (params.quality && params.quality !== 'auto') typeParams.quality = params.quality;
- if (params.ignoreHydrogens !== void 0) typeParams.ignoreHydrogens = !!params.ignoreHydrogens;
- const color: ColorTheme.BuiltIn | undefined = params.theme?.globalName ? params.theme?.globalName : void 0;
- const ballAndStickColor: ColorTheme.BuiltInParams<'element-symbol'> = typeof params.theme?.carbonByChainId !== 'undefined' ? { carbonByChainId: !!params.theme?.carbonByChainId } : { };
- return { update, builder, color, typeParams, ballAndStickColor };
- }
- export function updateFocusRepr<T extends ColorTheme.BuiltIn>(plugin: PluginContext, structure: Structure, themeName: T | undefined, themeParams: ColorTheme.BuiltInParams<T> | undefined) {
- if (!themeName && !themeParams) return;
- return plugin.state.updateBehavior(StructureFocusRepresentation, p => {
- const c = createStructureColorThemeParams(plugin, structure, 'ball-and-stick', themeName, themeParams);
- p.surroundingsParams.colorTheme = c;
- p.targetParams.colorTheme = c;
- });
- }
- }
- type _Result = StructureRepresentationPresetProvider.Result
- const CommonParams = StructureRepresentationPresetProvider.CommonParams;
- type CommonParams = StructureRepresentationPresetProvider.CommonParams
- const reprBuilder = StructureRepresentationPresetProvider.reprBuilder;
- const updateFocusRepr = StructureRepresentationPresetProvider.updateFocusRepr;
- const auto = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-auto',
- display: {
- name: 'Automatic',
- description: 'Show representations based on the size of the structure. Smaller structures are shown with more detail than larger ones, ranging from atomistic display to coarse surfaces.'
- },
- params: () => CommonParams,
- apply(ref, params, plugin) {
- const structure = StateObjectRef.resolveAndCheck(plugin.state.data, ref)?.obj?.data;
- if (!structure) return { };
- const thresholds = plugin.config.get(PluginConfig.Structure.SizeThresholds) || Structure.DefaultSizeThresholds;
- const size = Structure.getSize(structure, thresholds);
- switch (size) {
- case Structure.Size.Gigantic:
- case Structure.Size.Huge:
- return coarseSurface.apply(ref, params, plugin);
- case Structure.Size.Large:
- return polymerCartoon.apply(ref, params, plugin);
- case Structure.Size.Medium:
- return polymerAndLigand.apply(ref, params, plugin);
- case Structure.Size.Small:
- // `showCarbohydrateSymbol: true` is nice e.g. for PDB 1aga
- return atomicDetail.apply(ref, { ...params, showCarbohydrateSymbol: true }, plugin);
- }
- }
- });
- const empty = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-empty',
- display: { name: 'Empty', description: 'Removes all existing representations.' },
- async apply(ref, params, plugin) {
- return { };
- }
- });
- const BuiltInPresetGroupName = 'Basic';
- const polymerAndLigand = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-polymer-and-ligand',
- display: {
- name: 'Polymer & Ligand', group: BuiltInPresetGroupName,
- description: 'Shows polymers as Cartoon, ligands as Ball & Stick, carbohydrates as 3D-SNFG and water molecules semi-transparent.'
- },
- params: () => CommonParams,
- async apply(ref, params, plugin) {
- const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
- if (!structureCell) return {};
- const components = {
- polymer: await presetStaticComponent(plugin, structureCell, 'polymer'),
- ligand: await presetStaticComponent(plugin, structureCell, 'ligand'),
- nonStandard: await presetStaticComponent(plugin, structureCell, 'non-standard'),
- branched: await presetStaticComponent(plugin, structureCell, 'branched', { label: 'Carbohydrate' }),
- water: await presetStaticComponent(plugin, structureCell, 'water'),
- ion: await presetStaticComponent(plugin, structureCell, 'ion'),
- lipid: await presetStaticComponent(plugin, structureCell, 'lipid'),
- coarse: await presetStaticComponent(plugin, structureCell, 'coarse')
- };
- const structure = structureCell.obj!.data;
- const cartoonProps = {
- sizeFactor: structure.isCoarseGrained ? 0.8 : 0.2,
- };
- // TODO make configurable
- const waterType = (components.water?.obj?.data?.elementCount || 0) > 50_000 ? 'line' : 'ball-and-stick';
- const lipidType = (components.lipid?.obj?.data?.elementCount || 0) > 20_000 ? 'line' : 'ball-and-stick';
- const { update, builder, typeParams, color, ballAndStickColor } = reprBuilder(plugin, params);
- const representations = {
- polymer: builder.buildRepresentation(update, components.polymer, { type: 'cartoon', typeParams: { ...typeParams, ...cartoonProps }, color }, { tag: 'polymer' }),
- ligand: builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick', typeParams, color, colorParams: ballAndStickColor }, { tag: 'ligand' }),
- nonStandard: builder.buildRepresentation(update, components.nonStandard, { type: 'ball-and-stick', typeParams, color, colorParams: ballAndStickColor }, { tag: 'non-standard' }),
- branchedBallAndStick: builder.buildRepresentation(update, components.branched, { type: 'ball-and-stick', typeParams: { ...typeParams, alpha: 0.3 }, color, colorParams: ballAndStickColor }, { tag: 'branched-ball-and-stick' }),
- branchedSnfg3d: builder.buildRepresentation(update, components.branched, { type: 'carbohydrate', typeParams, color }, { tag: 'branched-snfg-3d' }),
- water: builder.buildRepresentation(update, components.water, { type: waterType, typeParams: { ...typeParams, alpha: 0.6 }, color }, { tag: 'water' }),
- ion: builder.buildRepresentation(update, components.ion, { type: 'ball-and-stick', typeParams, color, colorParams: { carbonByChainId: false } }, { tag: 'ion' }),
- lipid: builder.buildRepresentation(update, components.lipid, { type: lipidType, typeParams: { ...typeParams, alpha: 0.6 }, color, colorParams: { carbonByChainId: false } }, { tag: 'lipid' }),
- coarse: builder.buildRepresentation(update, components.coarse, { type: 'spacefill', typeParams, color: color || 'chain-id' }, { tag: 'coarse' })
- };
- await update.commit({ revertOnError: false });
- await updateFocusRepr(plugin, structure, params.theme?.focus?.name, params.theme?.focus?.params);
- return { components, representations };
- }
- });
- const proteinAndNucleic = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-protein-and-nucleic',
- display: {
- name: 'Protein & Nucleic', group: BuiltInPresetGroupName,
- description: 'Shows proteins as Cartoon and RNA/DNA as Gaussian Surface.'
- },
- params: () => CommonParams,
- async apply(ref, params, plugin) {
- const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
- if (!structureCell) return {};
- const components = {
- protein: await presetSelectionComponent(plugin, structureCell, 'protein'),
- nucleic: await presetSelectionComponent(plugin, structureCell, 'nucleic'),
- };
- const structure = structureCell.obj!.data;
- const cartoonProps = {
- sizeFactor: structure.isCoarseGrained ? 0.8 : 0.2,
- };
- const gaussianProps = {
- radiusOffset: structure.isCoarseGrained ? 2 : 0,
- smoothness: structure.isCoarseGrained ? 0.5 : 1.5,
- };
- const { update, builder, typeParams, color } = reprBuilder(plugin, params);
- const representations = {
- protein: builder.buildRepresentation(update, components.protein, { type: 'cartoon', typeParams: { ...typeParams, ...cartoonProps }, color }, { tag: 'protein' }),
- nucleic: builder.buildRepresentation(update, components.nucleic, { type: 'gaussian-surface', typeParams: { ...typeParams, ...gaussianProps }, color }, { tag: 'nucleic' })
- };
- await update.commit({ revertOnError: true });
- await updateFocusRepr(plugin, structure, params.theme?.focus?.name, params.theme?.focus?.params);
- return { components, representations };
- }
- });
- const coarseSurface = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-coarse-surface',
- display: {
- name: 'Coarse Surface', group: BuiltInPresetGroupName,
- description: 'Shows polymers as coarse Gaussian Surface.'
- },
- params: () => CommonParams,
- async apply(ref, params, plugin) {
- const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
- if (!structureCell) return {};
- const components = {
- polymer: await presetStaticComponent(plugin, structureCell, 'polymer')
- };
- const structure = structureCell.obj!.data;
- const size = Structure.getSize(structure);
- const gaussianProps = Object.create(null);
- if (size === Structure.Size.Gigantic) {
- Object.assign(gaussianProps, {
- traceOnly: true,
- radiusOffset: 2,
- smoothness: 0.5,
- visuals: ['structure-gaussian-surface-mesh']
- });
- } else if(size === Structure.Size.Huge) {
- Object.assign(gaussianProps, {
- radiusOffset: structure.isCoarseGrained ? 2 : 0,
- smoothness: 0.5,
- });
- } else if(structure.isCoarseGrained) {
- Object.assign(gaussianProps, {
- radiusOffset: 2,
- smoothness: 0.5,
- });
- }
- const { update, builder, typeParams, color } = reprBuilder(plugin, params);
- const representations = {
- polymer: builder.buildRepresentation(update, components.polymer, { type: 'gaussian-surface', typeParams: { ...typeParams, ...gaussianProps }, color }, { tag: 'polymer' })
- };
- await update.commit({ revertOnError: true });
- await updateFocusRepr(plugin, structure, params.theme?.focus?.name, params.theme?.focus?.params);
- return { components, representations };
- }
- });
- const polymerCartoon = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-polymer-cartoon',
- display: {
- name: 'Polymer Cartoon', group: BuiltInPresetGroupName,
- description: 'Shows polymers as Cartoon.'
- },
- params: () => CommonParams,
- async apply(ref, params, plugin) {
- const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
- if (!structureCell) return {};
- const components = {
- polymer: await presetStaticComponent(plugin, structureCell, 'polymer'),
- };
- const structure = structureCell.obj!.data;
- const cartoonProps = {
- sizeFactor: structure.isCoarseGrained ? 0.8 : 0.2
- };
- const { update, builder, typeParams, color } = reprBuilder(plugin, params);
- const representations = {
- polymer: builder.buildRepresentation(update, components.polymer, { type: 'cartoon', typeParams: { ...typeParams, ...cartoonProps }, color }, { tag: 'polymer' })
- };
- await update.commit({ revertOnError: true });
- await updateFocusRepr(plugin, structure, params.theme?.focus?.name, params.theme?.focus?.params);
- return { components, representations };
- }
- });
- const atomicDetail = StructureRepresentationPresetProvider({
- id: 'preset-structure-representation-atomic-detail',
- display: {
- name: 'Atomic Detail', group: BuiltInPresetGroupName,
- description: 'Shows everything in atomic detail with Ball & Stick.'
- },
- params: () => ({
- ...CommonParams,
- showCarbohydrateSymbol: PD.Boolean(false)
- }),
- async apply(ref, params, plugin) {
- const structureCell = StateObjectRef.resolveAndCheck(plugin.state.data, ref);
- if (!structureCell) return {};
- const components = {
- all: await presetStaticComponent(plugin, structureCell, 'all'),
- branched: undefined
- };
- const structure = structureCell.obj!.data;
- const highElementCount = structure.elementCount > 200_000; // TODO make configurable
- const atomicType = highElementCount ? 'line' : 'ball-and-stick';
- const showCarbohydrateSymbol = params.showCarbohydrateSymbol && !highElementCount;
- if (showCarbohydrateSymbol) {
- Object.assign(components, {
- branched: await presetStaticComponent(plugin, structureCell, 'branched', { label: 'Carbohydrate' }),
- });
- }
- const { update, builder, typeParams, color, ballAndStickColor } = reprBuilder(plugin, params);
- const representations = {
- all: builder.buildRepresentation(update, components.all, { type: atomicType, typeParams, color, colorParams: ballAndStickColor }, { tag: 'all' }),
- };
- if (showCarbohydrateSymbol) {
- Object.assign(representations, {
- snfg3d: builder.buildRepresentation(update, components.branched, { type: 'carbohydrate', typeParams: { ...typeParams, alpha: 0.4, visuals: ['carbohydrate-symbol'] }, color }, { tag: 'snfg-3d' }),
- });
- }
- await update.commit({ revertOnError: true });
- return { components, representations };
- }
- });
- export function presetStaticComponent(plugin: PluginContext, structure: StateObjectRef<PluginStateObject.Molecule.Structure>, type: StaticStructureComponentType, params?: { label?: string, tags?: string[] }) {
- return plugin.builders.structure.tryCreateComponentStatic(structure, type, params);
- }
- export function presetSelectionComponent(plugin: PluginContext, structure: StateObjectRef<PluginStateObject.Molecule.Structure>, query: keyof typeof Q, params?: { label?: string, tags?: string[] }) {
- return plugin.builders.structure.tryCreateComponentFromSelection(structure, Q[query], `selection-${query}`, params);
- }
- export const PresetStructureRepresentations = {
- empty,
- auto,
- 'atomic-detail': atomicDetail,
- 'polymer-cartoon': polymerCartoon,
- 'polymer-and-ligand': polymerAndLigand,
- 'protein-and-nucleic': proteinAndNucleic,
- 'coarse-surface': coarseSurface
- };
- export type PresetStructureRepresentations = typeof PresetStructureRepresentations;
|