Skip to content

Commit

Permalink
Correct new stable arg type to None in lineages script
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlees committed Aug 9, 2024
1 parent 35c9b37 commit a4dd690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PopPUNK/lineages.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def query_db(args):
False, # write references - need to consider whether to support ref-only databases for assignment
distances,
False, # serial - needs to be supported for web version?
False, # stable - not supported here
None, # stable - not supported here
args.threads,
True, # overwrite - probably OK?
False, # plot_fit - turn off for now
Expand Down Expand Up @@ -426,7 +426,7 @@ def query_db(args):
False, # write references - need to consider whether to support ref-only databases for assignment
lineage_distances,
False, # serial - needs to be supported for web version?
False, # stable - not supported here
None, # stable - not supported here
args.threads,
True, # overwrite - probably OK?
False, # plot_fit - turn off for now
Expand Down

0 comments on commit a4dd690

Please sign in to comment.