|
@@ -30,7 +30,7 @@ import { PluginUIContext } from 'molstar/lib/mol-plugin-ui/context';
|
|
|
|
|
|
// TMDET imports
|
|
|
import { MembraneOrientationRepresentationProvider, MembraneOrientationParams, MembraneOrientationRepresentation } from './representation';
|
|
|
-import { MembraneOrientationProvider, MembraneOrientation, TmDetDescriptorCache } from './prop';
|
|
|
+import { MembraneOrientationProvider, MembraneOrientation, TmDetDescriptorCache, MembraneOrientationNameSpace } from './prop';
|
|
|
import { applyTransformations, createMembraneOrientation } from './transformation';
|
|
|
import { ComponentsType, PDBTMDescriptor, PMS } from './types';
|
|
|
import { registerTmDetSymmetry } from './symmetry';
|
|
@@ -39,7 +39,7 @@ import { TmDetColorThemeProvider, updateSiteColors } from './tmdet-color-theme';
|
|
|
//import { loadInitialSnapshot, rotateCamera, storeCameraSnapshot } from './camera';
|
|
|
import { DebugUtil } from './debug-utils';
|
|
|
|
|
|
-const Tag = MembraneOrientation.Tag;
|
|
|
+const Tag = MembraneOrientationNameSpace.Tag;
|
|
|
const TMDET_MEMBRANE_ORIENTATION = 'TMDET Membrane Orientation';
|
|
|
export const TMDET_STRUCTURE_PRESET_ID = 'tmdet-preset-membrane-orientation';
|
|
|
|
|
@@ -110,7 +110,7 @@ export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Mem
|
|
|
MS.struct.modifier.union([
|
|
|
MS.struct.generator.atomGroups({
|
|
|
'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
|
|
|
- 'atom-test': MembraneOrientation.symbols.isTransmembrane.symbol(),
|
|
|
+ 'atom-test': MembraneOrientationNameSpace.symbols.isTransmembrane.symbol(),
|
|
|
})
|
|
|
])
|
|
|
])
|
|
@@ -133,6 +133,9 @@ export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Mem
|
|
|
|
|
|
|
|
|
export let membraneOrientation: MembraneOrientation;
|
|
|
+export function setMembraneOrientation(orientation: MembraneOrientation) {
|
|
|
+ membraneOrientation = orientation;
|
|
|
+}
|
|
|
|
|
|
export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
|
|
|
//storeCameraSnapshot(plugin); // store if it is not stored yet
|
|
@@ -161,15 +164,6 @@ export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIConte
|
|
|
})(); }, 500);
|
|
|
}
|
|
|
|
|
|
-export async function registerRegionDescriptor(plugin: PluginUIContext, url: string, side1: "Inside"|"Outside"|null) {
|
|
|
- const params = { regionDescriptorUrl: url };
|
|
|
- const pdbtmDescriptor: PDBTMDescriptor = await downloadRegionDescriptor(plugin, params);
|
|
|
- pdbtmDescriptor.side1 = side1;
|
|
|
- TmDetDescriptorCache.add(pdbtmDescriptor);
|
|
|
- membraneOrientation = createMembraneOrientation(pdbtmDescriptor);
|
|
|
- DebugUtil.log('TMDET Membrane Orientation Params:', membraneOrientation);
|
|
|
-}
|
|
|
-
|
|
|
async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
|
|
|
// run a fetch task
|
|
|
const downloadResult: string = await plugin.runTask(plugin.fetch({ url: params.regionDescriptorUrl })) as string;
|