123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646 |
- /**
- * Copyright (c) 2019-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 { CustomProperty } from '../../mol-model-props/common/custom-property';
- import { QueryContext, Structure, StructureQuery, StructureSelection, StructureProperties, StructureElement } from '../../mol-model/structure';
- import { BondType, NucleicBackboneAtoms, ProteinBackboneAtoms, SecondaryStructureType, AminoAcidNamesL, RnaBaseNames, DnaBaseNames, WaterNames, ElementSymbol } from '../../mol-model/structure/model/types';
- import { PluginContext } from '../../mol-plugin/context';
- import { MolScriptBuilder as MS } from '../../mol-script/language/builder';
- import Expression from '../../mol-script/language/expression';
- import { compile } from '../../mol-script/runtime/query/compiler';
- import { StateBuilder } from '../../mol-state';
- import { RuntimeContext } from '../../mol-task';
- import { SetUtils } from '../../mol-util/set';
- import { PluginStateObject } from '../objects';
- import { StateTransforms } from '../transforms';
- import { ElementNames } from '../../mol-model/structure/model/properties/atomic/types';
- export enum StructureSelectionCategory {
- Type = 'Type',
- Structure = 'Structure Property',
- Atom = 'Atom Property',
- Bond = 'Bond Property',
- Residue = 'Residue Property',
- AminoAcid = 'Amino Acid',
- NucleicBase = 'Nucleic Base',
- Manipulate = 'Manipulate Selection',
- Validation = 'Validation',
- Misc = 'Miscellaneous',
- Internal = 'Internal',
- }
- export { StructureSelectionQuery };
- interface StructureSelectionQuery {
- readonly label: string
- readonly expression: Expression
- readonly description: string
- readonly category: string
- readonly isHidden: boolean
- readonly priority: number
- readonly referencesCurrent: boolean
- readonly query: StructureQuery
- readonly ensureCustomProperties?: (ctx: CustomProperty.Context, structure: Structure) => Promise<void>
- getSelection(plugin: PluginContext, runtime: RuntimeContext, structure: Structure): Promise<StructureSelection>
- }
- interface StructureSelectionQueryProps {
- description?: string
- category?: string
- isHidden?: boolean
- priority?: number
- referencesCurrent?: boolean
- ensureCustomProperties?: (ctx: CustomProperty.Context, structure: Structure) => Promise<void>
- }
- function StructureSelectionQuery(label: string, expression: Expression, props: StructureSelectionQueryProps = {}): StructureSelectionQuery {
- let _query: StructureQuery;
- return {
- label,
- expression,
- description: props.description || '',
- category: props.category ?? StructureSelectionCategory.Misc,
- isHidden: !!props.isHidden,
- priority: props.priority || 0,
- referencesCurrent: !!props.referencesCurrent,
- get query() {
- if (!_query) _query = compile<StructureSelection>(expression);
- return _query;
- },
- ensureCustomProperties: props.ensureCustomProperties,
- async getSelection(plugin, runtime, structure) {
- const current = plugin.managers.structure.selection.getStructure(structure);
- const currentSelection = current ? StructureSelection.Sequence(structure, [current]) : StructureSelection.Empty(structure);
- if (props.ensureCustomProperties) {
- await props.ensureCustomProperties({ runtime, assetManager: plugin.managers.asset }, structure);
- }
- if (!_query) _query = compile<StructureSelection>(expression);
- return _query(new QueryContext(structure, { currentSelection }));
- }
- };
- }
- const all = StructureSelectionQuery('All', MS.struct.generator.all(), { category: '', priority: 1000 });
- const current = StructureSelectionQuery('Current Selection', MS.internal.generator.current(), { category: '', referencesCurrent: true });
- const polymer = StructureSelectionQuery('Polymer', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.logic.and([
- MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- MS.core.str.match([
- MS.re('(polypeptide|cyclic-pseudo-peptide|nucleotide|peptide nucleic acid)', 'i'),
- MS.ammp('entitySubtype')
- ])
- ])
- })
- ]), { category: StructureSelectionCategory.Type });
- const trace = StructureSelectionQuery('Trace', MS.struct.modifier.union([
- MS.struct.combinator.merge([
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- 'chain-test': MS.core.set.has([
- MS.set('sphere', 'gaussian'), MS.ammp('objectPrimitive')
- ])
- })
- ]),
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.set.has([MS.set('CA', 'P'), MS.ammp('label_atom_id')])
- })
- ])
- ])
- ]), { category: StructureSelectionCategory.Structure });
- const _proteinEntityTest = MS.core.logic.and([
- MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- MS.core.str.match([
- MS.re('(polypeptide|cyclic-pseudo-peptide)', 'i'),
- MS.ammp('entitySubtype')
- ])
- ]);
- const _nucleiEntityTest = MS.core.logic.and([
- MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- MS.core.str.match([
- MS.re('(nucleotide|peptide nucleic acid)', 'i'),
- MS.ammp('entitySubtype')
- ])
- ]);
- // TODO maybe pre-calculate backbone atom properties
- const backbone = StructureSelectionQuery('Backbone', MS.struct.modifier.union([
- MS.struct.combinator.merge([
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _proteinEntityTest,
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.set.has([MS.set(...SetUtils.toArray(ProteinBackboneAtoms)), MS.ammp('label_atom_id')])
- })
- ]),
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _nucleiEntityTest,
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.set.has([MS.set(...SetUtils.toArray(NucleicBackboneAtoms)), MS.ammp('label_atom_id')])
- })
- ])
- ])
- ]), { category: StructureSelectionCategory.Structure });
- // TODO maybe pre-calculate sidechain atom property
- const sidechain = StructureSelectionQuery('Sidechain', MS.struct.modifier.union([
- MS.struct.combinator.merge([
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _proteinEntityTest,
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.logic.or([
- MS.core.logic.not([
- MS.core.set.has([MS.set(...SetUtils.toArray(ProteinBackboneAtoms)), MS.ammp('label_atom_id')])
- ])
- ])
- })
- ]),
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _nucleiEntityTest,
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.logic.or([
- MS.core.logic.not([
- MS.core.set.has([MS.set(...SetUtils.toArray(NucleicBackboneAtoms)), MS.ammp('label_atom_id')])
- ])
- ])
- })
- ])
- ])
- ]), { category: StructureSelectionCategory.Structure });
- // TODO maybe pre-calculate sidechain atom property
- const sidechainWithTrace = StructureSelectionQuery('Sidechain with Trace', MS.struct.modifier.union([
- MS.struct.combinator.merge([
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _proteinEntityTest,
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.logic.or([
- MS.core.logic.not([
- MS.core.set.has([MS.set(...SetUtils.toArray(ProteinBackboneAtoms)), MS.ammp('label_atom_id')])
- ]),
- MS.core.rel.eq([MS.ammp('label_atom_id'), 'CA']),
- MS.core.logic.and([
- MS.core.rel.eq([MS.ammp('auth_comp_id'), 'PRO']),
- MS.core.rel.eq([MS.ammp('label_atom_id'), 'N'])
- ])
- ])
- })
- ]),
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _nucleiEntityTest,
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'atom-test': MS.core.logic.or([
- MS.core.logic.not([
- MS.core.set.has([MS.set(...SetUtils.toArray(NucleicBackboneAtoms)), MS.ammp('label_atom_id')])
- ]),
- MS.core.rel.eq([MS.ammp('label_atom_id'), 'P'])
- ])
- })
- ])
- ])
- ]), { category: StructureSelectionCategory.Structure });
- const protein = StructureSelectionQuery('Protein', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({ 'entity-test': _proteinEntityTest })
- ]), { category: StructureSelectionCategory.Type });
- const nucleic = StructureSelectionQuery('Nucleic', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({ 'entity-test': _nucleiEntityTest })
- ]), { category: StructureSelectionCategory.Type });
- const helix = StructureSelectionQuery('Helix', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _proteinEntityTest,
- 'residue-test': MS.core.flags.hasAny([
- MS.ammp('secondaryStructureFlags'),
- MS.core.type.bitflags([SecondaryStructureType.Flag.Helix])
- ])
- })
- ]), { category: StructureSelectionCategory.Structure });
- const beta = StructureSelectionQuery('Beta Strand/Sheet', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': _proteinEntityTest,
- 'residue-test': MS.core.flags.hasAny([
- MS.ammp('secondaryStructureFlags'),
- MS.core.type.bitflags([SecondaryStructureType.Flag.Beta])
- ])
- })
- ]), { category: StructureSelectionCategory.Structure });
- const water = StructureSelectionQuery('Water', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.rel.eq([MS.ammp('entityType'), 'water'])
- })
- ]), { category: StructureSelectionCategory.Type });
- const branched = StructureSelectionQuery('Carbohydrate', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.logic.or([
- MS.core.rel.eq([MS.ammp('entityType'), 'branched']),
- MS.core.logic.and([
- MS.core.rel.eq([MS.ammp('entityType'), 'non-polymer']),
- MS.core.str.match([
- MS.re('oligosaccharide', 'i'),
- MS.ammp('entitySubtype')
- ])
- ])
- ])
- })
- ]), { category: StructureSelectionCategory.Type });
- const branchedPlusConnected = StructureSelectionQuery('Carbohydrate with Connected', MS.struct.modifier.union([
- MS.struct.modifier.includeConnected({
- 0: branched.expression, 'layer-count': 1, 'as-whole-residues': true
- })
- ]), { category: StructureSelectionCategory.Internal, isHidden: true });
- const branchedConnectedOnly = StructureSelectionQuery('Connected to Carbohydrate', MS.struct.modifier.union([
- MS.struct.modifier.exceptBy({
- 0: branchedPlusConnected.expression,
- by: branched.expression
- })
- ]), { category: StructureSelectionCategory.Internal, isHidden: true });
- const ligand = StructureSelectionQuery('Ligand', MS.struct.modifier.union([
- MS.struct.combinator.merge([
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.logic.and([
- MS.core.rel.eq([MS.ammp('entityType'), 'non-polymer']),
- MS.core.logic.not([MS.core.str.match([
- MS.re('oligosaccharide', 'i'),
- MS.ammp('entitySubtype')
- ])])
- ]),
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'residue-test': MS.core.logic.not([
- MS.core.str.match([MS.re('saccharide', 'i'), MS.ammp('chemCompType')])
- ])
- })
- ]),
- // this is to get non-polymer and peptide terminus components in polymer entities,
- // - non-polymer, e.g. PXZ in 4HIV or generally ACE
- // - carboxy terminus, e.g. FC0 in 4BP9, or ETA in 6DDE
- // - amino terminus, e.g. ARF in 3K4V, or 4MM in 3EGV
- MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'residue-test': MS.core.str.match([
- MS.re('non-polymer|(amino|carboxy) terminus|peptide-like', 'i'),
- MS.ammp('chemCompType')
- ])
- })
- ])
- ]),
- ]), { category: StructureSelectionCategory.Type });
- // don't include branched entities as they have their own link representation
- const ligandPlusConnected = StructureSelectionQuery('Ligand with Connected', MS.struct.modifier.union([
- MS.struct.modifier.exceptBy({
- 0: MS.struct.modifier.union([
- MS.struct.modifier.includeConnected({
- 0: ligand.expression,
- 'layer-count': 1,
- 'as-whole-residues': true,
- 'bond-test': MS.core.flags.hasAny([
- MS.struct.bondProperty.flags(),
- MS.core.type.bitflags([
- BondType.Flag.Covalent | BondType.Flag.MetallicCoordination
- ])
- ])
- })
- ]),
- by: branched.expression
- })
- ]), { category: StructureSelectionCategory.Internal, isHidden: true });
- const ligandConnectedOnly = StructureSelectionQuery('Connected to Ligand', MS.struct.modifier.union([
- MS.struct.modifier.exceptBy({
- 0: ligandPlusConnected.expression,
- by: ligand.expression
- })
- ]), { category: StructureSelectionCategory.Internal, isHidden: true });
- // residues connected to ligands or branched entities
- const connectedOnly = StructureSelectionQuery('Connected to Ligand or Carbohydrate', MS.struct.modifier.union([
- MS.struct.combinator.merge([
- branchedConnectedOnly.expression,
- ligandConnectedOnly.expression
- ]),
- ]), { category: StructureSelectionCategory.Internal, isHidden: true });
- const disulfideBridges = StructureSelectionQuery('Disulfide Bridges', MS.struct.modifier.union([
- MS.struct.modifier.wholeResidues([
- MS.struct.modifier.union([
- MS.struct.generator.bondedAtomicPairs({
- 0: MS.core.flags.hasAny([
- MS.struct.bondProperty.flags(),
- MS.core.type.bitflags([BondType.Flag.Disulfide])
- ])
- })
- ])
- ])
- ]), { category: StructureSelectionCategory.Bond });
- const nonStandardPolymer = StructureSelectionQuery('Non-standard Residues in Polymers', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.rel.eq([MS.ammp('entityType'), 'polymer']),
- 'chain-test': MS.core.rel.eq([MS.ammp('objectPrimitive'), 'atomistic']),
- 'residue-test': MS.ammp('isNonStandard')
- })
- ]), { category: StructureSelectionCategory.Residue });
- const coarse = StructureSelectionQuery('Coarse Elements', MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'chain-test': MS.core.set.has([
- MS.set('sphere', 'gaussian'), MS.ammp('objectPrimitive')
- ])
- })
- ]), { category: StructureSelectionCategory.Type });
- const ring = StructureSelectionQuery('Rings in Residues', MS.struct.modifier.union([
- MS.struct.generator.rings()
- ]), { category: StructureSelectionCategory.Residue });
- const aromaticRing = StructureSelectionQuery('Aromatic Rings in Residues', MS.struct.modifier.union([
- MS.struct.generator.rings({ 'only-aromatic': true })
- ]), { category: StructureSelectionCategory.Residue });
- const surroundings = StructureSelectionQuery('Surrounding Residues (5 \u212B) of Selection', MS.struct.modifier.union([
- MS.struct.modifier.exceptBy({
- 0: MS.struct.modifier.includeSurroundings({
- 0: MS.internal.generator.current(),
- radius: 5,
- 'as-whole-residues': true
- }),
- by: MS.internal.generator.current()
- })
- ]), {
- description: 'Select residues within 5 \u212B of the current selection.',
- category: StructureSelectionCategory.Manipulate,
- referencesCurrent: true
- });
- const complement = StructureSelectionQuery('Inverse / Complement of Selection', MS.struct.modifier.union([
- MS.struct.modifier.exceptBy({
- 0: MS.struct.generator.all(),
- by: MS.internal.generator.current()
- })
- ]), {
- description: 'Select everything not in the current selection.',
- category: StructureSelectionCategory.Manipulate,
- referencesCurrent: true
- });
- const covalentlyBonded = StructureSelectionQuery('Residues Covalently Bonded to Selection', MS.struct.modifier.union([
- MS.struct.modifier.includeConnected({
- 0: MS.internal.generator.current(), 'layer-count': 1, 'as-whole-residues': true
- })
- ]), {
- description: 'Select residues covalently bonded to current selection.',
- category: StructureSelectionCategory.Manipulate,
- referencesCurrent: true
- });
- const covalentlyOrMetallicBonded = StructureSelectionQuery('Residues with Cov. or Metallic Bond to Selection', MS.struct.modifier.union([
- MS.struct.modifier.includeConnected({
- 0: MS.internal.generator.current(),
- 'layer-count': 1,
- 'as-whole-residues': true,
- 'bond-test': MS.core.flags.hasAny([
- MS.struct.bondProperty.flags(),
- MS.core.type.bitflags([
- BondType.Flag.Covalent | BondType.Flag.MetallicCoordination
- ])
- ])
- })
- ]), {
- description: 'Select residues covalently bonded to current selection.',
- category: StructureSelectionCategory.Manipulate,
- referencesCurrent: true
- });
- const wholeResidues = StructureSelectionQuery('Whole Residues of Selection', MS.struct.modifier.union([
- MS.struct.modifier.wholeResidues({
- 0: MS.internal.generator.current()
- })
- ]), {
- description: 'Expand current selection to whole residues.',
- category: StructureSelectionCategory.Manipulate,
- referencesCurrent: true
- });
- const StandardAminoAcids = [
- [['HIS'], 'Histidine'],
- [['ARG'], 'Arginine'],
- [['LYS'], 'Lysine'],
- [['ILE'], 'Isoleucine'],
- [['PHE'], 'Phenylalanine'],
- [['LEU'], 'Leucine'],
- [['TRP'], 'Tryptophan'],
- [['ALA'], 'Alanine'],
- [['MET'], 'Methionine'],
- [['PRO'], 'Proline'],
- [['CYS'], 'Cysteine'],
- [['ASN'], 'Asparagine'],
- [['VAL'], 'Valine'],
- [['GLY'], 'Glycine'],
- [['SER'], 'Serine'],
- [['GLN'], 'Glutamine'],
- [['TYR'], 'Tyrosine'],
- [['ASP'], 'Aspartic Acid'],
- [['GLU'], 'Glutamic Acid'],
- [['THR'], 'Threonine'],
- [['SEC'], 'Selenocysteine'],
- [['PYL'], 'Pyrrolysine'],
- [['UNK'], 'Unknown'],
- ].sort((a, b) => a[1] < b[1] ? -1 : a[1] > b[1] ? 1 : 0) as [string[], string][];
- const StandardNucleicBases = [
- [['A', 'DA'], 'Adenosine'],
- [['C', 'DC'], 'Cytidine'],
- [['T', 'DT'], 'Thymidine'],
- [['G', 'DG'], 'Guanosine'],
- [['I', 'DI'], 'Inosine'],
- [['U', 'DU'], 'Uridine'],
- [['N', 'DN'], 'Unknown'],
- ].sort((a, b) => a[1] < b[1] ? -1 : a[1] > b[1] ? 1 : 0) as [string[], string][];
- export function ResidueQuery([names, label]: [string[], string], category: string, priority = 0) {
- const description = names.length === 1 && !StandardResidues.has(names[0])
- ? `[${names[0]}] ${label}`
- : `${label} (${names.join(', ')})`;
- return StructureSelectionQuery(description, MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'residue-test': MS.core.set.has([MS.set(...names), MS.ammp('auth_comp_id')])
- })
- ]), { category, priority, description });
- }
- export function ElementSymbolQuery([names, label]: [string[], string], category: string, priority: number) {
- const description = `${label} (${names.join(', ')})`;
- return StructureSelectionQuery(description, MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'atom-test': MS.core.set.has([MS.set(...names), MS.acp('elementSymbol')])
- })
- ]), { category, priority, description });
- }
- export function EntityDescriptionQuery([names, label]: [string[], string], category: string, priority: number) {
- const description = `${label}`;
- return StructureSelectionQuery(`${label}`, MS.struct.modifier.union([
- MS.struct.generator.atomGroups({
- 'entity-test': MS.core.list.equal([MS.list(...names), MS.ammp('entityDescription')])
- })
- ]), { category, priority, description });
- }
- const StandardResidues = SetUtils.unionMany(
- AminoAcidNamesL, RnaBaseNames, DnaBaseNames, WaterNames
- );
- export function getElementQueries(structures: Structure[]) {
- const uniqueElements = new Set<ElementSymbol>();
- for (const structure of structures) {
- structure.uniqueElementSymbols.forEach(e => uniqueElements.add(e));
- }
- const queries: StructureSelectionQuery[] = [];
- uniqueElements.forEach(e => {
- const label = ElementNames[e] || e;
- queries.push(ElementSymbolQuery([[e], label], 'Element Symbol', 0));
- });
- return queries;
- }
- export function getNonStandardResidueQueries(structures: Structure[]) {
- const residueLabels = new Map<string, string>();
- const uniqueResidues = new Set<string>();
- for (const structure of structures) {
- structure.uniqueResidueNames.forEach(r => uniqueResidues.add(r));
- for (const m of structure.models) {
- structure.uniqueResidueNames.forEach(r => {
- const comp = m.properties.chemicalComponentMap.get(r);
- if (comp) residueLabels.set(r, comp.name);
- });
- }
- }
- const queries: StructureSelectionQuery[] = [];
- SetUtils.difference(uniqueResidues, StandardResidues).forEach(r => {
- const label = residueLabels.get(r) || r;
- queries.push(ResidueQuery([[r], label], 'Ligand/Non-standard Residue', 200));
- });
- return queries;
- }
- export function getPolymerAndBranchedEntityQueries(structures: Structure[]) {
- const uniqueEntities = new Map<string, string[]>();
- const l = StructureElement.Location.create();
- for (const structure of structures) {
- l.structure = structure;
- for (const ug of structure.unitSymmetryGroups) {
- l.unit = ug.units[0];
- l.element = ug.elements[0];
- const entityType = StructureProperties.entity.type(l);
- if (entityType === 'polymer' || entityType === 'branched') {
- const description = StructureProperties.entity.pdbx_description(l);
- uniqueEntities.set(description.join(', '), description);
- }
- }
- }
- const queries: StructureSelectionQuery[] = [];
- uniqueEntities.forEach((v, k) => {
- queries.push(EntityDescriptionQuery([v, k], 'Polymer/Carbohydrate Entities', 300));
- });
- return queries;
- }
- export function applyBuiltInSelection(to: StateBuilder.To<PluginStateObject.Molecule.Structure>, query: keyof typeof StructureSelectionQueries, customTag?: string) {
- return to.apply(StateTransforms.Model.StructureSelectionFromExpression,
- { expression: StructureSelectionQueries[query].expression, label: StructureSelectionQueries[query].label },
- { tags: customTag ? [query, customTag] : [query] });
- }
- export const StructureSelectionQueries = {
- all,
- current,
- polymer,
- trace,
- backbone,
- sidechain,
- sidechainWithTrace,
- protein,
- nucleic,
- helix,
- beta,
- water,
- branched,
- branchedPlusConnected,
- branchedConnectedOnly,
- ligand,
- ligandPlusConnected,
- ligandConnectedOnly,
- connectedOnly,
- disulfideBridges,
- nonStandardPolymer,
- coarse,
- ring,
- aromaticRing,
- surroundings,
- complement,
- covalentlyBonded,
- covalentlyOrMetallicBonded,
- wholeResidues,
- };
- export class StructureSelectionQueryRegistry {
- list: StructureSelectionQuery[] = []
- options: [StructureSelectionQuery, string, string][] = []
- version = 1
- add(q: StructureSelectionQuery) {
- this.list.push(q);
- this.options.push([q, q.label, q.category]);
- this.version += 1;
- }
- remove(q: StructureSelectionQuery) {
- const idx = this.list.indexOf(q);
- if (idx !== -1) {
- this.list.splice(idx, 1);
- this.options.splice(idx, 1);
- this.version += 1;
- }
- }
- constructor() {
- // add built-in
- this.list.push(
- ...Object.values(StructureSelectionQueries),
- ...StandardAminoAcids.map(v => ResidueQuery(v, StructureSelectionCategory.AminoAcid)),
- ...StandardNucleicBases.map(v => ResidueQuery(v, StructureSelectionCategory.NucleicBase))
- );
- this.options.push(...this.list.map(q => [q, q.label, q.category] as [StructureSelectionQuery, string, string]));
- }
- }
|