123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- /**
- * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import { createPlugin, DefaultPluginSpec } from 'mol-plugin';
- import './index.html'
- import { PluginContext } from 'mol-plugin/context';
- import { PluginCommands } from 'mol-plugin/command';
- import { StateTransforms } from 'mol-plugin/state/transforms';
- import { StructureRepresentation3DHelpers } from 'mol-plugin/state/transforms/representation';
- import { Color } from 'mol-util/color';
- import { PluginStateObject as PSO, PluginStateObject } from 'mol-plugin/state/objects';
- import { AnimateModelIndex } from 'mol-plugin/state/animation/built-in';
- import {StateBuilder, StateObject} from 'mol-state';
- import { EvolutionaryConservation } from './annotation';
- import { LoadParams, SupportedFormats, RepresentationStyle, ModelInfo } from './helpers';
- import { RxEventHelper } from 'mol-util/rx-event-helper';
- import { ControlsWrapper } from './ui/controls';
- import { PluginState } from 'mol-plugin/state';
- import { Canvas3D } from 'mol-canvas3d/canvas3d';
- require('mol-plugin/skin/light.scss')
- class MolStarPLYWrapper {
- static VERSION_MAJOR = 2;
- static VERSION_MINOR = 0;
- private _ev = RxEventHelper.create();
- readonly events = {
- modelInfo: this._ev<ModelInfo>()
- };
- plugin: PluginContext;
- init(target: string | HTMLElement) {
- this.plugin = createPlugin(typeof target === 'string' ? document.getElementById(target)! : target, {
- ...DefaultPluginSpec,
- layout: {
- initial: {
- isExpanded: false,
- showControls: false
- },
- controls: {
- right: ControlsWrapper
- }
- }
- });
- this.plugin.structureRepresentation.themeCtx.colorThemeRegistry.add(EvolutionaryConservation.Descriptor.name, EvolutionaryConservation.colorTheme!);
- this.plugin.lociLabels.addProvider(EvolutionaryConservation.labelProvider);
- this.plugin.customModelProperties.register(EvolutionaryConservation.propertyProvider);
- }
- get state() {
- return this.plugin.state.dataState;
- }
- get klick(){
- this.plugin.canvas3d.interaction.click.subscribe(e =>{
- console.log('atomID', e)
- aminoAcid = 169;
- })
- return 0
- }
- private download(b: StateBuilder.To<PSO.Root>, url: string) {
- return b.apply(StateTransforms.Data.Download, { url, isBinary: false })
- }
- private model(b: StateBuilder.To<PSO.Data.Binary | PSO.Data.String>, format: SupportedFormats, assemblyId: string) {
- const parsed = format === 'cif'
- ? b.apply(StateTransforms.Data.ParseCif).apply(StateTransforms.Model.TrajectoryFromMmCif)
- : b.apply(StateTransforms.Model.TrajectoryFromPDB);
- return parsed
- .apply(StateTransforms.Model.ModelFromTrajectory, { modelIndex: 0 }, { ref: 'model' });
- }
- private plyData(b: StateBuilder.To<PSO.Data.String>) {
- return b.apply(StateTransforms.Data.ParsePly)
- .apply(StateTransforms.Model.ShapeFromPly)
- .apply(StateTransforms.Representation.ShapeRepresentation3D);
- }
- private structure(assemblyId: string) {
- const model = this.state.build().to('model');
- return model
- .apply(StateTransforms.Model.CustomModelProperties, { properties: [EvolutionaryConservation.Descriptor.name] }, { ref: 'props', props: { isGhost: false } })
- .apply(StateTransforms.Model.StructureAssemblyFromModel, { id: assemblyId || 'deposited' }, { ref: 'asm' });
- }
- private visual(ref: string, style?: RepresentationStyle) {
- const structure = this.getObj<PluginStateObject.Molecule.Structure>(ref);
- if (!structure) return;
- const root = this.state.build().to(ref);
- root.apply(StateTransforms.Model.StructureComplexElement, { type: 'atomic-sequence' }, { ref: 'sequence' })
- .apply(StateTransforms.Representation.StructureRepresentation3D,
- StructureRepresentation3DHelpers.getDefaultParamsWithTheme(this.plugin,
- (style && style.sequence && style.sequence.kind) || 'cartoon',
- (style && style.sequence && style.sequence.coloring) || 'unit-index', structure),
- { ref: 'sequence-visual' });
- root.apply(StateTransforms.Model.StructureComplexElement, { type: 'atomic-het' }, { ref: 'het' })
- .apply(StateTransforms.Representation.StructureRepresentation3D,
- StructureRepresentation3DHelpers.getDefaultParamsWithTheme(this.plugin,
- (style && style.hetGroups && style.hetGroups.kind) || 'ball-and-stick',
- (style && style.hetGroups && style.hetGroups.coloring), structure),
- { ref: 'het-visual' });
- root.apply(StateTransforms.Model.StructureComplexElement, { type: 'water' }, { ref: 'water' })
- .apply(StateTransforms.Representation.StructureRepresentation3D,
- StructureRepresentation3DHelpers.getDefaultParamsWithTheme(this.plugin,
- (style && style.water && style.water.kind) || 'ball-and-stick',
- (style && style.water && style.water.coloring), structure, { alpha: 0.51 }),
- { ref: 'water-visual' });
- return root;
- }
- private getObj<T extends StateObject>(ref: string): T['data'] {
- const state = this.state;
- const cell = state.select(ref)[0];
- if (!cell || !cell.obj) return void 0;
- return (cell.obj as T).data;
- }
- private async doInfo(checkPreferredAssembly: boolean) {
- const model = this.getObj<PluginStateObject.Molecule.Model>('model');
- if (!model) return;
- const info = await ModelInfo.get(this.plugin, model, checkPreferredAssembly)
- this.events.modelInfo.next(info);
- return info;
- }
- private applyState(tree: StateBuilder) {
- return PluginCommands.State.Update.dispatch(this.plugin, { state: this.plugin.state.dataState, tree });
- }
- private loadedParams: LoadParams = { plyurl: '', url: '', format: 'cif', assemblyId: '' };
- async load({ plyurl, url, format = 'cif', assemblyId = '', representationStyle }: LoadParams) {
- let loadType: 'full' | 'update' = 'full';
- const state = this.plugin.state.dataState;
- if (this.loadedParams.plyurl !== plyurl || this.loadedParams.url !== url || this.loadedParams.format !== format) {
- loadType = 'full';
- } else if (this.loadedParams.url === url) {
- if (state.select('asm').length > 0) loadType = 'update';
- }
- if (loadType === 'full') {
- await PluginCommands.State.RemoveObject.dispatch(this.plugin, { state, ref: state.tree.root.ref });
- // pdb/cif loading
- const modelTree = this.model(this.download(state.build().toRoot(), url), format, assemblyId);
- await this.applyState(modelTree);
- const info = await this.doInfo(true);
- const structureTree = this.structure((assemblyId === 'preferred' && info && info.preferredAssemblyId) || assemblyId);
- await this.applyState(structureTree);
- // ply loading
- const modelTreePly = this.plyData(this.download(state.build().toRoot(), plyurl));
- await this.applyState(modelTreePly);
- } else {
- const tree = state.build();
- tree.to('asm').update(StateTransforms.Model.StructureAssemblyFromModel, p => ({ ...p, id: assemblyId || 'deposited' }));
- await this.applyState(tree);
- }
- await this.updateStyle(representationStyle);
- this.loadedParams = { plyurl, url, format, assemblyId };
- PluginCommands.Camera.Reset.dispatch(this.plugin, { });
- }
- async updateStyle(style?: RepresentationStyle) {
- const tree = this.visual('asm', style);
- if (!tree) return;
- await PluginCommands.State.Update.dispatch(this.plugin, { state: this.plugin.state.dataState, tree });
- }
- setBackground(color: number) {
- PluginCommands.Canvas3D.SetSettings.dispatch(this.plugin, { settings: { backgroundColor: Color(color) } });
- }
- toggleSpin() {
- const trackball = this.plugin.canvas3d.props.trackball;
- const spinning = trackball.spin;
- PluginCommands.Canvas3D.SetSettings.dispatch(this.plugin, { settings: { trackball: { ...trackball, spin: !trackball.spin } } });
- if (!spinning) PluginCommands.Camera.Reset.dispatch(this.plugin, { });
- }
- animate = {
- modelIndex: {
- maxFPS: 8,
- onceForward: () => { this.plugin.state.animation.play(AnimateModelIndex, { maxFPS: Math.max(0.5, this.animate.modelIndex.maxFPS | 0), mode: { name: 'once', params: { direction: 'forward' } } }) },
- onceBackward: () => { this.plugin.state.animation.play(AnimateModelIndex, { maxFPS: Math.max(0.5, this.animate.modelIndex.maxFPS | 0), mode: { name: 'once', params: { direction: 'backward' } } }) },
- palindrome: () => { this.plugin.state.animation.play(AnimateModelIndex, { maxFPS: Math.max(0.5, this.animate.modelIndex.maxFPS | 0), mode: { name: 'palindrome', params: {} } }) },
- loop: () => { this.plugin.state.animation.play(AnimateModelIndex, { maxFPS: Math.max(0.5, this.animate.modelIndex.maxFPS | 0), mode: { name: 'loop', params: {} } }) },
- stop: () => this.plugin.state.animation.stop()
- }
- }
- coloring = {
- evolutionaryConservation: async () => {
- await this.updateStyle({ sequence: { kind: 'spacefill' } });
- const state = this.state;
- // const visuals = state.selectQ(q => q.ofType(PluginStateObject.Molecule.Structure.Representation3D).filter(c => c.transform.transformer === StateTransforms.Representation.StructureRepresentation3D));
- const tree = state.build();
- const colorTheme = { name: EvolutionaryConservation.Descriptor.name, params: this.plugin.structureRepresentation.themeCtx.colorThemeRegistry.get(EvolutionaryConservation.Descriptor.name).defaultValues };
- tree.to('sequence-visual').update(StateTransforms.Representation.StructureRepresentation3D, old => ({ ...old, colorTheme }));
- // for (const v of visuals) {
- // }
- await PluginCommands.State.Update.dispatch(this.plugin, { state, tree });
- }
- }
- snapshot = {
- get: () => {
- return this.plugin.state.getSnapshot();
- },
- set: (snapshot: PluginState.Snapshot) => {
- return this.plugin.state.setSnapshot(snapshot);
- },
- download: async (url: string) => {
- try {
- const data = await this.plugin.runTask(this.plugin.fetch({ url }));
- const snapshot = JSON.parse(data);
- await this.plugin.state.setSnapshot(snapshot);
- } catch (e) {
- console.log(e);
- }
- }
- }
- }
- (window as any).MolStarPLYWrapper = MolStarPLYWrapper;
|