@@ -4,7 +4,7 @@ rule demix_plot_data:
44 summary_demixing = OUTDIR / "demixing" / "summary.csv" ,
55 metadata = config ["METADATA" ]
66 output :
7- data = report ( REPORT_DIR_TABLES / "demix.csv" )
7+ data = REPORT_DIR_TABLES / "demix.csv"
88 log :
99 LOGDIR / "demix_plot_data" / "log.txt"
1010 script :
@@ -121,7 +121,7 @@ rule window_data:
121121 variants = OUTDIR / f"{ OUTPUT_NAME } .variants.tsv" ,
122122 gb = OUTDIR / "reference.gb" ,
123123 output :
124- window_df = temp ( REPORT_DIR_TABLES / "window.csv" ) ,
124+ window_df = REPORT_DIR_TABLES / "window.csv" ,
125125 json = temp (REPORT_DIR_TABLES / "window.json" ),
126126 log :
127127 LOGDIR / "window_data" / "log.txt"
@@ -264,7 +264,7 @@ rule allele_freq_tree_data:
264264 input :
265265 dist = OUTDIR / "distances.csv" ,
266266 output :
267- tree = report ( REPORT_DIR_TABLES / "allele_freq_tree.nwk" ) ,
267+ tree = REPORT_DIR_TABLES / "allele_freq_tree.nwk" ,
268268 log :
269269 LOGDIR / "allele_freq_tree_data" / "log.txt"
270270 script :
@@ -299,7 +299,7 @@ rule time_signal_data:
299299 metadata = config ["METADATA" ],
300300 output :
301301 table = report (REPORT_DIR_TABLES / "time_signal.csv" ),
302- json = REPORT_DIR_TABLES / "time_signal.json"
302+ json = REPORT_DIR_TABLES / "time_signal.json" ,
303303 log :
304304 LOGDIR / "time_signal_data" / "log.txt"
305305 script :
@@ -348,7 +348,7 @@ rule af_time_correlation_data:
348348 variants = OUTDIR / f"{ OUTPUT_NAME } .variants.tsv" ,
349349 metadata = config ["METADATA" ],
350350 output :
351- fmt_variants = temp (OUTDIR / f" { OUTPUT_NAME } . variants.filled.dated.tsv" ),
351+ fmt_variants = temp (REPORT_DIR_TABLES / " variants.filled.dated.tsv" ),
352352 correlations = report (REPORT_DIR_TABLES / "af_time_correlation.csv" ),
353353 subset = REPORT_DIR_TABLES / "af_time_correlation.subset.txt" ,
354354 log :
@@ -382,7 +382,7 @@ rule af_trajectory_panel_plot:
382382 plot_width_mm = 159.2 ,
383383 random_color_seed = 7291 ,
384384 input :
385- fmt_variants = OUTDIR / f" { OUTPUT_NAME } . variants.filled.dated.tsv" ,
385+ fmt_variants = REPORT_DIR_TABLES / " variants.filled.dated.tsv" ,
386386 subset = REPORT_DIR_TABLES / "af_time_correlation.subset.txt"
387387 output :
388388 plot = report (REPORT_DIR_PLOTS / "af_trajectory_panel.png" ),
@@ -398,7 +398,7 @@ rule summary_table:
398398 report = report (OUTDIR / f"{ OUTPUT_NAME } .lineage_report.csv" ),
399399 metadata = config ["METADATA" ]
400400 output :
401- table = temp ( OUTDIR / "summary_table.csv" )
401+ table = REPORT_DIR_TABLES / "summary_table.csv"
402402 log :
403403 LOGDIR / "summary_table" / "log.txt"
404404 script :
0 commit comments