Skip to content

Commit

Permalink
Add back xtrafast and fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
bkille committed Nov 19, 2024
1 parent cdb4beb commit 930a0ae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions parsnp
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ def parse_args():
misc_args.add_argument(
"-x",
"--recomb-filter",
"--xtrafast",
action = "store_true",
help="Run recombination filter (phipack)")
misc_args.add_argument(
Expand Down Expand Up @@ -1348,7 +1349,7 @@ SETTINGS:
mumi_dict = {}
finalfiles = []
auto_ref = ""
if not curated and not args.skip_ANI_filter:
if not curated and not args.skip_ani_filter:
logger.info("Filtering genomes...")
if use_parsnp_mumi:
if not inifile_exists:
Expand Down Expand Up @@ -1469,7 +1470,7 @@ SETTINGS:
allfiles.extend(finalfiles)

# If "curateD" then anything that was removed gets added back.
if curated or args.skip_ANI_filter:
if curated or args.skip_ani_filter:
for f in fnafiles:
if f not in finalfiles:
finalfiles.append(f)
Expand Down

0 comments on commit 930a0ae

Please sign in to comment.