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

    Interface BAIStatistics

    BAI statistics for monitoring and optimization Provides insights into index structure and performance

    interface BAIStatistics {
        totalBins: number;
        totalChunks: number;
        totalIntervals: number;
        estimatedMemoryUsage: number;
        perReference: readonly {
            referenceId: number;
            binCount: number;
            chunkCount: number;
            intervalCount: number;
        }[];
    }
    Index

    Properties

    totalBins: number

    Total number of bins across all references

    totalChunks: number

    Total number of chunks across all references

    totalIntervals: number

    Total number of linear index intervals

    estimatedMemoryUsage: number

    Estimated memory usage in bytes

    perReference: readonly {
        referenceId: number;
        binCount: number;
        chunkCount: number;
        intervalCount: number;
    }[]

    Per-reference statistics