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

    Interface DetectionResult

    Detection result with confidence scoring

    Provides uncertainty feedback when encoding detection is ambiguous, helping users understand when explicit encoding specification recommended.

    interface DetectionResult {
        encoding: QualityEncoding;
        confidence: number;
        ambiguous: boolean;
        ranges: { min: number; max: number };
        reasoning: string;
    }
    Index

    Properties

    encoding: QualityEncoding

    Detected quality encoding

    confidence: number

    Confidence score (0.0-1.0, higher = more certain)

    ambiguous: boolean

    Whether detection was ambiguous (multiple encodings possible)

    ranges: { min: number; max: number }

    ASCII range found in quality data

    reasoning: string

    Biological reasoning for detection choice