-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Sanger-Update
- Loading branch information
Showing
6 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ profiles { | |
config_profile_description = 'HPC_GENIUS profile for use on the genius cluster of the VSC HPC.' | ||
config_profile_contact = '[email protected]' | ||
config_profile_url = 'https://docs.vscentrum.be/en/latest/index.html' | ||
max_memory = 720.GB // 768 - 48 so 48GB for overhead | ||
max_memory = 703.GB // 768 - 65 so 65GB for overhead, max is 720000MB | ||
max_time = 168.h | ||
max_cpus = 36 | ||
} | ||
|
@@ -55,7 +55,7 @@ profiles { | |
executor = 'slurm' | ||
queue = { | ||
switch (task.memory) { | ||
case { it >= 170.GB }: // 192 - 22 | ||
case { it >= 175.GB }: // max is 180000 | ||
switch (task.time) { | ||
case { it >= 72.h }: | ||
return 'dedicated_big_bigmem' | ||
|
@@ -81,7 +81,7 @@ profiles { | |
config_profile_description = 'HPC_WICE profile for use on the Wice cluster of the VSC HPC.' | ||
config_profile_contact = '[email protected]' | ||
config_profile_url = 'https://docs.vscentrum.be/en/latest/index.html' | ||
max_memory = 2000.GB // 2048 - 48 so 48GB for overhead | ||
max_memory = 1968.GB // max is 2016000 | ||
max_cpus = 72 | ||
max_time = 168.h | ||
} | ||
|
@@ -90,7 +90,7 @@ profiles { | |
executor = 'slurm' | ||
queue = { | ||
switch (task.memory) { | ||
case { it >= 220.GB }: // 256 - 36 | ||
case { it >= 239.GB }: // max is 244800 | ||
switch (task.time) { | ||
case { it >= 72.h }: | ||
return 'dedicated_big_bigmem' | ||
|
@@ -116,7 +116,7 @@ profiles { | |
config_profile_description = 'HPC_SUPERDOME profile for use on the genius cluster of the VSC HPC.' | ||
config_profile_contact = '[email protected]' | ||
config_profile_url = 'https://docs.vscentrum.be/en/latest/index.html' | ||
max_memory = 708.GB // 756 - 48 | ||
max_memory = 5772.GB // 6000 - 228 so 228GB for overhead, max is 5910888MB | ||
max_cpus = 14 | ||
max_time = 168.h | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* nfcore/methylseq custom profile Nextflow config file | ||
* ------------------------------------------------- | ||
* Config options for custom environments. | ||
* Cluster-specific config options should be saved | ||
* in the conf/pipeline/methylseq folder and imported | ||
* under a profile name here. | ||
*/ |