mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
added jax singularity cache dir
This commit is contained in:
parent
9b2d5bfead
commit
922ab87eb0
1 changed files with 6 additions and 2 deletions
|
@ -2,6 +2,7 @@ params {
|
|||
config_profile_description = 'The Jackson Laboratory Sumner HPC profile provided by nf-core/configs.'
|
||||
config_profile_contact = 'Asaf Peer (@peera)'
|
||||
config_profile_url = 'https://jacksonlaboratory.sharepoint.com/sites/ResearchIT/SitePages/Welcome-to-Sumner.aspx'
|
||||
singularity_cache_dir = '/fastscratch/singularity_cache_nfcore'
|
||||
}
|
||||
|
||||
executor.$slurm.queueSize = 250
|
||||
|
@ -12,8 +13,11 @@ process {
|
|||
module = "slurm"
|
||||
beforeScript = 'module load singularity'
|
||||
}
|
||||
singularity.enabled = true
|
||||
singularity.autoMounts = true
|
||||
singularity{
|
||||
enabled = true
|
||||
autoMounts = true
|
||||
cacheDir = params.singularity_cache_dir
|
||||
}
|
||||
params {
|
||||
max_memory = 768.GB
|
||||
max_cpus = 70
|
||||
|
|
Loading…
Reference in a new issue