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

    Class FastaParser

    Parser for FASTA sequence files.

    Delegates all parsing to the Rust noodles-fasta reader, which handles multi-line sequences and gzip-compressed input transparently.

    const parser = new FastaParser();
    for await (const seq of parser.parseFile("genome.fasta")) {
    console.log(`${seq.id}: ${seq.length} bp`);
    }
    const results = await seqops(new FastaParser().parseFile("genome.fasta"))
    .filter({ minLength: 100 })
    .collect();

    Hierarchy

    Index

    Constructors

    Methods