Skip to content

Commit

Permalink
fixing a missing argument in the log multisample plotting function
Browse files Browse the repository at this point in the history
  • Loading branch information
nrminor committed Nov 25, 2024
1 parent 06db6a0 commit 5ffaac3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions bin/multisample_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,15 @@ def main() -> None:
sample_dataframe = accumulate_cov_dfs(args.input_dir, sample_list)

if args.log:
plot_instance = plot_log_coverages(sample_dataframe)
plot_instance = plot_log_coverages(
sample_dataframe,
min_desired_depth,
)
else:
plot_instance = plot_coverages(sample_dataframe, min_desired_depth)
plot_instance = plot_coverages(
sample_dataframe,
min_desired_depth,
)

ggsave(
plot_instance,
Expand Down

0 comments on commit 5ffaac3

Please sign in to comment.