Interface ReplicationRuntimeState

Represents the actual runtime state returned by Replisome.getCurrentState(). Uses actual class instances rather than interface data structures.

interface ReplicationRuntimeState {
    activeEnzymes: EnzymePosition[];
    activeFragments: OkazakiFragment[];
    completionPercentage: number;
    forkPosition: number;
    laggingStrandProgress: number;
    leadingStrandProgress: number;
}

Properties

activeEnzymes: EnzymePosition[]

Positions and states of all active enzymes

activeFragments: OkazakiFragment[]

Currently active Okazaki fragments (class instances)

completionPercentage: number

Percentage of replication completed (0-100)

forkPosition: number

Current position of the replication fork (0-based)

laggingStrandProgress: number

Progress of discontinuous lagging strand synthesis

leadingStrandProgress: number

Progress of continuous leading strand synthesis