Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust logging and fix unwanted progress bar #296

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ppanggolin/annotate/annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ def read_org_gbff(
contig.add_metadata(Metadata(source="annotation_file", **metadata_dict))

if used_transl_table_arg:
logging.getLogger("PPanGGOLiN").info(
logging.getLogger("PPanGGOLiN").debug(
f"transl_table tag was not found for {used_transl_table_arg} CDS "
f"in {gbff_file_path}. Provided translation_table argument value was used instead: {translation_table}."
)
Expand Down
1 change: 1 addition & 0 deletions ppanggolin/projection/projection.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,7 @@ def annotate_input_genes_with_pangenome_families(
identity=identity,
coverage=coverage,
translation_table=translation_table,
disable_bar=disable_bar,
)
else:
_, seqid_to_gene_family = get_input_seq_to_family_with_all(
Expand Down
Loading