1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-13 05:03:10 +00:00

Add TMPDIR and mount for it to singularity configuration

This commit is contained in:
Øyvind Almelid 2021-05-25 09:54:08 +01:00
parent 0ab9edde72
commit f6578f727d

View file

@ -31,7 +31,7 @@ process {
params {
saveReference = true
// iGenomes reference base
igenomes_base = '/exports/igmm/eddie/NextGenResources/igenomes'
igenomes_base = '/exports/igmm/eddie/BioinformaticsResources/igenomes'
max_memory = 384.GB
max_cpus = 32
max_time = 240.h
@ -42,8 +42,8 @@ env {
}
singularity {
envWhitelist = "SINGULARITY_TMPDIR"
runOptions = '-p'
envWhitelist = "SINGULARITY_TMPDIR,TMPDIR"
runOptions = '-p -B "$TMPDIR"'
enabled = true
autoMounts = true
}