1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00

Merge pull request #3 from ilight1542/mpcdf_eager_config_update

modified mpcdf configs (general + eager)
This commit is contained in:
James A. Fellows Yates 2022-03-03 14:25:58 +01:00 committed by GitHub
commit 18890fc3cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 1 deletions

View file

@ -47,7 +47,7 @@ profiles {
}
executor {
queueSize = 8
queueSize = 30
pollInterval = '1 min'
queueStatInterval = '5 min'
}

View file

@ -61,4 +61,59 @@ process {
}
}
}
raven {
// Specific nf-core/eager process configuration
process {
withName: malt {
maxRetries = 1
memory = 2048.GB
cpus = 72
time = 24.h
}
withLabel:'sc_tiny'{
cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 1.GB * task.attempt, 'memory' ) }
time = 24.h
}
withLabel:'sc_small'{
cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = 24.h
}
withLabel:'sc_medium'{
cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 8.GB * task.attempt, 'memory' ) }
time = 24.h
}
withLabel:'mc_small'{
cpus = { check_max( 2 * task.attempt, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = 24.h
}
withLabel:'mc_medium' {
cpus = { check_max( 4 * task.attempt, 'cpus' ) }
memory = { check_max( 8.GB * task.attempt, 'memory' ) }
time = 24.h
}
withLabel:'mc_large'{
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 16.GB * task.attempt, 'memory' ) }
time = 24.h
}
withLabel:'mc_huge'{
cpus = { check_max( 72, 'cpus' ) }
memory = { check_max( 240.GB * task.attempt, 'memory' ) }
time = 24.h
}
}
}
}