123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- /**
- * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import * as React from 'react';
- import { PluginUIComponent } from './base';
- import { PluginStateObject as PSO } from '../mol-plugin-state/objects';
- import { Sequence } from './sequence/sequence';
- import { Structure, StructureElement, StructureProperties as SP, Unit } from '../mol-model/structure';
- import { SequenceWrapper } from './sequence/wrapper';
- import { PolymerSequenceWrapper } from './sequence/polymer';
- import { MarkerAction } from '../mol-util/marker-action';
- import { PureSelectControl } from './controls/parameters';
- import { ParamDefinition as PD } from '../mol-util/param-definition';
- import { HeteroSequenceWrapper } from './sequence/hetero';
- import { State, StateSelection } from '../mol-state';
- import { ChainSequenceWrapper } from './sequence/chain';
- import { ElementSequenceWrapper } from './sequence/element';
- import { elementLabel } from '../mol-theme/label';
- import { Icon, HelpOutlineSvg } from './controls/icons';
- import { StructureSelectionManager } from '../mol-plugin-state/manager/structure/selection';
- import { arrayEqual } from '../mol-util/array';
- const MaxDisplaySequenceLength = 5000;
- function opKey(l: StructureElement.Location) {
- const ids = SP.unit.pdbx_struct_oper_list_ids(l);
- const ncs = SP.unit.struct_ncs_oper_id(l);
- const hkl = SP.unit.hkl(l);
- const spgrOp = SP.unit.spgrOp(l);
- return `${ids.sort().join(',')}|${ncs}|${hkl}|${spgrOp}`;
- }
- function splitModelEntityId(modelEntityId: string) {
- const [modelIdx, entityId] = modelEntityId.split('|');
- return [parseInt(modelIdx), entityId];
- }
- function getSequenceWrapper(state: { structure: Structure, modelEntityId: string, chainGroupId: number, operatorKey: string }, structureSelection: StructureSelectionManager): SequenceWrapper.Any | string {
- const { structure, modelEntityId, chainGroupId, operatorKey } = state;
- const l = StructureElement.Location.create(structure);
- const [modelIdx, entityId] = splitModelEntityId(modelEntityId);
- const units: Unit[] = [];
- for (const unit of structure.units) {
- StructureElement.Location.set(l, structure, unit, unit.elements[0]);
- if (structure.getModelIndex(unit.model) !== modelIdx) continue;
- if (SP.entity.id(l) !== entityId) continue;
- if (unit.chainGroupId !== chainGroupId) continue;
- if (opKey(l) !== operatorKey) continue;
- units.push(unit);
- }
- if (units.length > 0) {
- const data = { structure, units };
- const unit = units[0];
- let sw: SequenceWrapper<any>;
- if (unit.polymerElements.length) {
- const l = StructureElement.Location.create(structure, unit, unit.elements[0]);
- const entitySeq = unit.model.sequence.byEntityKey[SP.entity.key(l)];
- // check if entity sequence is available
- if (entitySeq && entitySeq.sequence.length <= MaxDisplaySequenceLength) {
- sw = new PolymerSequenceWrapper(data);
- } else {
- const polymerElementCount = units.reduce((a, v) => a + v.polymerElements.length, 0);
- if (Unit.isAtomic(unit) || polymerElementCount > MaxDisplaySequenceLength) {
- sw = new ChainSequenceWrapper(data);
- } else {
- sw = new ElementSequenceWrapper(data);
- }
- }
- } else if (Unit.isAtomic(unit)) {
- const residueCount = units.reduce((a, v) => a + (v as Unit.Atomic).residueCount, 0);
- if (residueCount > MaxDisplaySequenceLength) {
- sw = new ChainSequenceWrapper(data);
- } else {
- sw = new HeteroSequenceWrapper(data);
- }
- } else {
- console.warn('should not happen, expecting coarse units to be polymeric');
- sw = new ChainSequenceWrapper(data);
- }
- sw.markResidue(structureSelection.getLoci(structure), MarkerAction.Select);
- return sw;
- } else {
- return 'No sequence available';
- }
- }
- function getModelEntityOptions(structure: Structure, polymersOnly = false) {
- const options: [string, string][] = [];
- const l = StructureElement.Location.create(structure);
- const seen = new Set<string>();
- for (const unit of structure.units) {
- StructureElement.Location.set(l, structure, unit, unit.elements[0]);
- const id = SP.entity.id(l);
- const modelIdx = structure.getModelIndex(unit.model);
- const key = `${modelIdx}|${id}`;
- if (seen.has(key)) continue;
- if (polymersOnly && SP.entity.type(l) !== 'polymer') continue;
- let description = SP.entity.pdbx_description(l).join(', ');
- if (structure.models.length) {
- if (structure.representativeModel) { // indicates model trajectory
- description += ` (Model ${structure.models[modelIdx].modelNum})`;
- } else if (description.startsWith('Polymer ')) { // indicates generic entity name
- description += ` (${structure.models[modelIdx].entry})`;
- }
- }
- const label = `${id}: ${description}`;
- options.push([key, label]);
- seen.add(key);
- }
- if (options.length === 0) options.push(['', 'No entities']);
- return options;
- }
- function getChainOptions(structure: Structure, modelEntityId: string) {
- const options: [number, string][] = [];
- const l = StructureElement.Location.create(structure);
- const seen = new Set<number>();
- const [modelIdx, entityId] = splitModelEntityId(modelEntityId);
- for (const unit of structure.units) {
- StructureElement.Location.set(l, structure, unit, unit.elements[0]);
- if (structure.getModelIndex(unit.model) !== modelIdx) continue;
- if (SP.entity.id(l) !== entityId) continue;
- const id = unit.chainGroupId;
- if (seen.has(id)) continue;
- // TODO handle special case
- // - more than one chain in a unit
- let label = elementLabel(l, { granularity: 'chain', hidePrefix: true, htmlStyling: false });
- options.push([id, label]);
- seen.add(id);
- }
- if (options.length === 0) options.push([-1, 'No units']);
- return options;
- }
- function getOperatorOptions(structure: Structure, modelEntityId: string, chainGroupId: number) {
- const options: [string, string][] = [];
- const l = StructureElement.Location.create(structure);
- const seen = new Set<string>();
- const [modelIdx, entityId] = splitModelEntityId(modelEntityId);
- for (const unit of structure.units) {
- StructureElement.Location.set(l, structure, unit, unit.elements[0]);
- if (structure.getModelIndex(unit.model) !== modelIdx) continue;
- if (SP.entity.id(l) !== entityId) continue;
- if (unit.chainGroupId !== chainGroupId) continue;
- const id = opKey(l);
- if (seen.has(id)) continue;
- const label = unit.conformation.operator.name;
- options.push([id, label]);
- seen.add(id);
- }
- if (options.length === 0) options.push(['', 'No operators']);
- return options;
- }
- function getStructureOptions(state: State) {
- const options: [string, string][] = [];
- const all: Structure[] = [];
- const structures = state.select(StateSelection.Generators.rootsOfType(PSO.Molecule.Structure));
- for (const s of structures) {
- if (!s.obj?.data) continue;
- all.push(s.obj.data);
- options.push([s.transform.ref, s.obj!.data.label]);
- }
- if (options.length === 0) options.push(['', 'No structure']);
- return { options, all };
- }
- export type SequenceViewMode = 'single' | 'polymers' | 'all'
- const SequenceViewModeParam = PD.Select<SequenceViewMode>('single', [['single', 'Chain'], ['polymers', 'Polymers'], ['all', 'Everything']]);
- type SequenceViewState = {
- structureOptions: { options: [string, string][], all: Structure[] },
- structure: Structure,
- structureRef: string,
- modelEntityId: string,
- chainGroupId: number,
- operatorKey: string,
- mode: SequenceViewMode
- }
- export class SequenceView extends PluginUIComponent<{ defaultMode?: SequenceViewMode }, SequenceViewState> {
- state: SequenceViewState = { structureOptions: { options: [], all: [] }, structure: Structure.Empty, structureRef: '', modelEntityId: '', chainGroupId: -1, operatorKey: '', mode: 'single' }
- componentDidMount() {
- if (this.plugin.state.data.select(StateSelection.Generators.rootsOfType(PSO.Molecule.Structure)).length > 0) this.setState(this.getInitialState());
- this.subscribe(this.plugin.state.events.object.updated, ({ ref, obj }) => {
- if (ref === this.state.structureRef && obj && obj.type === PSO.Molecule.Structure.type && obj.data !== this.state.structure) {
- this.sync();
- }
- });
- this.subscribe(this.plugin.state.events.object.created, ({ obj }) => {
- if (obj && obj.type === PSO.Molecule.Structure.type) {
- this.sync();
- }
- });
- this.subscribe(this.plugin.state.events.object.removed, ({ obj }) => {
- if (obj && obj.type === PSO.Molecule.Structure.type && obj.data === this.state.structure) {
- this.sync();
- }
- });
- }
- private sync() {
- const structureOptions = getStructureOptions(this.plugin.state.data);
- if (arrayEqual(structureOptions.all, this.state.structureOptions.all)) return;
- this.setState(this.getInitialState());
- }
- private getStructure(ref: string) {
- const state = this.plugin.state.data;
- const cell = state.select(ref)[0];
- if (!ref || !cell || !cell.obj) return Structure.Empty;
- return (cell.obj as PSO.Molecule.Structure).data;
- }
- private getSequenceWrapper(params: SequenceView['params']) {
- return {
- wrapper: getSequenceWrapper(this.state, this.plugin.managers.structure.selection),
- label: `${PD.optionLabel(params.chain, this.state.chainGroupId)} | ${PD.optionLabel(params.entity, this.state.modelEntityId)}`
- };
- }
- private getSequenceWrappers(params: SequenceView['params']) {
- if (this.state.mode === 'single') return [this.getSequenceWrapper(params)];
- const structure = this.getStructure(this.state.structureRef);
- const wrappers: { wrapper: (string | SequenceWrapper.Any), label: string }[] = [];
- for (const [modelEntityId, eLabel] of getModelEntityOptions(structure, this.state.mode === 'polymers')) {
- for (const [chainGroupId, cLabel] of getChainOptions(structure, modelEntityId)) {
- for (const [operatorKey] of getOperatorOptions(structure, modelEntityId, chainGroupId)) {
- wrappers.push({
- wrapper: getSequenceWrapper({
- structure,
- modelEntityId,
- chainGroupId,
- operatorKey
- }, this.plugin.managers.structure.selection),
- label: `${cLabel} | ${eLabel}`
- });
- }
- }
- }
- return wrappers;
- }
- private getInitialState(): SequenceViewState {
- const structureOptions = getStructureOptions(this.plugin.state.data);
- const structureRef = structureOptions.options[0][0];
- const structure = this.getStructure(structureRef);
- let modelEntityId = getModelEntityOptions(structure)[0][0];
- let chainGroupId = getChainOptions(structure, modelEntityId)[0][0];
- let operatorKey = getOperatorOptions(structure, modelEntityId, chainGroupId)[0][0];
- if (this.state.structure && this.state.structure === structure) {
- modelEntityId = this.state.modelEntityId;
- chainGroupId = this.state.chainGroupId;
- operatorKey = this.state.operatorKey;
- }
- return { structureOptions, structure, structureRef, modelEntityId, chainGroupId, operatorKey, mode: this.props.defaultMode ?? 'single' };
- }
- private get params() {
- const { structureOptions, structure, modelEntityId, chainGroupId } = this.state;
- const entityOptions = getModelEntityOptions(structure);
- const chainOptions = getChainOptions(structure, modelEntityId);
- const operatorOptions = getOperatorOptions(structure, modelEntityId, chainGroupId);
- return {
- structure: PD.Select(structureOptions.options[0][0], structureOptions.options, { shortLabel: true }),
- entity: PD.Select(entityOptions[0][0], entityOptions, { shortLabel: true }),
- chain: PD.Select(chainOptions[0][0], chainOptions, { shortLabel: true, twoColumns: true, label: 'Chain' }),
- operator: PD.Select(operatorOptions[0][0], operatorOptions, { shortLabel: true, twoColumns: true }),
- mode: SequenceViewModeParam
- };
- }
- private get values(): PD.Values<SequenceView['params']> {
- return {
- structure: this.state.structureRef,
- entity: this.state.modelEntityId,
- chain: this.state.chainGroupId,
- operator: this.state.operatorKey,
- mode: this.state.mode
- };
- }
- private setParamProps = (p: { param: PD.Base<any>, name: string, value: any }) => {
- const state = { ...this.state };
- switch (p.name) {
- case 'mode':
- state.mode = p.value;
- if (this.state.mode === state.mode) return;
- if (state.mode === 'all' || state.mode === 'polymers') {
- break;
- }
- case 'structure':
- if (p.name === 'structure') state.structureRef = p.value;
- state.structure = this.getStructure(state.structureRef);
- state.modelEntityId = getModelEntityOptions(state.structure)[0][0];
- state.chainGroupId = getChainOptions(state.structure, state.modelEntityId)[0][0];
- state.operatorKey = getOperatorOptions(state.structure, state.modelEntityId, state.chainGroupId)[0][0];
- break;
- case 'entity':
- state.modelEntityId = p.value;
- state.chainGroupId = getChainOptions(state.structure, state.modelEntityId)[0][0];
- state.operatorKey = getOperatorOptions(state.structure, state.modelEntityId, state.chainGroupId)[0][0];
- break;
- case 'chain':
- state.chainGroupId = p.value;
- state.operatorKey = getOperatorOptions(state.structure, state.modelEntityId, state.chainGroupId)[0][0];
- break;
- case 'operator':
- state.operatorKey = p.value;
- break;
- }
- this.setState(state);
- }
- render() {
- if (this.getStructure(this.state.structureRef) === Structure.Empty) {
- return <div className='msp-sequence'>
- <div className='msp-sequence-select'>
- <Icon svg={HelpOutlineSvg} style={{ cursor: 'help', position: 'absolute', right: 0, top: 0 }}
- title='Shows a sequence of one or more chains. Use the controls to alter selection.' />
- <span>Sequence</span><span style={{ fontWeight: 'normal' }}>No structure available</span>
- </div>
- </div>;
- }
- const params = this.params;
- const values = this.values;
- const sequenceWrappers = this.getSequenceWrappers(params);
- return <div className='msp-sequence'>
- <div className='msp-sequence-select'>
- <Icon svg={HelpOutlineSvg} style={{ cursor: 'help', position: 'absolute', right: 0, top: 0 }}
- title='This shows a single sequence. Use the controls to show a different sequence.' />
- <span>Sequence of</span>
- <PureSelectControl title={`[Structure] ${PD.optionLabel(params.structure, values.structure)}`} param={params.structure} name='structure' value={values.structure} onChange={this.setParamProps} />
- <PureSelectControl title={`[Mode]`} param={SequenceViewModeParam} name='mode' value={values.mode} onChange={this.setParamProps} />
- {values.mode === 'single' && <PureSelectControl title={`[Entity] ${PD.optionLabel(params.entity, values.entity)}`} param={params.entity} name='entity' value={values.entity} onChange={this.setParamProps} />}
- {values.mode === 'single' && <PureSelectControl title={`[Chain] ${PD.optionLabel(params.chain, values.chain)}`} param={params.chain} name='chain' value={values.chain} onChange={this.setParamProps} />}
- {params.operator.options.length > 1 && <>
- <PureSelectControl title={`[Instance] ${PD.optionLabel(params.operator, values.operator)}`} param={params.operator} name='operator' value={values.operator} onChange={this.setParamProps} />
- </>}
- </div>
- <NonEmptySequenceWrapper>
- {sequenceWrappers.map((s, i) => {
- const elem = typeof s.wrapper === 'string'
- ? <div key={i} className='msp-sequence-wrapper'>{s.wrapper}</div>
- : <Sequence key={i} sequenceWrapper={s.wrapper} />;
- if (values.mode === 'single') return elem;
- return <React.Fragment key={i}>
- <div className='msp-sequence-chain-label'>{s.label}</div>
- {elem}
- </React.Fragment>;
- })}
- </NonEmptySequenceWrapper>
- </div>;
- }
- }
- function NonEmptySequenceWrapper({ children }: { children: React.ReactNode }) {
- return <div className='msp-sequence-wrapper-non-empty'>
- {children}
- </div>;
- }
|