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

    Variable ERROR_SUGGESTIONSConst

    ERROR_SUGGESTIONS: {
        INVALID_FASTA_HEADER: "FASTA headers must start with \">\" followed by an identifier";
        INVALID_FASTQ_HEADER: "FASTQ headers must start with \"@\" followed by an identifier";
        SEQUENCE_QUALITY_MISMATCH: "Sequence and quality strings must have the same length";
        INVALID_NUCLEOTIDE: "Use IUPAC nucleotide codes: A, C, G, T, U, R, Y, S, W, K, M, B, D, H, V, N";
        INVALID_BED_COORDINATES: "BED coordinates must be non-negative integers with start < end";
        COMPRESSED_FILE_ERROR: "Try installing appropriate compression libraries or check file integrity";
        MEMORY_EXCEEDED: "Consider using streaming API or processing file in chunks";
        MALFORMED_LINE: "Check for extra whitespace, special characters, or encoding issues";
    } = ...

    Error recovery suggestions for common issues

    Type Declaration

    • ReadonlyINVALID_FASTA_HEADER: "FASTA headers must start with \">\" followed by an identifier"
    • ReadonlyINVALID_FASTQ_HEADER: "FASTQ headers must start with \"@\" followed by an identifier"
    • ReadonlySEQUENCE_QUALITY_MISMATCH: "Sequence and quality strings must have the same length"
    • ReadonlyINVALID_NUCLEOTIDE: "Use IUPAC nucleotide codes: A, C, G, T, U, R, Y, S, W, K, M, B, D, H, V, N"
    • ReadonlyINVALID_BED_COORDINATES: "BED coordinates must be non-negative integers with start < end"
    • ReadonlyCOMPRESSED_FILE_ERROR: "Try installing appropriate compression libraries or check file integrity"
    • ReadonlyMEMORY_EXCEEDED: "Consider using streaming API or processing file in chunks"
    • ReadonlyMALFORMED_LINE: "Check for extra whitespace, special characters, or encoding issues"