123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- /**
- * Copyright (c) 2018-2019 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 '../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 { StructureElementSelectionManager } from '../util/structure-element-selection';
- import { MarkerAction } from '../../mol-util/marker-action';
- import { ParameterControls } 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';
- 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: SequenceViewState, structureSelection: StructureElementSelectionManager): SequenceWrapper.Any | string {
- const { structure, modelEntityId, invariantUnitId, operatorKey } = state
- const l = StructureElement.Location.create()
- const [ modelIdx, entityId ] = splitModelEntityId(modelEntityId)
- for (const unit of structure.units) {
- StructureElement.Location.set(l, unit, unit.elements[0])
- if (structure.getModelIndex(unit.model) !== modelIdx) continue
- if (SP.entity.id(l) !== entityId) continue
- if (unit.invariantId !== invariantUnitId) continue
- if (opKey(l) !== operatorKey) continue
- const data = { structure, unit }
- let sw: SequenceWrapper<any>
- if (unit.polymerElements.length) {
- const l = StructureElement.Location.create(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 {
- if (Unit.isAtomic(unit) || unit.polymerElements.length > MaxDisplaySequenceLength) {
- sw = new ChainSequenceWrapper(data)
- } else {
- sw = new ElementSequenceWrapper(data)
- }
- }
- } else if (Unit.isAtomic(unit)) {
- if (unit.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.get(structure), MarkerAction.Select)
- return sw
- }
- return 'No sequence available'
- }
- function getModelEntityOptions(structure: Structure) {
- const options: [string, string][] = []
- const l = StructureElement.Location.create()
- const seen = new Set<string>()
- for (const unit of structure.units) {
- StructureElement.Location.set(l, 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
- let description = SP.entity.pdbx_description(l).join(', ')
- if (description.startsWith('Polymer ') && structure.models.length > 1) {
- 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 getUnitOptions(structure: Structure, modelEntityId: string) {
- const options: [number, string][] = []
- const l = StructureElement.Location.create()
- const seen = new Set<number>()
- const water = new Map<string, number>()
- const [ modelIdx, entityId ] = splitModelEntityId(modelEntityId)
- for (const unit of structure.units) {
- StructureElement.Location.set(l, unit, unit.elements[0])
- if (structure.getModelIndex(unit.model) !== modelIdx) continue
- if (SP.entity.id(l) !== entityId) continue
- const id = unit.invariantId
- if (seen.has(id)) continue
- // TODO handle special cases
- // - more than one chain in a unit
- // - chain spread over multiple units
- let label = ''
- if (Unit.isAtomic(unit)) {
- label = `${SP.chain.label_asym_id(l)}: ${SP.chain.auth_asym_id(l)}`
- } else {
- label = `${SP.coarse.asym_id(l)}`
- }
- if (SP.entity.type(l) === 'water') {
- const count = water.get(label) || 1
- water.set(label, count + 1)
- label += ` #${count}`
- }
- options.push([ id, label ])
- seen.add(id)
- }
- if (options.length === 0) options.push([-1, 'No units'])
- return options
- }
- function getOperatorOptions(structure: Structure, modelEntityId: string, invariantUnitId: number) {
- const options: [string, string][] = []
- const l = StructureElement.Location.create()
- const seen = new Set<string>()
- const [ modelIdx, entityId ] = splitModelEntityId(modelEntityId)
- for (const unit of structure.units) {
- StructureElement.Location.set(l, unit, unit.elements[0])
- if (structure.getModelIndex(unit.model) !== modelIdx) continue
- if (SP.entity.id(l) !== entityId) continue
- if (unit.invariantId !== invariantUnitId) 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 structures = state.select(StateSelection.Generators.rootsOfType(PSO.Molecule.Structure))
- for (const s of structures) {
- options.push([s.transform.ref, s.obj!.data.label])
- }
- if (options.length === 0) options.push(['', 'No structure'])
- return options
- }
- type SequenceViewState = {
- structure: Structure,
- structureRef: string,
- modelEntityId: string,
- invariantUnitId: number,
- operatorKey: string
- }
- export class SequenceView extends PluginUIComponent<{ }, SequenceViewState> {
- state = { structure: Structure.Empty, structureRef: '', modelEntityId: '', invariantUnitId: -1, operatorKey: '' }
- componentDidMount() {
- if (this.plugin.state.dataState.select(StateSelection.Generators.rootsOfType(PSO.Molecule.Structure)).length > 0) this.setState(this.getInitialState())
- this.subscribe(this.plugin.events.state.object.updated, ({ ref, obj }) => {
- if (ref === this.state.structureRef && obj && obj.type === PSO.Molecule.Structure.type && obj.data !== this.state.structure) {
- this.setState(this.getInitialState())
- }
- });
- this.subscribe(this.plugin.events.state.object.created, ({ obj }) => {
- if (obj && obj.type === PSO.Molecule.Structure.type) {
- this.setState(this.getInitialState())
- }
- });
- this.subscribe(this.plugin.events.state.object.removed, ({ obj }) => {
- if (obj && obj.type === PSO.Molecule.Structure.type && obj.data === this.state.structure) {
- this.setState(this.getInitialState())
- }
- });
- }
- private getStructure(ref: string) {
- const state = this.plugin.state.dataState;
- const cell = state.select(ref)[0];
- if (!ref || !cell || !cell.obj) return Structure.Empty;
- return (cell.obj as PSO.Molecule.Structure).data;
- }
- private getSequenceWrapper() {
- return getSequenceWrapper(this.state, this.plugin.helpers.structureSelectionManager)
- }
- private getInitialState(): SequenceViewState {
- // TODO reuse selected values from previous state if applicable
- const structureRef = getStructureOptions(this.plugin.state.dataState)[0][0]
- const structure = this.getStructure(structureRef)
- const modelEntityId = getModelEntityOptions(structure)[0][0]
- const invariantUnitId = getUnitOptions(structure, modelEntityId)[0][0]
- const operatorKey = getOperatorOptions(structure, modelEntityId, invariantUnitId)[0][0]
- return { structure, structureRef, modelEntityId, invariantUnitId, operatorKey }
- }
- private get params() {
- const { structure, modelEntityId, invariantUnitId } = this.state
- const structureOptions = getStructureOptions(this.plugin.state.dataState)
- const entityOptions = getModelEntityOptions(structure)
- const unitOptions = getUnitOptions(structure, modelEntityId)
- const operatorOptions = getOperatorOptions(structure, modelEntityId, invariantUnitId)
- return {
- structure: PD.Select(structureOptions[0][0], structureOptions, { shortLabel: true }),
- entity: PD.Select(entityOptions[0][0], entityOptions, { shortLabel: true }),
- unit: PD.Select(unitOptions[0][0], unitOptions, { shortLabel: true, twoColumns: true }),
- operator: PD.Select(operatorOptions[0][0], operatorOptions, { shortLabel: true, twoColumns: true })
- }
- }
- private get values(): PD.Values<SequenceView['params']> {
- return {
- structure: this.state.structureRef,
- entity: this.state.modelEntityId,
- unit: this.state.invariantUnitId,
- operator: this.state.operatorKey
- }
- }
- // TODO try to use selected option from previous state
- private setParamProps = (p: { param: PD.Base<any>, name: string, value: any }) => {
- const state = { ...this.state }
- // console.log(p.name, p.value)
- switch (p.name) {
- case 'structure':
- state.structureRef = p.value
- state.structure = this.getStructure(p.value)
- state.modelEntityId = getModelEntityOptions(state.structure)[0][0]
- state.invariantUnitId = getUnitOptions(state.structure, state.modelEntityId)[0][0]
- state.operatorKey = getOperatorOptions(state.structure, state.modelEntityId, state.invariantUnitId)[0][0]
- break
- case 'entity':
- state.modelEntityId = p.value
- state.invariantUnitId = getUnitOptions(state.structure, state.modelEntityId)[0][0]
- state.operatorKey = getOperatorOptions(state.structure, state.modelEntityId, state.invariantUnitId)[0][0]
- break
- case 'unit':
- state.invariantUnitId = p.value
- state.operatorKey = getOperatorOptions(state.structure, state.modelEntityId, state.invariantUnitId)[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-wrapper'>No structure available</div>
- </div>;
- const sequenceWrapper = this.getSequenceWrapper()
- return <div className='msp-sequence'>
- <div className='msp-sequence-select'>
- <ParameterControls params={this.params} values={this.values} onChange={this.setParamProps} />
- </div>
- {typeof sequenceWrapper === 'string'
- ? <div className='msp-sequence-wrapper msp-sequence-wrapper-non-empty'>{sequenceWrapper}</div>
- : <Sequence sequenceWrapper={sequenceWrapper} />}
- </div>;
- }
- }
|