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

    Interface DSVWriterOptions

    DSV writer options for output formatting

    interface DSVWriterOptions {
        delimiter?: string;
        quote?: string;
        escapeChar?: string;
        header?: boolean;
        columns?: string[];
        lineEnding?: "\n" | "\r" | "\r\n";
        quoteAll?: boolean;
        excelCompatible?: boolean;
        computeStats?: boolean;
        includeGC?: boolean;
        includeGCSkew?: boolean;
        includeBaseCount?: boolean;
        includeQuality?: boolean;
        compression?: "gzip" | "zstd" | null;
        compressionLevel?: number;
    }
    Index

    Properties

    delimiter?: string
    quote?: string
    escapeChar?: string
    header?: boolean
    columns?: string[]
    lineEnding?: "\n" | "\r" | "\r\n"
    quoteAll?: boolean
    excelCompatible?: boolean
    computeStats?: boolean
    includeGC?: boolean
    includeGCSkew?: boolean
    includeBaseCount?: boolean
    includeQuality?: boolean
    compression?: "gzip" | "zstd" | null
    compressionLevel?: number