Function gff2jsonl

Source
pub fn gff2jsonl<R: BufRead, W: Write>(
    input: R,
    output: &mut W,
) -> Result<(), BrrrrError>
Expand description

Converts a GFF file to JSONL

ยงArguments

  • input an input that implements the Read trait.
  • output an output that implements the Write trait.