1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 16:16:04 +00:00

Merge pull request #386 from andrewfrank/patch-2

Update google.config to fix custom VM memory error
This commit is contained in:
James A. Fellows Yates 2022-08-29 08:30:39 +02:00 committed by GitHub
commit b33aef1431
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,4 +19,6 @@ google.lifeSciences.preemptible = params.google_preemptible
if (google.lifeSciences.preemptible) {
process.errorStrategy = { task.exitStatus in [8,10,14] ? 'retry' : 'terminate' }
process.maxRetries = 5
}
}
process.machineType = { task.memory > task.cpus * 6.GB ? ['custom', task.cpus, task.cpus * 6656].join('-') : null }