mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Merge pull request #218 from asafpr/master
added jax singularity cache dir
This commit is contained in:
commit
26b5904df1
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_description = 'The Jackson Laboratory Sumner HPC profile provided by nf-core/configs.'
|
||||||
config_profile_contact = 'Asaf Peer (@peera)'
|
config_profile_contact = 'Asaf Peer (@peera)'
|
||||||
config_profile_url = 'https://jacksonlaboratory.sharepoint.com/sites/ResearchIT/SitePages/Welcome-to-Sumner.aspx'
|
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
|
executor.$slurm.queueSize = 250
|
||||||
|
@ -12,8 +13,11 @@ process {
|
||||||
module = "slurm"
|
module = "slurm"
|
||||||
beforeScript = 'module load singularity'
|
beforeScript = 'module load singularity'
|
||||||
}
|
}
|
||||||
singularity.enabled = true
|
singularity{
|
||||||
singularity.autoMounts = true
|
enabled = true
|
||||||
|
autoMounts = true
|
||||||
|
cacheDir = params.singularity_cache_dir
|
||||||
|
}
|
||||||
params {
|
params {
|
||||||
max_memory = 768.GB
|
max_memory = 768.GB
|
||||||
max_cpus = 70
|
max_cpus = 70
|
||||||
|
|
Loading…
Reference in a new issue