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/shh.config

55 lines
1.4 KiB
Text
Raw Normal View History

//Profile config names for nf-core/configs
params {
2020-05-26 09:07:06 +00:00
config_profile_description = 'Generic MPI-SHH cluster(s) profile provided by nf-core/configs.'
2019-11-26 14:26:05 +00:00
config_profile_contact = 'James Fellows Yates (@jfy133), Maxime Borry (@Maxibor)'
2019-04-25 13:50:48 +00:00
config_profile_url = 'https://shh.mpg.de'
max_memory = 256.GB
max_cpus = 32
max_time = 720.h
//Illumina iGenomes reference file path
igenomes_base = "/projects1/public_data/igenomes/"
}
2019-01-03 15:01:06 +00:00
// Preform work directory cleanup after a successful run
cleanup = true
2019-01-03 15:01:06 +00:00
singularity {
enabled = true
2019-04-25 13:48:20 +00:00
autoMounts = true
cacheDir = "/projects1/singularity_scratch/cache/"
2019-01-03 15:01:06 +00:00
}
process {
executor = 'slurm'
2019-06-14 17:16:20 +00:00
}
executor {
2020-09-29 12:03:35 +00:00
queueSize = 8
2019-01-03 15:01:06 +00:00
}
profiles {
cdag {
2020-05-12 10:42:42 +00:00
params {
2020-05-26 09:07:06 +00:00
config_profile_description = 'CDAG MPI-SHH profile, provided by nf-core/configs.'
2020-05-12 10:42:42 +00:00
}
// delete when CDAG will be fixed
process {
queue = 'long'
}
}
sdag {
2020-05-12 10:42:42 +00:00
params {
config_profile_description = 'SDAG MPI-SHH profile, provided by nf-core/configs.'
max_memory = 2.TB
max_cpus = 128
}
process {
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
2020-05-12 10:42:42 +00:00
}
}
// Profile to deactivate automatic cleanup of work directory after a successful run. Overwrites cleanup option.
debug {
cleanup = false
}
}