1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00
nf-configs/conf/computerome.config

26 lines
709 B
Text
Raw Normal View History

2021-08-31 11:58:39 +00:00
//Profile config names for nf-core/configs
params {
config_profile_description = 'Computerome 2.0 cluster profile provided by nf-core/configs.'
config_profile_contact = 'Marc Trunjer Kusk Nielsen (@marcmtk)'
config_profile_url = 'https://www.computerome.dk/'
project = null
2021-08-31 11:58:39 +00:00
}
singularity {
enabled = true
autoMounts = true
cacheDir = { "/home/projects/$params.project/scratch" }
2021-08-31 11:58:39 +00:00
}
process {
beforeScript = { "module load tools singularity/3.8.0; export _JAVA_OPTIONS=-Djava.io.tmpdir=/home/projects/$params.project/scratch" }
2021-08-31 11:58:39 +00:00
executor = 'pbs'
clusterOptions = { "-A $params.project -W group_list=$params.project" }
2021-08-31 11:58:39 +00:00
}
params {
max_memory = 1500.GB
max_cpus = 40
max_time = 168.h
}