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