Skip to content

Commit

Permalink
Update peak_calling.smk
Browse files Browse the repository at this point in the history
  • Loading branch information
Maarten-vd-Sande authored Sep 14, 2023
1 parent 6cded9c commit 23f5506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seq2science/rules/peak_calling.smk
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ rule macs2_callpeak:
)
else "BAM"
),
control=lambda wildcards, input: f"-c {input.control}" if input hasattr("control") else "",
control=lambda wildcards, input: f"-c {input.control}" if hasattr(input, "control") else "",
keep_mates=config["macs2_keep_mates"]
resources:
mem_gb=4,
Expand Down

0 comments on commit 23f5506

Please sign in to comment.