Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CgAminoAcidChain

Class storing data of single coarse-grained amino acid chain

Hierarchy

Index

Constructors

constructor

  • new CgAminoAcidChain(globalId: number, name: string, parentStructure?: CgStructure, expectedLength?: undefined | number): CgAminoAcidChain

Properties

Protected _monomerStore

_monomerStore: CgMonomerStore

Accessors

aminoAcidStore

cTerm

customColor

  • get customColor(): Color | undefined
  • set customColor(val: Color | undefined): void

globalId

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

length

  • get length(): number

monomerStore

nTerm

name

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

parentStructure

sequence

Methods

applyMatrixTransformation

  • applyMatrixTransformation(matrix: Matrix4): void

breakAtAminoAcid

  • Breaks this chain at given amino acid by removing it, shortening this chain and returning the second part ("after the removed amino acid") as an output. If the amino acid is N/C terminus, no new chain is returned.

    Parameters

    Returns CgAminoAcidChain | undefined

    new chain consisting of amino acids following the removed one or undefined if there are none

Protected commonFindIndex

  • commonFindIndex(pred: (a: CgMonomerProxy, i: number) => boolean): number

Protected commonForEach

  • commonForEach(callback: (a: CgMonomerProxy, i: number) => void): void

Protected commonForEachReverse

  • commonForEachReverse(callback: (a: CgMonomerProxy, i: number) => void): void

copyFrom

  • copyFrom(other: CgPolymer, startIdx: number, endIdxExcl: number): void
  • Copies data from the particular section of the other polymer to this one. If this polymer carried some data, they will be replaced/removed.

    Parameters

    • other: CgPolymer

      polymer to copy data from

    • startIdx: number

      index to start copy from (inclusive)

    • endIdxExcl: number

      index identifying the end of section to copy from (exclusive)

    Returns void

dispose

  • dispose(): void

findAminoAcidIndex

forEachAminoAcid

forEachAminoAcidReverse

  • forEachAminoAcidReverse(callback: (a: CgAminoAcidProxy, i: number) => void): void

forEachMonomer

  • forEachMonomer(callback: (mp: CgMonomerProxy, i: number) => void): void

getAminoAcidProxy

getIndexForGlobalId

  • getIndexForGlobalId(globalId: number): number

getMonomerProxyTemplate

getViews

insertAminoAcid

  • Inserts amino acid at given location in this chain. If the insertion is performed in the middle of the chain, other residues are correspondingly shifted.

    Parameters

    • index: number

      index where to insert the new residue

    • globalId: number

      global ID of the new residue

    • aaType: AminoAcidType

      amino acid type

    • caCenter: Vector3

      alpha carbon location of the newly inserted residue

    • Optional pdbId: undefined | number

      residue index in the corresponding atomistic structure

    Returns CgAminoAcidProxy

    amino acid proxy referencing newly inserted residue

insertNewCtermAminoAcid

  • Inserts amino acid at the end of the chain, i.e., creates new C-terminal amino acid residue.

    Parameters

    • globalId: number

      global ID of the new residue

    • aaType: AminoAcidType

      amino acid type

    • caCenter: Vector3

      alpha carbon location of the newly inserted residue

    • Optional pdbId: undefined | number

      residue index in the corresponding atomistic structure

    Returns CgAminoAcidProxy

    amino acid proxy referencing newly inserted residue

insertNewNtermAminoAcid

  • Inserts amino acid at the start of the chain, i.e., creates new N-terminal amino acid residue.

    Parameters

    • globalId: number

      global ID of the new residue

    • aaType: AminoAcidType

      amino acid type

    • caCenter: Vector3

      alpha carbon location of the newly inserted residue

    • Optional pdbId: undefined | number

      residue index in the corresponding atomistic structure

    Returns CgAminoAcidProxy

    amino acid proxy referencing newly inserted residue

isCyclic

  • isCyclic(): boolean

isDna

  • isDna(): boolean

isNucleic

  • isNucleic(): boolean

isProtein

  • isProtein(): boolean

isRna

  • isRna(): boolean

proxyAtIndex

removeAminoAcid

removeAminoAcidAtIndex

  • removeAminoAcidAtIndex(index: number): void

removeAminoAcids

removeAminoAcidsAtIndices

  • removeAminoAcidsAtIndices(indices: number[]): void

Protected removeMonomer

Protected removeMonomerAtIndex

  • removeMonomerAtIndex(index: number): void

Protected removeMonomers

Protected removeMonomersAtIndices

  • removeMonomersAtIndices(indices: number[]): void

renumberMonomerGlobalIds

  • renumberMonomerGlobalIds(renameMap?: Map<number, number>): void

setSequence

Protected truncate

  • truncate(newLength: number): void

Generated using TypeDoc