Genotype API Documentation - v0.1.0
    Preparing search index...

    Interface AbstractSequence

    Validate CIGAR string consistency with sequence length

    interface AbstractSequence {
        id: string;
        description?: string;
        sequence: string;
        length: number;
        lineNumber?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    Sequence identifier (required, but may be empty string in malformed data)

    description?: string

    Optional description/comment line

    sequence: string

    The actual sequence data

    length: number

    Cached sequence length for performance

    lineNumber?: number

    Original line number where this sequence started (for error reporting)