Skip to content

Commit

Permalink
increase resources for attempts for macs
Browse files Browse the repository at this point in the history
  • Loading branch information
CChahrour committed Apr 24, 2024
1 parent 149f26b commit b3f70a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seqnado/workflow/rules/peak_call_chip.smk
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ rule macs2_with_input:
basename=lambda wc, output: output.peaks.replace(".bed", ""),
threads: 1
resources:
mem="2GB",
mem=lambda wildcards, attempt: f"{2 * 2 ** (attempt)}GB",
runtime="2h",
log:
"seqnado_output/logs/macs/{sample}_{treatment}.log",
Expand All @@ -87,7 +87,7 @@ rule macs2_no_input:
basename=lambda wc, output: output.peaks.replace(".bed", ""),
threads: 1
resources:
mem="2GB",
mem=lambda wildcards, attempt: f"{2 * 2 ** (attempt)}GB",
runtime="2h",
log:
"seqnado_output/logs/macs/{sample}_{treatment}.log",
Expand Down

0 comments on commit b3f70a7

Please sign in to comment.