@@ -49,31 +49,31 @@ rule diversity:
4949 "../scripts/report/diversity_plot.R"
5050
5151
52- rule freyja_plot_data :
52+ rule demix_plot_data :
5353 conda : "../envs/renv.yaml"
5454 input :
5555 summary_demixing = OUTDIR / "demixing" / "summary.csv" ,
5656 metadata = config ["METADATA" ]
5757 output :
58- data = report (REPORT_DIR_TABLES / "freyja .csv" )
58+ data = report (REPORT_DIR_TABLES / "demix .csv" )
5959 log :
60- LOGDIR / "freyja_plot_data " / "log.txt"
60+ LOGDIR / "demix_plot_data " / "log.txt"
6161 script :
62- "../scripts/report/freyja_plot_data .R"
62+ "../scripts/report/demix_plot_data .R"
6363
6464
65- rule freyja_plot :
65+ rule demix_plot :
6666 conda : "../envs/renv.yaml"
6767 params :
6868 design = config ["PLOTS" ]
6969 input :
70- data = REPORT_DIR_TABLES / "freyja .csv"
70+ data = REPORT_DIR_TABLES / "demix .csv"
7171 output :
72- plot = report (REPORT_DIR_PLOTS / "freyja .png" )
72+ plot = report (REPORT_DIR_PLOTS / "demix .png" )
7373 log :
74- LOGDIR / "freyja_plot " / "log.txt"
74+ LOGDIR / "demix_plot " / "log.txt"
7575 script :
76- "../scripts/report/freyja_plot .R"
76+ "../scripts/report/demix_plot .R"
7777
7878
7979rule general_NV_description :
@@ -186,7 +186,7 @@ rule report:
186186 shadow : "shallow"
187187 input :
188188 qmd = Path (config ["REPORT_QMD" ]).resolve (),
189- freyja = report (REPORT_DIR_PLOTS / "freyja .png" ),
189+ demix = report (REPORT_DIR_PLOTS / "demix .png" ),
190190 tree_ml = report (REPORT_DIR_PLOTS / "figure_2.png" ),
191191 diversity = report (REPORT_DIR_PLOTS / "figure_3.png" ),
192192 fig_cor = report (REPORT_DIR_PLOTS / "figure_4.png" ),
@@ -229,7 +229,7 @@ rule report:
229229 "use_bionj='{params.use_bionj}', "
230230 "cor_method='{params.cor_method}', "
231231 "div='{input.diversity}', "
232- "freyja ='{input.freyja }', "
232+ "demix ='{input.demix }', "
233233 "tree = '{input.tree}', "
234234 "tempest = '{input.temest}', "
235235 "SNV = '{input.SNV}', "
0 commit comments