File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ rule afwdist_weighted_distances:
2727 variants = OUTDIR / f"{ OUTPUT_NAME } .variants.afwdist.csv" ,
2828 reference = OUTDIR / f"{ OUTPUT_NAME } .ancestor.fasta" ,
2929 output :
30- distances = temp (OUTDIR / " distances.raw.csv" ),
30+ distances = temp (OUTDIR / f" { OUTPUT_NAME } . distances.raw.csv" ),
3131 log :
3232 LOGDIR / "afwdist_weighted_distances" / "log.txt"
3333 shell :
@@ -43,9 +43,9 @@ rule format_afwdist_results:
4343 params :
4444 samples = sorted (iter_samples ()),
4545 input :
46- distances = OUTDIR / " distances.raw.csv" ,
46+ distances = OUTDIR / f" { OUTPUT_NAME } . distances.raw.csv" ,
4747 output :
48- distances = OUTDIR / " distances.csv" ,
48+ distances = OUTDIR / f" { OUTPUT_NAME } . distances.csv" ,
4949 log :
5050 LOGDIR / "format_afwdist_results" / "log.txt"
5151 script :
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ rule allele_freq_tree_data:
262262 use_bionj = config ["USE_BIONJ" ],
263263 ref_name = config ["ALIGNMENT_REFERENCE" ],
264264 input :
265- dist = OUTDIR / " distances.csv" ,
265+ dist = OUTDIR / f" { OUTPUT_NAME } . distances.csv" ,
266266 output :
267267 tree = REPORT_DIR_TABLES / "allele_freq_tree.nwk" ,
268268 log :
You can’t perform that action at this time.
0 commit comments