Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Structure

Structure

Hierarchy

Implements

Implemented by

Index

Constructors

constructor

  • new Structure(name?: string, path?: string): Structure

Properties

_ap

_bp

_cp

Optional _hasCoords

_hasCoords: undefined | false | true

_rp

atomCount

atomCount: number

atomMap

atomMap: AtomMap

Optional atomSet

atomSetCache

atomSetCache: {}

Type declaration

atomSetDict

atomSetDict: {}

Type declaration

atomStore

atomStore: AtomStore

backboneBondStore

backboneBondStore: BondStore

biomolDict

biomolDict: {}

Type declaration

bondCount

bondCount: number

Optional bondHash

bondHash: BondHash

Optional bondSet

bondStore

bondStore: BondStore

boundingBox

boundingBox: Box3

boxes

boxes: Float32Array[]

center

center: Vector3

chainStore

chainStore: ChainStore

data

data: Data

entityList

entityList: Entity[]

extraData

frames

frames: Float32Array[]

header

id

id: string

modelStore

modelStore: ModelStore

name

name: string

path

path: string

residueMap

residueMap: ResidueMap

residueStore

residueStore: ResidueStore

rungBondStore

rungBondStore: BondStore

Optional spatialHash

spatialHash: SpatialHash

title

title: string

Optional trajectory

trajectory: undefined | { frame: number; name: string }

Optional unitcell

unitcell: Unitcell

Optional validation

validation: Validation

Accessors

estimatedSizeInBytes

  • get estimatedSizeInBytes(): number

type

  • get type(): string

Methods

atomCenter

  • atomCenter(filter?: Filter): Vector3

clone

dispose

  • dispose(): void

eachAtom

eachBond

eachChain

eachEntity

  • eachEntity(callback: (entity: Entity) => void, type: number): void

eachModel

eachPolymer

  • eachPolymer(callback: (entity: Polymer) => void, filter?: Filter): void

eachResidue

eachResidueN

  • eachResidueN(n: number, callback: (...entityArray: ResidueProxy[]) => void): void

finalizeAtoms

  • finalizeAtoms(): void

finalizeBonds

  • finalizeBonds(): void

Private forEachSet

Private forEachStore

  • forEachStore(callback: (s: Store) => void): void

getAtomData

getAtomIndices

  • getAtomIndices(filter?: Filter): undefined | Uint32Array

getAtomProxy

  • getAtomProxy(index?: undefined | number): AtomProxy

getAtomSet

getAtomSetWithinFilter

getAtomSetWithinGroup

getAtomSetWithinPoint

getAtomSetWithinVolume

  • getAtomSetWithinVolume(volume: Volume, radius: number, minValue: number, maxValue: number, outside: boolean): BitArray_Legacy
  • Get set of atoms within a volume

    Parameters

    • volume: Volume

      the volume

    • radius: number

      radius to filter within

    • minValue: number

      minimum value to be considered as within the volume

    • maxValue: number

      maximum value to be considered as within the volume

    • outside: boolean

      use only values falling outside of the min/max values

    Returns BitArray_Legacy

    set of atoms

getBackboneAtomData

getBackboneBondData

getBackboneBondSet

getBondData

getBondProxy

  • getBondProxy(index?: undefined | number): BondProxy

getBondSet

getBoundingBox

  • getBoundingBox(filter?: Filter, box?: Box3): Box3

getChainProxy

  • getChainProxy(index?: undefined | number): ChainProxy

getChainnameCount

  • getChainnameCount(filter?: Filter): number

getFilter

  • getFilter(): undefined | Filter

getModelProxy

  • getModelProxy(index?: undefined | number): ModelProxy

getPrincipalAxes

getResidueProxy

getRungAtomData

getRungBondData

getRungBondSet

getSequence

  • getSequence(filter?: Filter): string[]

getSequenceFormatted

getStructure

getView

hasCoords

  • hasCoords(): boolean

init

  • init(name: string, path: string): void

refreshPosition

  • refreshPosition(): void

removeAtom

removeAtomWhere

  • removeAtomWhere(predicate: (a: AtomProxy) => boolean, startIdx?: number, count?: number): void
  • Removes first atom meeting the given condition. The additional parameters determine the subset of atoms to check. If startIdx and count are less than zero, all atoms are checked for predicate.

    Parameters

    • predicate: (a: AtomProxy) => boolean

      predicate that evaluates to true for the atom to be removed

    • Default value startIdx: number = -1

      start index of the interval to search through

    • Default value count: number = -1

      length of the interval

    Returns void

removeAtomsStartingAtIndex

  • removeAtomsStartingAtIndex(atomIdx: number, count?: number): void
  • Removes given number of atoms starting at provided index

    Parameters

    • atomIdx: number

      index to start at (refers to the location in atom store)

    • Default value count: number = 1

      number of atoms to remove

    Returns void

removeAtomsWhere

  • removeAtomsWhere(predicate: (a: AtomProxy) => boolean, startIdx?: number, count?: number): void
  • Removes all atoms meeting the given condition. The additional parameters determine the subset of atoms to check. If startIdx and count are less than zero, all atoms are checked for predicate.

    Parameters

    • predicate: (a: AtomProxy) => boolean

      predicate that evaluates to true for atoms to be removed

    • Default value startIdx: number = -1

      start index of the interval to search through

    • Default value count: number = -1

      length of the interval

    Returns void

Private removeAtomsWherePredicate

  • removeAtomsWherePredicate(predicate: (a: AtomProxy) => boolean, startIdx?: number, atomsToCheckCount?: number, removeOnlyFirst: boolean): void

removeChain

Private removeChainReferences

  • removeChainReferences(chainIdx: number): void

removeElements

  • removeElements(element: string): void
  • Removes atoms corresponding to the provided chemical element.

    example

    structure.removeElements("H") // removes all hydrogen atoms

    Parameters

    • element: string

      element name to remove

    Returns void

removeResidue

  • Removes given residue from the structure. The chain is not affected by the removal, i.e., the function does not handle any potential "discontinuity" that might be caused by this operation.

    Parameters

    Returns void

Private removeResidueReferences

  • removeResidueReferences(residueIdx: number): void

toString

  • toString(): string

updatePosition

  • updatePosition(position: Float32Array | number[]): void

Object literals

signals

signals: object

refreshed

refreshed: Signal<T> = new Signal()

Generated using TypeDoc