Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CgNucleicAcidStrand

Class storing data of single coarse-grained nucleic acid strand

Hierarchy

Index

Constructors

constructor

Properties

Private _isCircular

_isCircular: boolean = false

Private _isScaffold

_isScaffold: boolean = false

Protected _monomerStore

_monomerStore: CgMonomerStore

Private _naType

Accessors

customColor

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

fivePrime

globalId

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

isCircular

  • get isCircular(): boolean
  • set isCircular(newVal: boolean): void

isScaffold

  • get isScaffold(): boolean
  • set isScaffold(isScaff: boolean): void

length

  • get length(): number

monomerStore

naType

name

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

nucleotideStore

parentStructure

sequence

threePrime

Methods

applyMatrixTransformation

  • applyMatrixTransformation(matrix: Matrix4): void

breakAfterNucleotide

  • Breaks this strand after the given nucleotide, i.e., removing the connection/bond between given nucleotide and the following one. In other words, it splits this strand into two parts -- first part goes from 5' to the removed nucleotide. The second part starts with the nucleotide following the removed one and ends at the original 3' end. Since the nucleotides are not moved in reality, the atom-level bonds are not influenced by this function. Thus, it is more important for defining the routing of a given strand.

    Parameters

    • proxy: CgNucleotideProxy

      proxy referencing nucleotide to become new 3' end of this strand

    Returns CgNucleicAcidStrand | undefined

    part of the original strand following the referenced nucleotide

breakAtNucleotide

  • Breaks this strand at given nucleotide by removing it, shortening this strand and returning the second part as an output. If the nucleotide is 5'/3' end, no new strand is returned. Example: A-T-G-[T]-C-G-C => this strand = A-T-G, returned strand = C-G-C

    Parameters

    Returns CgNucleicAcidStrand | undefined

    strand following the removed nucleotide (or undefined if the nucleotide lied at 3' end)

canConnectToNucleotide

Protected cleanBasePairReference

Protected cleanBasePairReferences

  • cleanBasePairReferences(): void

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

connectTo

  • Connects this strand to another (could be the same) strand with a bond. After this operation, the "other" strand may be disposed and removed from the structure. The exception to this rule is in case that the other strand equals this strand.

    Parameters

    Returns 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

findNucleotideIndex

forEachMonomer

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

forEachNucleotide

forEachNucleotideReverse

  • forEachNucleotideReverse(callback: (a: CgNucleotideProxy, i: number) => void): void

getExtensionDirection

getExtensionStart

getIndexForGlobalId

  • getIndexForGlobalId(globalId: number): number

getMonomerProxyTemplate

getNucleotideProxy

getViews

insertFrom

  • insertFrom(other: CgNucleicAcidStrand, thisOffset: number, otherOffset: number, length: number): void
  • Inserts nucleotides from the given part of other strand to the desired position in this strand. The existing nucleotides are shifted so the operation preserves the existing data, as well as the newly added ones.

    Parameters

    • other: CgNucleicAcidStrand

      other nucleic acid strand to insert data from

    • thisOffset: number

      where to insert data into this strand

    • otherOffset: number

      where the data reading in other strand should start

    • length: number

      length (in nr. of nucleotides) of the inserted part

    Returns void

insertNewFivePrimeNucleotide

  • Inserts new nucleotide at the 5' end of this strand.

    Parameters

    • globalId: number

      global ID of the newly inserted nucleotide

    • nbType: NucleobaseType

      base type of the newly inserted nucleotide

    • nbCenter: Vector3

      nucleobase center of the newly inserted nucleotide

    • bbCenter: Vector3

      backbone center of the newly inserted nucleotide

    • baseNormal: Vector3

      base normal of the newly inserted nucleotide

    • hydrogenFaceDir: Vector3

      hydrogen face direction of the newly inserted nucleotide

    • Optional complementary: CgNucleotideProxy

      proxy referencing the paired nucleotide (if any)

    • Optional pdbId: undefined | number

      residue index referencing corresponding all-atom structure residue (if any)

    Returns CgNucleotideProxy

    proxy referencing the newly inserted nucleotide

insertNewThreePrimeNucleotide

  • insertNewThreePrimeNucleotide(globalId: number, nbType: NucleobaseType, nbCenter: Vector3, bbCenter: Vector3, baseNormal: Vector3, hydrogenFaceDir: Vector3, complementary?: CgNucleotideProxy, pdbId?: undefined | number): CgNucleotideProxy
  • Inserts new nucleotide at the 3' end of this strand.

    Parameters

    • globalId: number

      global ID of the newly inserted nucleotide

    • nbType: NucleobaseType

      base type of the newly inserted nucleotide

    • nbCenter: Vector3

      nucleobase center of the newly inserted nucleotide

    • bbCenter: Vector3

      backbone center of the newly inserted nucleotide

    • baseNormal: Vector3

      base normal of the newly inserted nucleotide

    • hydrogenFaceDir: Vector3

      hydrogen face direction of the newly inserted nucleotide

    • Optional complementary: CgNucleotideProxy

      proxy referencing the paired nucleotide (if any)

    • Optional pdbId: undefined | number

      residue index referencing corresponding all-atom structure residue (if any)

    Returns CgNucleotideProxy

    proxy referencing the newly inserted nucleotide

insertNucleotide

  • insertNucleotide(index: number, globalId: number, nbType: NucleobaseType, nbCenter: Vector3, bbCenter: Vector3, baseNormal: Vector3, hydrogenFaceDir: Vector3, complementary?: CgNucleotideProxy, pdbId?: undefined | number): CgNucleotideProxy
  • Inserts new nucleotide into this strand. If the insertion happens in the middle of the strand, other nucleotides are shifted in the underlying data structure.

    Parameters

    • index: number

      index where the nucleotide should be inserted (0 refers to 5' location)

    • globalId: number

      global ID of the newly inserted nucleotide

    • nbType: NucleobaseType

      base type of the newly inserted nucleotide

    • nbCenter: Vector3

      nucleobase center of the newly inserted nucleotide

    • bbCenter: Vector3

      backbone center of the newly inserted nucleotide

    • baseNormal: Vector3

      base normal of the newly inserted nucleotide

    • hydrogenFaceDir: Vector3

      hydrogen face direction of the newly inserted nucleotide

    • Optional complementary: CgNucleotideProxy

      proxy referencing the paired nucleotide (if any)

    • Optional pdbId: undefined | number

      residue index referencing corresponding all-atom structure residue (if any)

    Returns CgNucleotideProxy

    proxy referencing the newly inserted nucleotide

isCyclic

  • isCyclic(): boolean

isDna

  • isDna(): boolean

isNucleic

  • isNucleic(): boolean

isProtein

  • isProtein(): boolean

isRna

  • isRna(): boolean

proxyAtIndex

Protected removeMonomer

Protected removeMonomerAtIndex

  • removeMonomerAtIndex(index: number): void

Protected removeMonomers

Protected removeMonomersAtIndices

  • removeMonomersAtIndices(indices: number[]): void

removeNucleotide

removeNucleotideAtIndex

  • removeNucleotideAtIndex(index: number): void
  • Removes a nucleotide but still assumes that the strand remains connected Example: A-T-G-[T]-C-G-C => A-T-G--C-G-C (the -- signifies that this operation may result in an unnaturally long bond)

    Parameters

    • index: number

      index of the nucleotide to be removed

    Returns void

removeNucleotides

removeNucleotidesAtIndices

  • removeNucleotidesAtIndices(indices: number[]): void

renumberMonomerGlobalIds

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

setSequence

Protected truncate

  • truncate(newLength: number): void

updatePairIds

  • updatePairIds(fromToMap: Map<number, number>): void
  • Updates information about paired nucleotides, used in cases there was global ID-changing operation executed.

    Parameters

    • fromToMap: Map<number, number>

      map storing [old global id, new global id] pairs for each nucleotide

    Returns void

Generated using TypeDoc