pub fn fq2jsonl<R: BufRead, W: Write>(
input: R,
output: &mut W,
) -> Result<(), BrrrrError>
Expand description
Converts a FASTQ file to JSONL
ยงArguments
input
an input that implements the BufRead trait.output
an output that implements the Write trait.