Skip to content

Commit

Permalink
fix: fix vembrane aux (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMoelder authored Apr 17, 2023
1 parent e06d0d1 commit 245366c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def get_annotation_filter_expression(wildcards):

def get_annotation_filter_aux(wildcards):
return [
f"--aux {name} {path}"
f"--aux {name}={path}"
for filter in get_annotation_filter_names(wildcards)
for name, path in get_filter_aux_entries(filter).items()
]
Expand Down Expand Up @@ -720,7 +720,7 @@ def get_candidate_filter_aux():
return ""
else:
return [
f"--aux {name} {path}"
f"--aux {name}={path}"
for name, path in get_filter_aux_entries("candidates").items()
]

Expand Down

0 comments on commit 245366c

Please sign in to comment.