Skip to content

Commit

Permalink
Dont remove window table
Browse files Browse the repository at this point in the history
  • Loading branch information
SeviJordi committed Oct 10, 2023
1 parent 2c33a97 commit 5a2000c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/report.smk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rule window:
vcf = OUTDIR/f"{OUTPUT_NAME}.masked.filtered.tsv",
gb = OUTDIR/"reference.gb"
output:
window_df = temp(OUTDIR/f"{OUTPUT_NAME}.window.csv"),
window_df = REPORT_DIR_TABLES/f"{OUTPUT_NAME}.window.csv",
log:
LOGDIR / "window" / "log.txt"
script:
Expand Down Expand Up @@ -74,7 +74,7 @@ rule general_NV_description:
window = 1000,
step = 1
input:
window = OUTDIR/f"{OUTPUT_NAME}.window.csv",
window = REPORT_DIR_TABLES/f"{OUTPUT_NAME}.window.csv",
vcf = OUTDIR/f"{OUTPUT_NAME}.masked.filtered.tsv"
output:
fig = report((REPORT_DIR_PLOTS/"figure_7a.png").resolve()),
Expand Down

0 comments on commit 5a2000c

Please sign in to comment.