Skip to content

Commit f622118

Browse files
committed
Remove temp directives
1 parent dcd87a2 commit f622118

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

workflow/rules/report.smk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ rule diversity_data:
6767
study_fasta = OUTDIR/"nextalign"/f"{OUTPUT_NAME}.aligned.masked.fasta",
6868
context_fasta = OUTDIR/"context"/"nextalign"/"context_sequences.aligned.masked.fasta",
6969
output:
70-
divs = report(REPORT_DIR_TABLES/"diversity.txt"),
71-
json = temp(REPORT_DIR_TABLES/"diversity.json"),
70+
divs = REPORT_DIR_TABLES/"diversity.txt",
71+
json = REPORT_DIR_TABLES/"diversity.json",
7272
log:
7373
LOGDIR / "diversity_data" / "log.txt"
7474
script:
@@ -83,7 +83,7 @@ rule diversity_plot:
8383
plot_width_mm = 159.2,
8484
plot_height_mm = 119.4,
8585
input:
86-
divs = report(REPORT_DIR_TABLES/"diversity.txt"),
86+
divs = REPORT_DIR_TABLES/"diversity.txt",
8787
json = REPORT_DIR_TABLES/"diversity.json",
8888
output:
8989
plot = report(REPORT_DIR_PLOTS/"diversity.png"),

0 commit comments

Comments
 (0)