Skip to content
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
4 changes: 2 additions & 2 deletions barcodeforge/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,9 @@ def barcode(
@click.option(
"--output_metadata_path",
type=click.Path(),
default="metadata.csv",
default="metadata.tsv",
show_default=True,
help="Path to save the metadata table (CSV format).",
help="Path to save the metadata table (TSV format).",
)
@click.option(
"--output_tree_path",
Expand Down
2 changes: 1 addition & 1 deletion barcodeforge/ref_muts.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def process_and_reroot_lineages(
console.print(
f"[{STYLES['warning']}]Warning: Sample {sample_id} not found in FASTA file. Skipping.[/{STYLES['warning']}]"
)
break
continue
root_seqs.append(_construct_root_sequence(root_muts, seq))

if not root_seqs:
Expand Down
Loading