1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-10 20:13:09 +00:00

changed # to // for comments

This commit is contained in:
Graeme Grimes 2021-03-04 16:45:21 +00:00 committed by GitHub
parent 4c0111f598
commit babeccd020
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,16 +16,16 @@ singularity {
process {
executor = 'sge'
# memory environment & options
// memory environment & options
clusterOptions = {"-l h_vmem=${task.memory.bytes/task.cpus}"}
penv = 'sharedmem'
# common SGE error statuses
// common SGE error statuses
errorStrategy = {task.exitStatus in [143,137,104,134,139] ? 'retry' : 'finish'}
maxErrors = '-1'
maxRetries = 3
# load module script for Anaconda and Singularity
// load module script for Anaconda and Singularity
beforeScript = { '. /etc/profile.d/modules.sh; sleep 2; ' }
module = 'anaconda/5.3.1'
module = 'singularity/3.5.3'