Skip to content

Commit

Permalink
fix: quantification (#74)
Browse files Browse the repository at this point in the history
* fix: aligned rule count_reads output iwth rule merge_counts input

* fix: added dir parameter again because output no longer a dir

* fix: outdir parameter sould now comply with linting and be functional
  • Loading branch information
yeising authored Aug 22, 2024
1 parent 756ba5b commit 3d9216e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/quantification.smk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rule count_reads:
output:
tsv="counts/{sample}_salmon/quant.sf",
params:
outdir=lambda wildcards, ouput: output[0][:-9],
outdir=lambda wildcards: f"counts/{wildcards.sample}_salmon",
libtype=config["salmon_libtype"],
log:
"logs/salmon/{sample}.log",
Expand Down

0 comments on commit 3d9216e

Please sign in to comment.