molstar
Version:
A comprehensive macromolecular library.
21 lines (20 loc) • 854 B
TypeScript
/**
* Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { StructureElement } from '../../mol-model/structure';
import { SequenceWrapper, StructureUnit } from './wrapper';
import { Loci } from '../../mol-model/loci';
import { MarkerAction } from '../../mol-util/marker-action';
export declare class ChainSequenceWrapper extends SequenceWrapper<StructureUnit> {
private label;
private unitIndices;
private loci;
residueLabel(seqIdx: number): string;
residueColor(seqIdx: number): import("../../mol-util/color").Color;
residueClass(seqIdx: number): string;
mark(loci: Loci, action: MarkerAction): boolean;
getLoci(seqIdx: number): StructureElement.Loci;
constructor(data: StructureUnit);
}