@@ -30,7 +30,7 @@ rule demix_plot:
3030rule heatmap_plot_data :
3131 conda : "../envs/renv.yaml"
3232 input :
33- vcf = OUTDIR / f"{ OUTPUT_NAME } .masked.filtered .tsv" ,
33+ vcf = OUTDIR / f"{ OUTPUT_NAME } .variants .tsv" ,
3434 metadata = config ["METADATA" ]
3535 output :
3636 table = report (REPORT_DIR_TABLES / "heatmap.csv" )
@@ -46,7 +46,7 @@ rule window:
4646 window = config ["WINDOW" ]["WIDTH" ],
4747 step = config ["WINDOW" ]["STEP" ]
4848 input :
49- vcf = OUTDIR / f"{ OUTPUT_NAME } .masked.filtered .tsv" ,
49+ vcf = OUTDIR / f"{ OUTPUT_NAME } .variants .tsv" ,
5050 gb = OUTDIR / "reference.gb" ,
5151 features = config ["FEATURES_JSON" ]
5252 output :
@@ -105,7 +105,7 @@ rule general_NV_description:
105105 coordinates = config ["COORDINATES_JSON" ],
106106 regions = config ["PLOT_GENOME_REGIONS" ],
107107 window = OUTDIR / f"{ OUTPUT_NAME } .window.csv" ,
108- vcf = OUTDIR / f"{ OUTPUT_NAME } .masked.filtered .tsv" ,
108+ vcf = OUTDIR / f"{ OUTPUT_NAME } .variants .tsv" ,
109109 metadata = config ["METADATA" ]
110110 output :
111111 fig = report (REPORT_DIR_PLOTS / "figure_5a.png" ),
@@ -230,7 +230,7 @@ rule evo_plots:
230230 design = config ["PLOTS" ]
231231 input :
232232 N_S = OUTDIR / f"{ OUTPUT_NAME } .ancestor.N_S.sites.csv" ,
233- vcf = OUTDIR / f"{ OUTPUT_NAME } .masked.filtered .tsv" ,
233+ vcf = OUTDIR / f"{ OUTPUT_NAME } .variants .tsv" ,
234234 metadata = config ["METADATA" ]
235235 output :
236236 plot = report (REPORT_DIR_PLOTS / "figure_11.png" ),
@@ -249,7 +249,7 @@ rule snp_plots:
249249 cor_method = config ["COR" ]["METHOD" ],
250250 cor_exact = config ["COR" ]["EXACT" ]
251251 input :
252- vcf = OUTDIR / f"{ OUTPUT_NAME } .masked.filtered .tsv" ,
252+ vcf = OUTDIR / f"{ OUTPUT_NAME } .variants .tsv" ,
253253 metadata = config ["METADATA" ]
254254 output :
255255 pseudovolcano = report (REPORT_DIR_PLOTS / "figure_6.png" ),
0 commit comments