-
Notifications
You must be signed in to change notification settings - Fork 273
/
biowulf.config
49 lines (38 loc) · 1.2 KB
/
biowulf.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
params {
config_profile_description = 'Biowulf nf-core config'
config_profile_contact = '[email protected]'
config_profile_url = 'https://hpc.nih.gov/apps/nextflow.html'
igenomes_base = '/fdb/igenomes_nf/'
}
executor {
'$slurm' {
queue = 'norm'
queueSize = 200
pollInterval = '2 min'
queueStatInterval = '5 min'
submitRateLimit = '6/1min'
retry.maxAttempts = 1
}
}
singularity {
enabled = true
autoMounts = true
cacheDir = "/data/${USER}/nxf_singularity_cache"
envWhitelist = 'https_proxy,http_proxy,ftp_proxy,DISPLAY,SLURM_JOBID,SINGULARITY_BINDPATH'
}
env {
PYTHONNOUSERSITE = 1
OMP_NUM_THREADS = 1
OPENBLAS_NUM_THREADS = 1
}
process {
executor = 'slurm'
maxRetries = 1
resourceLimits = [ cpus: 192, memory: 751.GB, time: 240.h ]
clusterOptions = ' --gres=lscratch:200 '
scratch = '/lscratch/$SLURM_JOB_ID'
stageInMode = 'symlink'
stageOutMode = 'rsync'
// for running pipeline on group sharing data directory, this can avoid inconsistent files timestamps
cache = 'lenient'
}