mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-26 01:39:55 +00:00
put comments back in correct format
This commit is contained in:
parent
46223a3dbb
commit
a67e77bb57
1 changed files with 13 additions and 3 deletions
|
@ -1,4 +1,11 @@
|
||||||
|
/*
|
||||||
|
* -------------------------------------------------
|
||||||
|
* Nextflow nf-core config file for ICR davros HPC
|
||||||
|
* -------------------------------------------------
|
||||||
|
* Defines LSF process executor and singularity
|
||||||
|
* settings.
|
||||||
|
*
|
||||||
|
*/
|
||||||
params {
|
params {
|
||||||
config_profile_description = "Nextflow nf-core profile for ICR davros HPC"
|
config_profile_description = "Nextflow nf-core profile for ICR davros HPC"
|
||||||
config_profile_contact = "Adrian Larkeryd"
|
config_profile_contact = "Adrian Larkeryd"
|
||||||
|
@ -10,7 +17,9 @@ singularity {
|
||||||
}
|
}
|
||||||
|
|
||||||
executor {
|
executor {
|
||||||
|
// This is set because of an issue with too many
|
||||||
|
// singularity containers launching at once, they
|
||||||
|
// cause an singularity error with exit code 255.
|
||||||
submitRateLimit = "2 sec"
|
submitRateLimit = "2 sec"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +28,8 @@ process {
|
||||||
}
|
}
|
||||||
|
|
||||||
params {
|
params {
|
||||||
|
// LSF cluster set up with memory tied to cores,
|
||||||
|
// it can't be requested. Locked at 12G per core.
|
||||||
cpus = 10
|
cpus = 10
|
||||||
max_cpus = 20
|
max_cpus = 20
|
||||||
max_memory = 12.GB
|
max_memory = 12.GB
|
||||||
|
|
Loading…
Reference in a new issue