mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Added SAHMRI HPC profile
This commit is contained in:
parent
6c79c75eec
commit
b638694bd0
3 changed files with 29 additions and 0 deletions
1
.github/workflows/main.yml
vendored
1
.github/workflows/main.yml
vendored
|
@ -63,6 +63,7 @@ jobs:
|
||||||
- 'phoenix'
|
- 'phoenix'
|
||||||
- 'prince'
|
- 'prince'
|
||||||
- 'rosalind'
|
- 'rosalind'
|
||||||
|
- 'sahmri'
|
||||||
- 'sanger'
|
- 'sanger'
|
||||||
- 'seg_globe'
|
- 'seg_globe'
|
||||||
- 'uct_hpc'
|
- 'uct_hpc'
|
||||||
|
|
28
conf/sahmri.config
Normal file
28
conf/sahmri.config
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
params {
|
||||||
|
config_profile_description = 'South Australian Medial Health and Research Institute (SAHMRI) HPC cluster profile.'
|
||||||
|
config_profile_contact = 'Nathan Watson-Haigh (nathan.watson-haigh@sahmri.com)'
|
||||||
|
config_profile_url = "https://sahmri.com"
|
||||||
|
max_memory = 375.GB
|
||||||
|
max_cpus = 32
|
||||||
|
max_time = 14.d
|
||||||
|
igenomes_base = '/cancer/storage/shared/igenomes/'
|
||||||
|
}
|
||||||
|
process {
|
||||||
|
executor = 'slurm'
|
||||||
|
queue = 'sahmri_prod_hpc,sahmri_cancer_hpc'
|
||||||
|
maxRetries = 2
|
||||||
|
|
||||||
|
cpus = { check_max( 2 * task.attempt, 'cpus') }
|
||||||
|
memory = { check_max( 1.GB * task.attempt, 'memory') }
|
||||||
|
time = { check_max( 10.m * task.attempt, 'time') }
|
||||||
|
}
|
||||||
|
executor {
|
||||||
|
queueSize = 50
|
||||||
|
submitRateLimit = '10 sec'
|
||||||
|
}
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
autoMounts = true
|
||||||
|
cacheDir = '/cancer/storage/shared/simg'
|
||||||
|
}
|
||||||
|
cleanup = true
|
0
docs/sahmri.md
Normal file
0
docs/sahmri.md
Normal file
Loading…
Reference in a new issue