mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Add files via upload
This commit is contained in:
parent
58fe1a5808
commit
87e4ece034
1 changed files with 38 additions and 0 deletions
38
conf/nihbiowulf.config
Normal file
38
conf/nihbiowulf.config
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'National Institutes of Health, USA: Biowulf nf-core config'
|
||||||
|
config_profile_contact = 'Kevin Brick (@kevbrick)'
|
||||||
|
config_profile_url = 'https://hpc.nih.gov/apps/nextflow.html'
|
||||||
|
max_memory = 224.GB
|
||||||
|
max_cpus = 32
|
||||||
|
max_time = 72.h
|
||||||
|
|
||||||
|
igenomes_base = '/fdb/igenomes/'
|
||||||
|
}
|
||||||
|
|
||||||
|
process {
|
||||||
|
scratch = '/lscratch/$SLURM_JOBID'
|
||||||
|
maxForks = 100
|
||||||
|
}
|
||||||
|
|
||||||
|
profiles {
|
||||||
|
local {
|
||||||
|
process.executor = 'local'
|
||||||
|
}
|
||||||
|
|
||||||
|
slurm {
|
||||||
|
process.executor = 'slurm'
|
||||||
|
executor.$slurm.pollInterval = '1 min'
|
||||||
|
executor.$slurm.queueStatInterval = '5 min'
|
||||||
|
executor.queueSize = 100
|
||||||
|
executor.$slurm.submitRateLimit = '6/1min'
|
||||||
|
process.clusterOptions = ' --gres=lscratch:600 --signal USR2@20'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
autoMounts = true
|
||||||
|
envWhitelist='https_proxy,http_proxy,ftp_proxy,DISPLAY,SLURM_JOBID'
|
||||||
|
runOptions = ' -B /lscratch -B /fdb/igenomes/ --env TMPDIR="/lscratch/$SLURM_JOBID" '
|
||||||
|
}
|
Loading…
Reference in a new issue