|
@@ -8,7 +8,7 @@
|
|
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 } from './prop';
|
|
-import { StateObject, StateObjectRef, StateObjectCell, StateTransformer, StateTransform, StateBuilder } 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';
|
|
@@ -19,24 +19,13 @@ import { DefaultQueryRuntimeTable } from '../../mol-script/runtime/query/compile
|
|
import { StructureSelectionQuery, StructureSelectionCategory } from '../../mol-plugin-state/helpers/structure-selection-query';
|
|
import { StructureSelectionQuery, StructureSelectionCategory } from '../../mol-plugin-state/helpers/structure-selection-query';
|
|
import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
|
|
import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
|
|
import { GenericRepresentationRef } from '../../mol-plugin-state/manager/structure/hierarchy-state';
|
|
import { GenericRepresentationRef } from '../../mol-plugin-state/manager/structure/hierarchy-state';
|
|
-import { Expression } from '../../mol-script/language/expression';
|
|
|
|
-import { StateTransforms } from '../../mol-plugin-state/transforms';
|
|
|
|
-import { Color } from '../../mol-util/color';
|
|
|
|
-import { createStructureRepresentationParams } from '../../mol-plugin-state/helpers/structure-representation-params';
|
|
|
|
import { PluginUIContext } from '../../mol-plugin-ui/context';
|
|
import { PluginUIContext } from '../../mol-plugin-ui/context';
|
|
-import { StateObjectSelector } from "../../mol-state/object";
|
|
|
|
-import { applyTransformations, createMembraneOrientation, getAtomGroupExpression } from './transformation';
|
|
|
|
-import { PDBTMDescriptor, PDBTMRegion, PMS } from './types';
|
|
|
|
|
|
+import { applyTransformations, createMembraneOrientation } from './transformation';
|
|
|
|
+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';
|
|
|
|
|
|
-type StructureComponentType = StateObjectSelector<
|
|
|
|
- PMS,
|
|
|
|
- StateTransformer<StateObject<any, StateObject.Type<any>>,
|
|
|
|
- StateObject<any, StateObject.Type<any>>, any>
|
|
|
|
- > | undefined;
|
|
|
|
-
|
|
|
|
const Tag = MembraneOrientation.Tag;
|
|
const Tag = MembraneOrientation.Tag;
|
|
|
|
|
|
export const TMDETMembraneOrientation = PluginBehavior.create<{ autoAttach: boolean }>({
|
|
export const TMDETMembraneOrientation = PluginBehavior.create<{ autoAttach: boolean }>({
|
|
@@ -128,46 +117,15 @@ export async function loadWithUNITMPMembraneRepresentation(plugin: PluginUIConte
|
|
|
|
|
|
// load structure
|
|
// load structure
|
|
await loadStructure(plugin, params, pdbtmDescriptor);
|
|
await loadStructure(plugin, params, pdbtmDescriptor);
|
|
-
|
|
|
|
|
|
+ // cartoon, colors etc.
|
|
await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
await createStructureRepresentation(plugin, pdbtmDescriptor);
|
|
|
|
|
|
- await customTheme(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
|
|
//
|
|
//
|
|
requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset());
|
|
requestAnimationFrame(() => plugin.canvas3d?.requestCameraReset());
|
|
}
|
|
}
|
|
|
|
|
|
-export async function customColor(plugin: PluginUIContext) {
|
|
|
|
- // color theme code:
|
|
|
|
- plugin.dataTransaction(async () => {
|
|
|
|
- console.log("data transaction...");
|
|
|
|
- for (const s of plugin.managers.structure.hierarchy.current.structures) {
|
|
|
|
- console.log("structure.components:", s.components);
|
|
|
|
- await plugin.managers.structure.component.updateRepresentationsTheme(s.components, { color: StripedResidues.propertyProvider.descriptor.name as any });
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-export async function customTheme(plugin: PluginUIContext) {
|
|
|
|
- plugin.dataTransaction(async () => {
|
|
|
|
- console.log("data transaction...");
|
|
|
|
- for (const s of plugin.managers.structure.hierarchy.current.structures) {
|
|
|
|
- console.log("structure.components:", s.components);
|
|
|
|
- await plugin.managers.structure.component.updateRepresentationsTheme(
|
|
|
|
- s.components,
|
|
|
|
- {
|
|
|
|
- color: TmDetColorThemeProvider.name as any,
|
|
|
|
- colorParams: { pdbtmDescriptor: 3 }
|
|
|
|
- }
|
|
|
|
- );
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
|
|
async function downloadRegionDescriptor(plugin: PluginUIContext, params: any): Promise<any> {
|
|
// run a fetch task
|
|
// run a fetch task
|
|
const downloadResult: string = await plugin.runTask(plugin.fetch({ url: params.regionDescriptorUrl })) as string;
|
|
const downloadResult: string = await plugin.runTask(plugin.fetch({ url: params.regionDescriptorUrl })) as string;
|
|
@@ -182,47 +140,7 @@ async function createStructureRepresentation(plugin: PluginUIContext, pdbtmDescr
|
|
|
|
|
|
await applyTransformations(plugin, pdbtmDescriptor);
|
|
await applyTransformations(plugin, pdbtmDescriptor);
|
|
|
|
|
|
- await buildStructureRepresentation(plugin, components);
|
|
|
|
-
|
|
|
|
- // TODO: colors of not curated sites
|
|
|
|
- const siteColors = [
|
|
|
|
- [255,100,100], // Side1
|
|
|
|
- [100,100,255], // Side2
|
|
|
|
- [255,255,0], // TM alpha
|
|
|
|
- [255,255,0], // TM beta
|
|
|
|
- [255,127,0], // TM re-entrant loop
|
|
|
|
- [0,255, 0], // Interfacial Helix
|
|
|
|
- [196,196,196], // Unknow localization
|
|
|
|
- [0,255, 0], // Membrane Inside
|
|
|
|
- ];
|
|
|
|
- // const siteDefinitions = pdbtmDescriptor.sites.map(
|
|
|
|
- // (siteDefinition: any) => siteDefinition.label
|
|
|
|
- // );
|
|
|
|
-
|
|
|
|
- pdbtmDescriptor.chains.forEach((chain: any) => {
|
|
|
|
-
|
|
|
|
- let regionsBySite: PDBTMRegion[] = siteColors.map((color):PDBTMRegion => {
|
|
|
|
- // TODO: set 'site' appropriately
|
|
|
|
- return { site: "valami", auth_ids: [], color: color };
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- for (let residueItem of chain.residues) {
|
|
|
|
- const siteIndex = residueItem.site_data[0].site_id_ref - 1;
|
|
|
|
- regionsBySite[siteIndex].auth_ids.push(Number(residueItem.pdb_res_label));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- console.log(`REGIONS-${chain.chain_label}`, regionsBySite);
|
|
|
|
- regionsBySite.forEach(async (region: PDBTMRegion) => {
|
|
|
|
- if (region.auth_ids.length == 0) { return; }
|
|
|
|
-
|
|
|
|
- console.log("auth_ids: ", region.auth_ids);
|
|
|
|
- console.log("color: ", region.color);
|
|
|
|
- const regionUpdates = plugin.build();
|
|
|
|
- await createRegionRepresentation(plugin, chain.chain_label, region, regionUpdates.to(structure));
|
|
|
|
- regionUpdates.commit();
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- });
|
|
|
|
|
|
+ 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: PluginUIContext, structure: StateObjectCell<PMS, StateTransform<StateTransformer<StateObject<any, StateObject.Type<any>>, StateObject<any, StateObject.Type<any>>, any>>>) {
|
|
@@ -233,27 +151,16 @@ async function createStructureComponents(plugin: PluginUIContext, structure: Sta
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
-async function createRegionRepresentation(plugin: PluginUIContext, chain: string, residue: PDBTMRegion, update: StateBuilder.To<any, any>) {
|
|
|
|
- const lastIdIndex: number = residue.auth_ids.length - 1;
|
|
|
|
- const regionLabel: string = `${chain}: ${residue.auth_ids[0]}-${residue.auth_ids[lastIdIndex]} | ${residue.site}`;
|
|
|
|
- const color: Color = Color.fromArray(residue.color, 0);
|
|
|
|
- const query: Expression = getAtomGroupExpression(chain, residue.auth_ids);
|
|
|
|
- console.log("regionLabel:", regionLabel);
|
|
|
|
-
|
|
|
|
- // based on https://github.com/molstar/molstar/issues/209
|
|
|
|
- update
|
|
|
|
- .apply(StateTransforms.Model.StructureSelectionFromExpression, { label: regionLabel, expression: query })
|
|
|
|
- .apply(StateTransforms.Representation.StructureRepresentation3D, createStructureRepresentationParams(plugin, update.selector.data, {
|
|
|
|
- color: 'uniform',
|
|
|
|
- colorParams: { value: color }
|
|
|
|
- }));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-async function buildStructureRepresentation(plugin: PluginUIContext, components: { polymer: StructureComponentType; ligand: StructureComponentType; water: StructureComponentType }) {
|
|
|
|
|
|
+async function buildStructureRepresentation(plugin: PluginUIContext, pdbtmDescriptor: PDBTMDescriptor, components: ComponentsType) {
|
|
const builder = plugin.builders.structure.representation;
|
|
const builder = plugin.builders.structure.representation;
|
|
const update = plugin.build();
|
|
const update = plugin.build();
|
|
if (components.polymer)
|
|
if (components.polymer)
|
|
- builder.buildRepresentation(update, components.polymer, { type: 'cartoon', typeParams: { alpha: 0.5 } }, { tag: 'polymer' });
|
|
|
|
|
|
+ builder.buildRepresentation(update, components.polymer, {
|
|
|
|
+ type: 'cartoon',
|
|
|
|
+ color: TmDetColorThemeProvider.name as any, colorParams: { pdbtmDescriptor }
|
|
|
|
+ },
|
|
|
|
+ { tag: 'polymer' }
|
|
|
|
+ );
|
|
if (components.ligand)
|
|
if (components.ligand)
|
|
builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick' }, { tag: 'ligand' });
|
|
builder.buildRepresentation(update, components.ligand, { type: 'ball-and-stick' }, { tag: 'ligand' });
|
|
if (components.water)
|
|
if (components.water)
|
|
@@ -274,14 +181,6 @@ async function loadStructure(ctx: PluginUIContext, params: any, pdbtmDescriptor:
|
|
}); // , { state: { isGhost: true } });
|
|
}); // , { state: { isGhost: true } });
|
|
const trajectory = await builders.structure.parseTrajectory(data, 'mmcif');
|
|
const trajectory = await builders.structure.parseTrajectory(data, 'mmcif');
|
|
|
|
|
|
- // TODO: DEBUG logs
|
|
|
|
- // console.log('ATOMIC CONFORMATION', trajectory.data!.representative.atomicConformation);
|
|
|
|
- // console.log('ATOMIC RANGES', trajectory.data!.representative.atomicRanges);
|
|
|
|
- // console.log('ATOMIC HIER', trajectory.data!.representative.atomicHierarchy);
|
|
|
|
- // console.log('ATOMIC ENTITIES', trajectory.data!.representative.entities);
|
|
|
|
-
|
|
|
|
- //ctx.managers.structure.hierarchy.getStructuresWithSelection();
|
|
|
|
-
|
|
|
|
// create membrane representation
|
|
// create membrane representation
|
|
await builders.structure.hierarchy.applyPreset(
|
|
await builders.structure.hierarchy.applyPreset(
|
|
trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
|
|
trajectory, 'default', { representationPreset: 'preset-membrane-orientation' as any });
|