Skip to content

Commit

Permalink
Conditionally include upload rule
Browse files Browse the repository at this point in the history
This change allows the workflow to run when `s3_dst` is not defined,
since the upload rule requires it to be defined.
  • Loading branch information
victorlin committed Sep 14, 2023
1 parent 4ecf498 commit 3046bf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ingest/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ include: "workflow/snakemake_rules/fetch_sequences.smk"

include: "workflow/snakemake_rules/transform.smk"

include: "workflow/snakemake_rules/upload.smk"
if "s3_dst" in config:
include: "workflow/snakemake_rules/upload.smk"

include: "workflow/snakemake_rules/sort.smk"

0 comments on commit 3046bf9

Please sign in to comment.