Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CgStructure

Class storing data of a single coarse-grained structure

Hierarchy

  • CgStructure

Index

Constructors

constructor

  • new CgStructure(globalId: number, name?: undefined | string, author?: undefined | string): CgStructure

Properties

Private _aaChains

_aaChains: CgAminoAcidChain[]

Private _atomRebuildInProgress

_atomRebuildInProgress: boolean = false

Private _atomicStructure

_atomicStructure: Structure | null = null

Private _author

_author: string

Private _chainNameCounter

_chainNameCounter: number = 0

Private _globalId

_globalId: number

Private _idToAaIdxMap

_idToAaIdxMap: Map<number, [CgAminoAcidChain, number]>

Private _idToNuclIdxMap

_idToNuclIdxMap: Map<number, [CgNucleicAcidStrand, number]>

Private _isAtomDataDirty

_isAtomDataDirty: boolean = false

Private _naStrands

_naStrands: CgNucleicAcidStrand[]

Private _name

_name: string

Private _parentComp

_parentComp: CgStructureComponent | null = null

signals

Accessors

aaChains

aaChainsCount

  • get aaChainsCount(): number

atomicStructure

  • get atomicStructure(): Structure | null
  • set atomicStructure(structure: Structure | null): void

author

  • get author(): string
  • set author(newAuthor: string): void

globalId

  • get globalId(): number
  • set globalId(newId: number): void

isAtomDataDirty

  • get isAtomDataDirty(): boolean
  • set isAtomDataDirty(val: boolean): void

monomerCount

  • get monomerCount(): number

naStrands

naStrandsCount

  • get naStrandsCount(): number

name

  • get name(): string
  • set name(newName: string): void

parentComponent

polymerCount

  • get polymerCount(): number

polymers

type

  • get type(): string

Methods

addAaChain

addAaChains

addNaStrand

addNaStrands

buildAtomicStructure

  • buildAtomicStructure(forceRebuild?: boolean): Promise<Structure>
  • Generates atoms for the underlying atomistic structure.

    Parameters

    • Default value forceRebuild: boolean = false

      if set to true, the structure will be rebuilt even if a valid one alredy exists

    Returns Promise<Structure>

    promise referencing the function generating the new atomistic data

clone

dispose

  • dispose(): void

findAaChain

findNaStrand

findPolymer

forEachAaChain

forEachMonomer

forEachNaStrand

forEachPolymer

  • forEachPolymer(callback: (a: CgPolymer) => void): void

generateBasePairs

  • generateBasePairs(replaceExisting?: boolean): void
  • Auto-computes base-pairs in the whole structure

    Parameters

    • Default value replaceExisting: boolean = false

      if set to true, the auto-computation may discard existing base-pairs. Otherwise, they will remain untouched.

    Returns void

generateChainName

  • generateChainName(): string

getAaChain

getAminoAcidProxy

  • Gets amino acid proxy corresponding to the given global ID. This operation can take up to O(n) time w.r.t the number of amino acids.

    Parameters

    • globalId: number

      global ID to search for

    Returns CgAminoAcidProxy | null

    proxy referencing an amino acid with the desired global ID or null if not found

getBoundingBox

  • getBoundingBox(box?: Box3): Box3
  • Returns AABB of this structure

    Parameters

    • Optional box: Box3

      box object into which the function outcome will be stored

    Returns Box3

    reference to provided (or new) Box3 instance storing the AABB data

getMonomerProxy

  • Returns monomer proxy corresponding to the given global ID. This operation can take up to O(n) time w.r.t the number of monomers.

    Parameters

    • globalId: number

      global ID to search for

    Returns CgMonomerProxy | null

    monomer proxy with the given global ID or null if not found

getNaStrand

getNucleotideProxy

  • Gets nucleotide proxy corresponding to the given global ID. This operation can take up to O(n) time w.r.t the number of nucleotides.

    Parameters

    • globalId: number

      global ID to search for

    Returns CgNucleotideProxy | null

    proxy referencing a nucleotide with the desired global ID or null if not found

getPrincipalAxes

getSequence

  • getSequence(): string[]

getSequenceFormatted

  • Returns an array of callback-converted sequences of structure's polymers.

    Type parameters

    • T

    Parameters

    • convFunc: (input: MonomerType, pol: CgPolymer) => T

      conversion function accepting monomer type and its parent polymer, returning converted value. The callback is executed on each monomer for all of the polymers in this structure.

    Returns T[]

    array of polymer sequences processed by the provided callback function

refreshStructureIfNeeded

  • refreshStructureIfNeeded(): void

removeAaChain

removeAllPolymers

  • removeAllPolymers(disposePolymers?: boolean): void
  • Removes all polymers in this structure. This function does NOT automatically remove the parent component from stage.

    Parameters

    • Default value disposePolymers: boolean = true

      if set to true, polymers will be disposed, otherwise they are just removed from internal lists.

    Returns void

removeNaStrand

removePolymer

  • Removes polymer from the structure. If the structure contains no polymers after the removal and has a parent component, it removes the component from the stage automatically.

    Parameters

    Returns void

toString

  • toString(): string

transform

  • transform(m: Matrix4): void

Generated using TypeDoc