Skip to content

Commit

Permalink
upd println
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Sep 20, 2023
1 parent 18f9d1d commit ba123e6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/manysketch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +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!(
"Starting {}th fasta file ({}% of total)",
i, percent_processed
);
eprintln!("Starting file {}/{} ({}%)", i, n_fastas, percent_processed);
}

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

0 comments on commit ba123e6

Please sign in to comment.