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";
} = ...
Type Declaration
Readonly
SEQUENCE_QUALITY_MISMATCH: "Sequence and quality strings must have the same length"
Readonly
INVALID_NUCLEOTIDE: "Use IUPAC nucleotide codes: A, C, G, T, U, R, Y, S, W, K, M, B, D, H, V, N"
Readonly
INVALID_BED_COORDINATES: "BED coordinates must be non-negative integers with start < end"
Readonly
COMPRESSED_FILE_ERROR: "Try installing appropriate compression libraries or check file integrity"
Readonly
MEMORY_EXCEEDED: "Consider using streaming API or processing file in chunks"
Error recovery suggestions for common issues