Interface GenomicRegion

Represents a region within a genomic sequence using 0-based indexing. Used for representing introns, exons, promoter regions, and other genomic features.

interface GenomicRegion {
    end: number;
    name?: string;
    start: number;
}

Properties

Properties

end: number

0-based exclusive end position

name?: string

Optional identifier for the region

start: number

0-based inclusive start position