Skip to content

Commit ce63a14

Browse files
committed
add basic slurm profile
1 parent b3be48e commit ce63a14

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

conf/slurm_basic.config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
executor {
2+
name = "slurm"
3+
// maximum number of tasks to submit to the queue
4+
queueSize = 200
5+
6+
// queue / partion to submit jobs to (uncomment and specify if needed)
7+
// queue = "default"
8+
9+
// set to true to enable per CPU memory allocation (uncomment if needed)
10+
// perCpuMemAllocation = true
11+
}

nextflow.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ profiles {
141141
charliecloud.enabled = false
142142
apptainer.enabled = false
143143
}
144+
slurm {
145+
includeConfig 'conf/slurm_basic.config'
146+
}
144147
test { includeConfig 'conf/test.config' }
145148
large { includeConfig 'conf/base_large.config' }
146149
}

0 commit comments

Comments
 (0)