paraseq 0.2.1

A minimal-copy parser for FASTA and FASTQ files built for paired parallel processing.
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

pub mod fasta;
pub mod fastq;
pub mod fastx;
pub mod parallel;

/// Default maximum number of records in a record set.
pub const DEFAULT_MAX_RECORDS: usize = 1024;