Skip to content

Commit

Permalink
Fix errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
hhandika committed Feb 5, 2024
1 parent 222b134 commit 7b88f78
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/handler/contig/summarize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl<'a> ContigSummaryHandler<'a> {
panic!("No contig files found")
}

if files.len() == 1 {
if self.files.len() == 1 {
return vec![self.process_contigs(&self.files[0])];
}

Expand All @@ -65,9 +65,4 @@ impl<'a> ContigSummaryHandler<'a> {
log::info!("{}", "Output".yellow());
log::info!("{:18}: {}", "Dir", self.output.display());
}

fn print_input_info(&self) {
log::info!("{}", "Output".yellow());
log::info!("{:18}: {}", "Dir", self.output.display());
}
}

0 comments on commit 7b88f78

Please sign in to comment.