|
@@ -24,7 +24,6 @@ import { DefaultQueryRuntimeTable } from '../mol-script/runtime/query/compiler';
|
|
|
import { StructureSelectionQuery, StructureSelectionCategory } from '../mol-plugin-state/helpers/structure-selection-query';
|
|
|
import { MolScriptBuilder as MS } from '../mol-script/language/builder';
|
|
|
import { GenericRepresentationRef } from '../mol-plugin-state/manager/structure/hierarchy-state';
|
|
|
-import { PluginUIContext } from '../mol-plugin-ui/context';
|
|
|
|
|
|
|
|
|
// TMDET imports
|
|
@@ -133,7 +132,7 @@ export const isTransmembrane = StructureSelectionQuery('Residues Embedded in Mem
|
|
|
|
|
|
|
|
|
|
|
|
-export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIContext, params: any) {
|
|
|
+export async function loadWithUNITMPMembraneRepresentation(plugin: PluginContext, params: any) {
|
|
|
//storeCameraSnapshot(plugin); // store if it is not stored yet
|
|
|
|
|
|
//loadInitialSnapshot(plugin); // load if there is a stored one
|
|
@@ -161,14 +160,14 @@ export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIConte
|
|
|
})(); }, 500);
|
|
|
}
|
|
|
|
|
|
-async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
|
|
|
+async function downloadRegionDescriptor(plugin: PluginContext, params: any): Promise<any> {
|
|
|
// run a fetch task
|
|
|
const downloadResult: string = await plugin.runTask(plugin.fetch({ url: params.regionDescriptorUrl })) as string;
|
|
|
const pdbtmDescriptor: any = JSON.parse(downloadResult);
|
|
|
return pdbtmDescriptor;
|
|
|
}
|
|
|
|
|
|
-async function createStructureRepresentation(plugin: PluginUIContext, pdbtmDescriptor: any) {
|
|
|
+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);
|
|
@@ -178,7 +177,7 @@ async function createStructureRepresentation(plugin: PluginUIContext, pdbtmDescr
|
|
|
await buildStructureRepresentation(plugin, pdbtmDescriptor, components);
|
|
|
}
|
|
|
|
|
|
-async function createStructureComponents(plugin: PluginUIContext, structure: StateObjectCell<PMS, StateTransform<StateTransformer<StateObject<any, StateObject.Type<any>>, StateObject<any, StateObject.Type<any>>, any>>>) {
|
|
|
+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'),
|
|
@@ -186,7 +185,7 @@ async function createStructureComponents(plugin: PluginUIContext, structure: Sta
|
|
|
};
|
|
|
}
|
|
|
|
|
|
-async function buildStructureRepresentation(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor, components: ComponentsType) {
|
|
|
+async function buildStructureRepresentation(plugin: PluginContext, pdbtmDescriptor: PDBTMDescriptor, components: ComponentsType) {
|
|
|
const builder = plugin.builders.structure.representation;
|
|
|
const update = plugin.build();
|
|
|
if (components.polymer) {
|
|
@@ -204,7 +203,7 @@ async function buildStructureRepresentation(plugin: PluginUIContext, pdbtmDescri
|
|
|
await update.commit();
|
|
|
}
|
|
|
|
|
|
-async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor: PDBTMDescriptor): Promise<void> {
|
|
|
+async function loadStructure(ctx: PluginContext, params: any, pdbtmDescriptor: PDBTMDescriptor): Promise<void> {
|
|
|
|
|
|
// replace original symmetry format function
|
|
|
registerTmDetSymmetry(pdbtmDescriptor);
|
|
@@ -236,7 +235,7 @@ async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor:
|
|
|
}
|
|
|
|
|
|
|
|
|
-async function downloadData(ctx: PluginUIContext, params: any, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
+async function downloadData(ctx: PluginContext, params: any, pdbtmDescriptor: PDBTMDescriptor) {
|
|
|
|
|
|
const builders = ctx.builders;
|
|
|
let downloadResult = await ctx.runTask(ctx.fetch({ url: params.structureUrl, type: "string" }));
|