LSF clusterOptions -m does not submit to specific server #3359
Answered
by
jemunro
colindaven
asked this question in
Q&A
-
Bug reportLSF clusterOptions -m does not submit to specific server
Expected behavior and actual behaviorExpected - job should only be submitted to specific server. Steps to reproduce the problemLSF cluster and changes in nextflow config only required Program outputEnvironment
Additional contextThanks |
Beta Was this translation helpful? Give feedback.
Answered by
jemunro
Nov 9, 2022
Replies: 1 comment 1 reply
-
clusterOptions is a process directive so doesn't belong in the executor scope. Instead in your nextflow.config try: process {
clusterOptions = { task.executor == 'lsf' ? '-m "myserver"' : null }
}
executor {
name = 'lsf'
//name = 'local'
perJobMemLimit = true
queue = 'default'
memory = '60 GB'
cpus = 16
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
colindaven
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
clusterOptions is a process directive so doesn't belong in the executor scope.
Instead in your nextflow.config try: