Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set BWA and bwamem2 index memory dynamically #6628

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion modules/nf-core/bwa/index/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
process BWA_INDEX {
tag "$fasta"
label 'process_single'
// NOTE requires 5.37N memory where N is the size of the database
// source: https://bio-bwa.sourceforge.net/bwa.shtml#8
memory { 6.B * fasta.size() }

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
Expand Down
4 changes: 3 additions & 1 deletion modules/nf-core/bwamem2/index/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
process BWAMEM2_INDEX {
tag "$fasta"
label 'process_single'
// NOTE Requires 28N GB memory where N is the size of the reference sequence
// source: https://github.com/bwa-mem2/bwa-mem2/issues/9
memory { 28.B * fasta.size() }

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
Expand Down
Loading