Skip to content

Commit

Permalink
Fix variable typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmig committed Oct 20, 2023
1 parent 3cbd8bd commit 728a3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/weighted_distances.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def main():
ancestor_table = build_ancestor_variant_table(ancestor.seq, reference.seq, reference.id, masked_positions)
logging.debug(f"Ancestor has {len(ancestor_table)} variants")
variant_table = pd.concat([input_table, ancestor_table], ignore_index=True)
logging.debug(f"Combined table has {len(ancestor_table)} variants")
logging.debug(f"Combined table has {len(variant_table)} variants")

logging.info(f"Calculating distance matrix")
sample_names = snakemake.params.samples + [reference.id]
Expand Down

0 comments on commit 728a3cc

Please sign in to comment.