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

Update computerome.config

This commit is contained in:
Marc Trunjer Kusk Nielsen 2021-09-13 14:22:22 +02:00 committed by GitHub
parent 366f945a40
commit 275288632d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ params {
config_profile_url = 'https://www.computerome.dk/'
project = null
schema_ignore_params = "project"
cache = { "/home/projects/$params.project/scratch" }
cache_dir = { "/home/projects/$params.project/scratch" }
//Thin nodes with 192GB and Fat nodes with ~1500GB. Torque should be allowed to handle this
max_memory = 1500.GB
@ -18,11 +18,11 @@ params {
singularity {
enabled = true
autoMounts = true
cacheDir = params.cache
cacheDir = params.cache_dir
}
process {
beforeScript = { "module load tools singularity/3.8.0; export _JAVA_OPTIONS=-Djava.io.tmpdir=$params.cache; export NXF_SINGULARITY_CACHEDIR=$params.cache" }
beforeScript = { "module load tools singularity/3.8.0; export _JAVA_OPTIONS=-Djava.io.tmpdir=$params.cache_dir; export NXF_SINGULARITY_CACHEDIR=$params.cache_dir" }
executor = 'pbs'
queueSize = 2000
clusterOptions = { "-A $params.project -W group_list=$params.project" }