prseq/
lib.rs

1mod common;
2pub mod fasta;
3pub mod fastq;
4
5// Re-export the main FASTA types for backward compatibility
6pub use fasta::{read_fasta, read_fasta_with_capacity, FastaReader, FastaRecord};
7
8// Re-export FASTQ types
9pub use fastq::{read_fastq, read_fastq_with_capacity, FastqReader, FastqRecord};