Skip to content

Commit 490e3d0

Browse files
committed
updated input
1 parent f44fcd5 commit 490e3d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

workflow/rules/plotting.smk

+3-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ rule plot_correlation_bedgraph:
5252
"--outFileCorMatrix {output.tab} "
5353
"--colorMap viridis "
5454
"--skipZeros "
55+
"{params.extra} "
5556
"> {log} 2>&1"
5657

5758

@@ -76,7 +77,7 @@ rule plot_heatmap:
7677
pt=config["deeptools"]["plotHeatmap"]["plotType"],
7778
cm=config["deeptools"]["plotHeatmap"]["colorMap"],
7879
a=config["deeptools"]["plotHeatmap"]["alpha"],
79-
extra="",
80+
extra=config["deeptools"]["plotHeatmap"]["extra"],
8081
threads: config["resources"]["deeptools"]["cpu"]
8182
resources:
8283
runtime=config["resources"]["deeptools"]["time"]
@@ -185,7 +186,7 @@ elif config["peak_calling_macs2"]["run"]:
185186

186187
rule plot_mapping_rates:
187188
input:
188-
log=expand("logs/damidseq_pipeline/{dir}/damidseq_pipeline.log", dir=DIRS),
189+
log=expand("logs/bowtie2_align/{dir}/{sample}.log", dir=DIRS, sample=SAMPLES),
189190
output:
190191
pdf=report("results/plots/mapping_rates.pdf", caption="../report/mapping_rates.rst", category="Mapping rates"),
191192
params:

0 commit comments

Comments
 (0)