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

    Interface BAIReaderOptions

    BAI reader options for index loading and querying Controls index reading behavior and caching

    interface BAIReaderOptions {
        cacheIndex?: boolean;
        validateOnLoad?: boolean;
        bufferSize?: number;
        timeout?: number;
    }
    Index

    Properties

    cacheIndex?: boolean

    Whether to cache loaded index in memory (default: true)

    validateOnLoad?: boolean

    Validate index integrity on load (default: true)

    bufferSize?: number

    Custom buffer size for reading index file

    timeout?: number

    Timeout for index file operations in milliseconds