Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CgAminoAcidStore

Sequential storage of amino acids' data (in N-term to C-term order)

Hierarchy

Indexable

[k: string]: any

Sequential storage of amino acids' data (in N-term to C-term order)

Index

Constructors

constructor

Properties

_fields

_fields: StoreField[]

aaType

aaType: Uint8Array

caPosition

caPosition: Float32Array

count

count: number

globalId

globalId: Int32Array

length

length: number

pdbId

pdbId: Int32Array

Identification/index of relevant all-atom residue; -1 if no reference exists

Accessors

_defaultFields

estimatedSizeInBytes

  • get estimatedSizeInBytes(): number

Methods

_init

  • _init(size: number): void

_initField

addField

appendRecords

  • appendRecords(addedCount: number, newValRec?: undefined | {}): void

clear

  • clear(): void

copyFrom

  • copyFrom(other: Store, thisOffset: number, otherOffset: number, length: number): void
  • Copy data from one store to another

    Parameters

    • other: Store

      store to copy from

    • thisOffset: number

      offset to start copying to

    • otherOffset: number

      offset to start copying from

    • length: number

      number of entries to copy

    Returns void

copyWithin

  • copyWithin(destinationOffset: number, sourceOffset: number, length: number): void
  • Copy data within this store

    Parameters

    • destinationOffset: number

      offset to start copying to

    • sourceOffset: number

      offset to start copying from

    • length: number

      number of entries to copy

    Returns void

dispose

  • dispose(): void

getAlphaCarbonLocation

  • getAlphaCarbonLocation(i: number, data?: Vector3): Vector3
  • Stores alpha carbon location into the provided vector

    Parameters

    • i: number

      index of the referenced amino acid

    • Optional data: Vector3

      vector where the location should be stored (if not provided, new vector is initialized)

    Returns Vector3

    reference to the vector storing the data

getAlphaCarbonLocationToArray

  • getAlphaCarbonLocationToArray(i: number, data?: number[]): number[]
  • Stores alpha carbon location into the provided array

    Parameters

    • i: number

      index of the referenced amino acid

    • Optional data: number[]

      array where the location should be stored (if not provided, new array is initialized)

    Returns number[]

    reference to the array storing the data

getType

growIfFull

  • growIfFull(): void

insertRecords

  • insertRecords(index: number, addedCount: number, newValRec?: undefined | {}): void
  • Allows to add values to the store fields simultaneously. It is expected that all of the fields provided by the store will have their value defined in the newly added record and all the arrays with values are of the same length.

    Parameters

    • index: number

      index where the data should be inserted

    • addedCount: number
    • Optional newValRec: undefined | {}

      defines the values to add; if not provided, the store will be resized but no values will be overriden

      Catana extension.

    Returns void

prependRecords

  • prependRecords(addedCount: number, newValRec?: undefined | {}): void

removeRecord

  • removeRecord(index: number): void

resize

  • resize(size?: undefined | number): void

rotate

  • rotate(shift: number): void
  • Left-rotates the array with the given shift in the desired direction In-situ algorithm

    Catana extension

    Parameters

    • shift: number

    Returns void

setAlphaCarbonLocation

  • setAlphaCarbonLocation(i: number, data: Vector3): void

setAlphaCarbonLocationFromArray

  • setAlphaCarbonLocationFromArray(i: number, data: number[]): void

setType

shrinkToFit

  • shrinkToFit(): void

sort

  • sort(compareFunction: (a: any, b: any) => number): void
  • Sort entries in the store given the compare function

    Parameters

    • compareFunction: (a: any, b: any) => number

      function to sort by

        • (a: any, b: any): number
        • Parameters

          • a: any
          • b: any

          Returns number

    Returns void

Protected vectorDataFromArray

  • vectorDataFromArray(dataArr: Float32Array, i: number, sourceArr: number[]): void

Protected vectorDataFromVector3

  • vectorDataFromVector3(dataArr: Float32Array, i: number, source: Vector3): void

Protected vectorDataToArray

  • vectorDataToArray(dataArr: Float32Array, i: number, destArr?: number[]): number[]
  • Copies [X, Y, Z] values stored at the given index in the source store's array to the destination array (if provided)

    Parameters

    • dataArr: Float32Array

      source array

    • i: number

      index from which the data should be copied

    • Optional destArr: number[]

      destination array (if not provided, new array of size 3 will be initialized)

    Returns number[]

    reference to destArray if provided, otherwise reference to newly created array

Protected vectorDataToVector3

  • vectorDataToVector3(dataArr: Float32Array, i: number, vector?: Vector3): Vector3
  • Copies [X, Y, Z] values stored at the given index in the source store's array to the destination vector (if provided)

    Parameters

    • dataArr: Float32Array

      source array

    • i: number

      index from which the data should be copied

    • Optional vector: Vector3

      destionation vector (if not provided, new vector will be instantiated)

    Returns Vector3

    reference to vector param if provided, otherwise reference to a newly created vector instance

Generated using TypeDoc