mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-12-04 04:39:54 +00:00
Sanger profile update
This commit is contained in:
parent
a02bd46617
commit
58508c4fbc
1 changed files with 22 additions and 24 deletions
|
@ -1,35 +1,33 @@
|
||||||
|
// Profile details
|
||||||
params {
|
params {
|
||||||
config_profile_description = 'The Wellcome Sanger Institute HPC cluster profile'
|
config_profile_description = 'The Wellcome Sanger Institute HPC cluster (farm5) profile'
|
||||||
config_profile_contact = 'Anthony Underwood (@aunderwo)'
|
config_profile_contact = 'Priyanka Surana (@priyanka-surana)'
|
||||||
config_profile_url = 'https://www.sanger.ac.uk/group/informatics-support-group/'
|
config_profile_url = 'https://www.sanger.ac.uk'
|
||||||
}
|
|
||||||
|
|
||||||
singularity {
|
|
||||||
enabled = true
|
|
||||||
cacheDir = "${baseDir}/singularity"
|
|
||||||
runOptions = '--bind /lustre --bind /nfs/pathnfs01 --bind /nfs/pathnfs02 --bind /nfs/pathnfs03 --bind /nfs/pathnfs04 --bind /nfs/pathnfs05 --bind /nfs/pathnfs06 --no-home'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Queue and retry strategy
|
||||||
process{
|
process{
|
||||||
executor = 'lsf'
|
executor = 'lsf'
|
||||||
queue = 'normal'
|
queue = { task.time < 12.h ? 'normal' : task.time < 48.h ? 'long' : 'basement' }
|
||||||
errorStrategy = { task.attempt <= 5 ? "retry" : "finish" }
|
errorStrategy = 'retry'
|
||||||
process.maxRetries = 5
|
maxRetries = 5
|
||||||
withLabel:process_long {
|
|
||||||
queue = 'long'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Executor details
|
||||||
executor{
|
executor{
|
||||||
name = 'lsf'
|
name = 'lsf'
|
||||||
perJobMemLimit = true
|
perJobMemLimit = true
|
||||||
poolSize = 4
|
poolSize = 4
|
||||||
submitRateLimit = '5 sec'
|
submitRateLimit = '5 sec'
|
||||||
killBatchSize = 50
|
killBatchSize = 50
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Max resources
|
||||||
params {
|
params {
|
||||||
max_memory = 128.GB
|
max_memory = 683.GB
|
||||||
max_cpus = 64
|
max_cpus = 256
|
||||||
max_time = 48.h
|
max_time = 720.h
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// For singularity
|
||||||
|
singularity.runOptions = '--bind /lustre --bind /nfs'
|
||||||
|
|
Loading…
Reference in a new issue