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

    Class TSVParser

    TSVParser - Convenience class for TSV files Sets delimiter to tab by default

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Parse stream with automatic compression detection

      Parameters

      • stream: ReadableStream<Uint8Array<ArrayBufferLike>>

        Potentially compressed stream

      Returns AsyncIterable<DSVRecord>

      AsyncIterable of DSV records async parseCompressed(stream: ReadableStream): AsyncIterable { // parse() now handles compression automatically via BufferedStreamReader yield this.parse(stream); }

      /** Parse stream input with true streaming (no full buffering)