Skip to content

Commit

Permalink
Don't filter samples collected today
Browse files Browse the repository at this point in the history
Closes #553
  • Loading branch information
jameshadfield committed Feb 19, 2021
1 parent 0a42987 commit 0920c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/snakemake_rules/main_workflow.smk
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ rule filter:
exclude_where = lambda wildcards: _get_filter_value(wildcards, "exclude_where"),
min_date = lambda wildcards: _get_filter_value(wildcards, "min_date"),
ambiguous = lambda wildcards: f"--exclude-ambiguous-dates-by {_get_filter_value(wildcards, 'exclude_ambiguous_dates_by')}" if _get_filter_value(wildcards, "exclude_ambiguous_dates_by") else "",
date = date.today().strftime("%Y-%m-%d")
date = (date.today() + datetime.timedelta(days=1)).strftime("%Y-%m-%d")
conda: config["conda_environment"]
shell:
"""
Expand Down

0 comments on commit 0920c58

Please sign in to comment.