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

Update computerome.config

This commit is contained in:
Marc Trunjer Kusk Nielsen 2021-09-15 10:22:57 +02:00 committed by GitHub
parent 86e21b378a
commit 29003e13f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ params {
//There is no max walltime on the cluster, but a week seems sensible if not directly specified
max_time = 168.h
}
params.cache_dir = { "/home/projects/$params.project/scratch" }
params.cache_dir = "/home/projects/$params.project/scratch"
singularity {
enabled = true
@ -22,8 +22,8 @@ singularity {
}
process {
beforeScript = { "module load tools singularity/3.8.0; export _JAVA_OPTIONS=-Djava.io.tmpdir=$params.cache_dir; export NXF_SINGULARITY_CACHEDIR=$params.cache_dir" }
beforeScript = "module load tools singularity/3.8.0; export _JAVA_OPTIONS=-Djava.io.tmpdir=$params.cache_dir"
executor = 'pbs'
queueSize = 2000
clusterOptions = { "-A $params.project -W group_list=$params.project" }
clusterOptions = "-A $params.project -W group_list=$params.project"
}