2019-01-04 13:55:22 +00:00
|
|
|
//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'
|
2020-05-12 10:47:25 +00:00
|
|
|
max_memory = 256.GB
|
|
|
|
max_cpus = 32
|
|
|
|
max_time = 720.h
|
|
|
|
//Illumina iGenomes reference file path
|
|
|
|
igenomes_base = "/projects1/public_data/igenomes/"
|
2019-01-04 13:55:22 +00:00
|
|
|
}
|
2019-01-03 15:01:06 +00:00
|
|
|
|
2020-03-03 15:47:49 +00:00
|
|
|
cleanup = true
|
|
|
|
|
2019-01-03 15:01:06 +00:00
|
|
|
singularity {
|
|
|
|
enabled = true
|
2019-04-25 13:48:20 +00:00
|
|
|
autoMounts = true
|
2019-03-14 20:16:02 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-12-05 11:09:11 +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
|
|
|
}
|
2020-07-23 13:38:28 +00:00
|
|
|
// delete when CDAG will be fixed
|
|
|
|
process {
|
|
|
|
queue = 'long'
|
|
|
|
}
|
2019-12-05 11:09:11 +00:00
|
|
|
}
|
|
|
|
sdag {
|
2020-05-12 10:42:42 +00:00
|
|
|
params {
|
2020-05-26 09:07:06 +00:00
|
|
|
config_profile_description = 'SDAG MPI-SHH profile, provided by nf-core/configs.'
|
2019-12-05 11:09:11 +00:00
|
|
|
max_memory = 2.TB
|
|
|
|
max_cpus = 128
|
2020-11-17 18:45:06 +00:00
|
|
|
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
|
|
|
}
|
2019-12-05 11:09:11 +00:00
|
|
|
}
|
2019-12-05 11:23:06 +00:00
|
|
|
}
|