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::{FastaRecord, FastaReader, read_fasta, read_fasta_with_capacity};
7
8// Re-export FASTQ types
9pub use fastq::{FastqRecord, FastqReader, read_fastq, read_fastq_with_capacity};
10
11