Skip to content

Commit

Permalink
MRG: clearer message for manysketch (#121)
Browse files Browse the repository at this point in the history
* clearer reporting

* rustfmt

* upd println
  • Loading branch information
bluegenes authored Sep 21, 2023
1 parent e92d537 commit 56b4193
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 file {}/{} ({}%)", i, n_fastas, percent_processed);
}

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

0 comments on commit 56b4193

Please sign in to comment.