Statistical quality encoding detection across multiple sequences
Analyzes up to 10,000 sequences to determine encoding with high confidence. Best for ambiguous cases where single-sequence detection is uncertain.
Async iterable of sequences with quality strings
Detection result with statistical confidence
const result = await detectEncodingStatistical(sequences);console.log(`Detected ${result.encoding} with ${result.confidence} confidence`); Copy
const result = await detectEncodingStatistical(sequences);console.log(`Detected ${result.encoding} with ${result.confidence} confidence`);
Statistical quality encoding detection across multiple sequences
Analyzes up to 10,000 sequences to determine encoding with high confidence. Best for ambiguous cases where single-sequence detection is uncertain.