Skip to content

Commit

Permalink
clearer reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Sep 20, 2023
1 parent e92d537 commit 12a6fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manysketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ 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!("Processed {} fasta files ({}% done)", 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 12a6fa9

Please sign in to comment.