Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Sep 20, 2023
1 parent 12a6fa9 commit 18f9d1d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/manysketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ pub fn manysketch<P: AsRef<Path> + Sync>(
// progress report at threshold
if i != 0 && i % reporting_threshold == 0 {
let percent_processed = ((i as f64 / n_fastas as f64) * 100.0).round();
eprintln!("Starting {}th fasta file ({}% of total)", i, percent_processed);
eprintln!(
"Starting {}th fasta file ({}% of total)",
i, percent_processed
);
}

let mut data: Vec<u8> = vec![];
Expand Down

0 comments on commit 18f9d1d

Please sign in to comment.