Skip to content

Commit

Permalink
update memory
Browse files Browse the repository at this point in the history
  • Loading branch information
mAGLAVE committed Jun 21, 2024
1 parent 0f6c5a7 commit 011925b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rules/RNAEditingIndexer.smk
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rule RNAEditingIndexer:
threads:
16
resources:
mem_mb = (lambda wildcards, attempt: attempt * 40960),
mem_mb = (lambda wildcards, attempt: attempt * 20480),
time_min = (lambda wildcards, attempt: attempt * 720)
params:
bam_dir=os.path.normpath(OUTPUT_DIR + "/RNAEditingIndexer/input/"),
Expand Down Expand Up @@ -77,7 +77,7 @@ rule RNAEditingIndexer_summary:
threads:
1
resources:
mem_mb = (lambda wildcards, attempt: attempt * 5120),
mem_mb = (lambda wildcards, attempt: attempt * 2048),
time_min = (lambda wildcards, attempt: attempt * 60)
params:
samples_order_for_ggplot=config["samples_order_for_ggplot"]
Expand Down
2 changes: 1 addition & 1 deletion rules/SPRINT.smk
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ rule SPRINT_summary:
threads:
1
resources:
mem_mb = (lambda wildcards, attempt: attempt * 5000),
mem_mb = (lambda wildcards, attempt: attempt * 2048),
time_min = (lambda wildcards, attempt: attempt * 60)
params:
samples_order_for_ggplot=config["samples_order_for_ggplot"]
Expand Down
4 changes: 2 additions & 2 deletions rules/symlink_qc_filtering.smk
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ rule fastp:
threads:
5
resources:
mem_mb = (lambda wildcards, attempt: attempt * 4096),
mem_mb = (lambda wildcards, attempt: attempt * 1024),
time_min = (lambda wildcards, attempt: attempt * 720)
conda :
PIPELINE_DIR + "/envs/conda/fastp.yaml"
Expand Down Expand Up @@ -114,7 +114,7 @@ rule multiqc:
threads:
1
resources:
mem_mb = (lambda wildcards, attempt: attempt * 5120),
mem_mb = (lambda wildcards, attempt: attempt * 250),
time_min = (lambda wildcards, attempt: attempt * 720)
conda :
PIPELINE_DIR + "/envs/conda/multiqc.yaml"
Expand Down

0 comments on commit 011925b

Please sign in to comment.