Skip to content

Commit

Permalink
adjust logging
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanMainguy committed Dec 19, 2024
1 parent 788f168 commit af582a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions binette/cds.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,10 @@ def filter_faa_file(
# Log the computed metrics
logging.info(f"Processing protein sequences from '{input_faa_file}'.")
logging.info(
f"Filtered {input_faa_file} to retain genes from {total_contigs} contigs that are included the input bins."
f"Filtered {input_faa_file} to retain genes from {total_contigs} contigs that are included in the input bins."
)
logging.info(
f"Found {contigs_with_no_genes} contigs ({contigs_with_no_genes / total_contigs:.2%}) with no genes."
logging.debug(
f"Found {contigs_with_no_genes}/{total_contigs} contigs ({contigs_with_no_genes / total_contigs:.2%}) with no genes."
)
logging.debug(
f"{contigs_not_in_keep_list} contigs from the input FASTA file are not in the keep list."
Expand Down

0 comments on commit af582a7

Please sign in to comment.