Interface EnzymePosition

Represents the position and state of an enzyme in the replication machinery.

interface EnzymePosition {
    isActive: boolean;
    position: number;
    strand: "leading" | "lagging";
    type: EnzymeType;
}

Properties

isActive: boolean

Whether this enzyme is currently active

position: number

Current position of the enzyme (0-based)

strand: "leading" | "lagging"

Which strand this enzyme is working on

Type of enzyme