Skip to content

Commit

Permalink
flag EXTRA_PARAMS_FLYE
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed Oct 18, 2024
1 parent b664c78 commit 3580a4d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hybracter/workflow/hybrid.smk
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ EXTRA_PARAMS_FLYE = config.args.extra_params_flye
ADD_TO_FLYE = False

# Only if user specifies - otherwise None
if extra_params_flye:
if EXTRA_PARAMS_FLYE:
ADD_TO_FLYE = True
print(f"As you have used --extra_params_flye the extra parameters {EXTRA_PARAMS_FLYE} will be used with Flye.")

Expand Down
2 changes: 1 addition & 1 deletion hybracter/workflow/long.smk
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ EXTRA_PARAMS_FLYE = config.args.extra_params_flye
ADD_TO_FLYE = False

# Only if user specifies - otherwise None
if extra_params_flye:
if EXTRA_PARAMS_FLYE:
ADD_TO_FLYE = True
print(f"The extra parameters {EXTRA_PARAMS_FLYE} will be used with Flye ")

Expand Down
2 changes: 1 addition & 1 deletion hybracter/workflow/test_hybrid.smk
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ EXTRA_PARAMS_FLYE = config.args.extra_params_flye
ADD_TO_FLYE = False

# Only if user specifies - otherwise None
if extra_params_flye:
if EXTRA_PARAMS_FLYE:
ADD_TO_FLYE = True
print(f"The extra parameters {EXTRA_PARAMS_FLYE} will be used with Flye ")

Expand Down
2 changes: 1 addition & 1 deletion hybracter/workflow/test_long.smk
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ EXTRA_PARAMS_FLYE = config.args.extra_params_flye
ADD_TO_FLYE = False

# Only if user specifies - otherwise None
if extra_params_flye:
if EXTRA_PARAMS_FLYE:
ADD_TO_FLYE = True
print(f"The extra parameters {EXTRA_PARAMS_FLYE} will be used with Flye ")

Expand Down

0 comments on commit 3580a4d

Please sign in to comment.