Skip to content

Commit

Permalink
Merge pull request #308 from labgem/fix_wf_draw_spot_config
Browse files Browse the repository at this point in the history
Fix incorrect argument handling for spot drawing in workflow commands
  • Loading branch information
axbazin authored Jan 9, 2025
2 parents 7faa666 + 0cd3135 commit e88cf0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ppanggolin/workflow/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,13 +277,13 @@ def launch_workflow(

if not args.no_flat_files:

if panrgp and args.draw.spots:
if panrgp and args.draw.draw_spots:
start_spot_drawing = time.time()
mk_outdir(args.output / "spot_figures", force=True)
draw_spots(
pangenome=pangenome,
output=args.output / "spot_figures",
spot_list="all",
spot_list=args.draw.spots,
disable_bar=args.disable_prog_bar,
)
spot_time += time.time() - start_spot_drawing
Expand Down

0 comments on commit e88cf0a

Please sign in to comment.