We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3be48e commit ce63a14Copy full SHA for ce63a14
2 files changed
conf/slurm_basic.config
@@ -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
@@ -141,6 +141,9 @@ profiles {
141
charliecloud.enabled = false
142
apptainer.enabled = false
143
}
144
+ slurm {
145
+ includeConfig 'conf/slurm_basic.config'
146
+ }
147
test { includeConfig 'conf/test.config' }
148
large { includeConfig 'conf/base_large.config' }
149
0 commit comments