|
@@ -7,12 +7,11 @@
|
|
|
|
|
|
import { ParamDefinition as PD } from '../../mol-util/param-definition';
|
|
import { ParamDefinition as PD } from '../../mol-util/param-definition';
|
|
import { StructureRepresentationPresetProvider, PresetStructureRepresentations } from '../../mol-plugin-state/builder/structure/representation-preset';
|
|
import { StructureRepresentationPresetProvider, PresetStructureRepresentations } from '../../mol-plugin-state/builder/structure/representation-preset';
|
|
-import { MembraneOrientationProvider, MembraneOrientation } from './prop';
|
|
|
|
|
|
+import { MembraneOrientationProvider, MembraneOrientation, TmDetDescriptorCache } from './prop';
|
|
import { StateObject, StateObjectRef, StateObjectCell, StateTransformer, StateTransform } from '../../mol-state';
|
|
import { StateObject, StateObjectRef, StateObjectCell, StateTransformer, StateTransform } from '../../mol-state';
|
|
import { Task } from '../../mol-task';
|
|
import { Task } from '../../mol-task';
|
|
import { PluginBehavior } from '../../mol-plugin/behavior';
|
|
import { PluginBehavior } from '../../mol-plugin/behavior';
|
|
import { MembraneOrientationRepresentationProvider, MembraneOrientationParams, MembraneOrientationRepresentation } from './representation';
|
|
import { MembraneOrientationRepresentationProvider, MembraneOrientationParams, MembraneOrientationRepresentation } from './representation';
|
|
-import { HydrophobicityColorThemeProvider } from '../../mol-theme/color/hydrophobicity';
|
|
|
|
import { PluginStateObject, PluginStateTransform } from '../../mol-plugin-state/objects';
|
|
import { PluginStateObject, PluginStateTransform } from '../../mol-plugin-state/objects';
|
|
import { PluginContext } from '../../mol-plugin/context';
|
|
import { PluginContext } from '../../mol-plugin/context';
|
|
import { DefaultQueryRuntimeTable } from '../../mol-script/runtime/query/compiler';
|
|
import { DefaultQueryRuntimeTable } from '../../mol-script/runtime/query/compiler';
|
|
@@ -25,8 +24,7 @@ import { ComponentsType, PDBTMDescriptor, PMS } from './types';
|
|
import { registerTmDetSymmetry } from './symmetry';
|
|
import { registerTmDetSymmetry } from './symmetry';
|
|
import { StripedResidues } from './coloring';
|
|
import { StripedResidues } from './coloring';
|
|
import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
import { TmDetColorThemeProvider } from './tmdet-color-theme';
|
|
-import { storeCameraSnapshot } from './camera';
|
|
|
|
-// import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
|
|
|
|
|
|
+import { rotateCamera, storeCameraSnapshot } from './camera'; // loadInitialSnapshot
|
|
|
|
|
|
const Tag = MembraneOrientation.Tag;
|
|
const Tag = MembraneOrientation.Tag;
|
|
const TMDET_MEMBRANE_ORIENTATION = 'Membrane Orientation';
|
|
const TMDET_MEMBRANE_ORIENTATION = 'Membrane Orientation';
|
|
@@ -109,14 +107,26 @@ export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Mem
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
// //////////////////////////// TMDET VIEWER FUNCTIONS
|
|
// //////////////////////////// TMDET VIEWER FUNCTIONS
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
export let membraneOrientation: MembraneOrientation;
|
|
export let membraneOrientation: MembraneOrientation;
|
|
|
|
|
|
export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
|
|
export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
|
|
storeCameraSnapshot(plugin);
|
|
storeCameraSnapshot(plugin);
|
|
|
|
|
|
- const pdbtmDescriptor = await downloadRegionDescriptor(plugin, params);
|
|
|
|
|
|
+ const pdbtmDescriptor: PDBTMDescriptor = await downloadRegionDescriptor(plugin, params);
|
|
|
|
+ TmDetDescriptorCache.add(pdbtmDescriptor);
|
|
|
|
|
|
membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
|
|
membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
|
|
|
|
|
|
@@ -125,7 +135,7 @@ export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIConte
|
|
// cartoon, colors etc.
|
|
// cartoon, colors etc.
|
|
await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
|
|
|
|
- //rotateCamera(plugin);
|
|
|
|
|
|
+ rotateCamera(plugin);
|
|
//
|
|
//
|
|
// reset the camera because the membranes render 1st and the structure might not be fully visible
|
|
// reset the camera because the membranes render 1st and the structure might not be fully visible
|
|
//
|
|
//
|
|
@@ -192,10 +202,27 @@ async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor:
|
|
trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
|
|
trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
// //////////////////////////// END OF TMDET VIEWER SECTION
|
|
// //////////////////////////// END OF TMDET VIEWER SECTION
|
|
|
|
|
|
//
|
|
//
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
type MembraneOrientation3DType = typeof MembraneOrientation3D
|
|
type MembraneOrientation3DType = typeof MembraneOrientation3D
|
|
const MembraneOrientation3D = PluginStateTransform.BuiltIn({
|
|
const MembraneOrientation3D = PluginStateTransform.BuiltIn({
|
|
name: Tag.Representation,
|
|
name: Tag.Representation,
|
|
@@ -258,8 +285,7 @@ export const MembraneOrientationPreset = StructureRepresentationPresetProvider({
|
|
}
|
|
}
|
|
|
|
|
|
const membraneOrientation = await tryCreateMembraneOrientation(plugin, structureCell);
|
|
const membraneOrientation = await tryCreateMembraneOrientation(plugin, structureCell);
|
|
- // TODO: change colorTheme!!!
|
|
|
|
- const colorTheme = HydrophobicityColorThemeProvider.name as any;
|
|
|
|
|
|
+ const colorTheme = TmDetColorThemeProvider.name as any;
|
|
const preset = await PresetStructureRepresentations.auto.apply(ref, { ...params, theme: { globalName: colorTheme, focus: { name: colorTheme } } }, plugin);
|
|
const preset = await PresetStructureRepresentations.auto.apply(ref, { ...params, theme: { globalName: colorTheme, focus: { name: colorTheme } } }, plugin);
|
|
|
|
|
|
return { components: preset.components, representations: { ...preset.representations, membraneOrientation } };
|
|
return { components: preset.components, representations: { ...preset.representations, membraneOrientation } };
|