|
@@ -15,7 +15,7 @@
|
|
|
|
|
|
import { ParamDefinition as PD } from '../mol-util/param-definition';
|
|
|
import { StructureRepresentationPresetProvider, PresetStructureRepresentations } from '../mol-plugin-state/builder/structure/representation-preset';
|
|
|
-import { StateObject, StateObjectRef, StateObjectCell, StateTransformer, StateTransform } from '../mol-state';
|
|
|
+import { StateObjectRef, StateTransformer, StateTransform, StateObjectSelector } from '../mol-state';
|
|
|
import { Task } from '../mol-task';
|
|
|
import { PluginBehavior } from '../mol-plugin/behavior';
|
|
|
import { PluginStateObject, PluginStateTransform } from '../mol-plugin-state/objects';
|
|
@@ -29,13 +29,14 @@ import { GenericRepresentationRef } from '../mol-plugin-state/manager/structure/
|
|
|
// TMDET imports
|
|
|
import { MembraneOrientationRepresentationProvider, MembraneOrientationParams, MembraneOrientationRepresentation } from './representation';
|
|
|
import { MembraneOrientationProvider, TmDetDescriptorCache, isTransmembrane as tmSymbol, setMembraneOrientation } from './prop';
|
|
|
-import { applyTransformations, createMembraneOrientation } from './transformation';
|
|
|
-import { ComponentsType, PDBTMDescriptor, PMS } from './types';
|
|
|
+import { createMembraneOrientation } from './transformation';
|
|
|
+import { PDBTMDescriptor, PMS } from './types';
|
|
|
import { registerTmDetSymmetry } from './symmetry';
|
|
|
import { TmDetLabelProvider } from './labeling';
|
|
|
import { TmDetColorThemeProvider, updateSiteColors } from './tmdet-color-theme';
|
|
|
//import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
|
|
|
import { DebugUtil } from './debug-utils';
|
|
|
+import { StateTransforms } from '../mol-plugin-state/transforms';
|
|
|
|
|
|
const TMDET_MEMB_ORI_REPRESENTATION_TAG = 'tmdet-membrane-orientation-3d';
|
|
|
const TMDET_MEMBRANE_ORIENTATION = 'TMDET Membrane Orientation';
|
|
@@ -150,8 +151,6 @@ export async function loadWithUNITMPMembraneRepresentation(plugin: PluginContext
|
|
|
|
|
|
// load structure
|
|
|
await loadStructure(plugin, params, pdbtmDescriptor);
|
|
|
- // cartoon, colors etc.
|
|
|
- await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
|
|
|
|
//
|
|
|
// It also resets the camera because the membranes render 1st and the structure might not be fully visible
|
|
@@ -167,42 +166,6 @@ async function downloadRegionDescriptor(plugin: PluginContext, params: any): Pro
|
|
|
return pdbtmDescriptor;
|
|
|
}
|
|
|
|
|
|
-async function createStructureRepresentation(plugin: PluginContext, pdbtmDescriptor: any) {
|
|
|
- // get the first structure of the first model
|
|
|
- const structure: StateObjectRef<PMS> = plugin.managers.structure.hierarchy.current.models[0].structures[0].cell;
|
|
|
- const components = await createStructureComponents(plugin, structure);
|
|
|
-
|
|
|
- applyTransformations(plugin, pdbtmDescriptor);
|
|
|
-
|
|
|
- await buildStructureRepresentation(plugin, pdbtmDescriptor, components);
|
|
|
-}
|
|
|
-
|
|
|
-async function createStructureComponents(plugin: PluginContext, structure: StateObjectCell<PMS, StateTransform<StateTransformer<StateObject<any, StateObject.Type<any>>, StateObject<any, StateObject.Type<any>>, any>>>) {
|
|
|
- return {
|
|
|
- polymer: await plugin.builders.structure.tryCreateComponentStatic(structure, 'polymer'),
|
|
|
- ligand: await plugin.builders.structure.tryCreateComponentStatic(structure, 'ligand'),
|
|
|
- water: await plugin.builders.structure.tryCreateComponentStatic(structure, 'water'),
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-async function buildStructureRepresentation(plugin: PluginContext, pdbtmDescriptor: PDBTMDescriptor, components: ComponentsType) {
|
|
|
- const builder = plugin.builders.structure.representation;
|
|
|
- const update = plugin.build();
|
|
|
- if (components.polymer) {
|
|
|
- builder.buildRepresentation(update, components.polymer, {
|
|
|
- type: 'cartoon',
|
|
|
- color: TmDetColorThemeProvider.name as any, colorParams: { pdbtmDescriptor }
|
|
|
- },
|
|
|
- { tag: 'polymer' }
|
|
|
- );
|
|
|
- }
|
|
|
- if (components.ligand)
|
|
|
- builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick' }, { tag: 'ligand' });
|
|
|
- if (components.water)
|
|
|
- builder.buildRepresentation(update, components.water, { type: 'ball-and-stick', typeParams: { alpha: 0.6 } }, { tag: 'water' });
|
|
|
- await update.commit();
|
|
|
-}
|
|
|
-
|
|
|
async function loadStructure(ctx: PluginContext, params: any, pdbtmDescriptor: PDBTMDescriptor): Promise<void> {
|
|
|
|
|
|
// replace original symmetry format function
|
|
@@ -228,6 +191,26 @@ async function loadStructure(ctx: PluginContext, params: any, pdbtmDescriptor: P
|
|
|
|
|
|
const trajectory = await builders.structure.parseTrajectory(data, format);
|
|
|
|
|
|
+ const modelParams = { modelIndex: 0 };
|
|
|
+ const props = {
|
|
|
+ type: {
|
|
|
+ name: 'assembly' as const,
|
|
|
+ params: { id: '1' }
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ await ctx.state.data.build().to(trajectory)
|
|
|
+ .apply(StateTransforms.Model.ModelFromTrajectory, modelParams, { ref: 'model' })
|
|
|
+ .apply(StateTransforms.Model.StructureFromModel, props, { ref: 'assembly' })
|
|
|
+ .commit();
|
|
|
+
|
|
|
+ const builder = ctx.builders.structure;
|
|
|
+ const model = new StateObjectSelector(ctx.state.data.build().to('model').ref, ctx.state.data);
|
|
|
+ await builder.insertModelProperties(model.ref);
|
|
|
+ const structure = new StateObjectSelector(ctx.state.data.build().to('assembly').ref, ctx.state.data);
|
|
|
+ const structureProperties = await builder.insertStructureProperties(structure);
|
|
|
+ await ctx.builders.structure.representation.applyPreset<any>(structureProperties, MembraneOrientationPreset, {});
|
|
|
+
|
|
|
|
|
|
// create membrane representation
|
|
|
await builders.structure.hierarchy.applyPreset(
|
|
@@ -320,8 +303,8 @@ export const MembraneOrientationPreset = StructureRepresentationPresetProvider({
|
|
|
|
|
|
const membraneOrientation = await tryCreateMembraneOrientation(plugin, structureCell);
|
|
|
const colorTheme = TmDetColorThemeProvider.name as any;
|
|
|
- console.log('MembOriPreset apply params:', params);
|
|
|
- console.log('MembOriPreset ref:', ref);
|
|
|
+ // console.log('MembOriPreset apply params:', params);
|
|
|
+ // console.log('MembOriPreset ref:', ref);
|
|
|
const preset = await PresetStructureRepresentations.auto.apply(ref, { ...params, theme: { globalName: colorTheme, focus: { name: colorTheme } } }, plugin);
|
|
|
|
|
|
return { components: preset.components, representations: { ...preset.representations, membraneOrientation } };
|