2019-01-04 13:55:22 +00:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
2019-01-07 13:25:06 +00:00
|
|
|
config_profile_description = 'MPI SHH cluster profile provided by nf-core/configs.'
|
2019-01-04 13:55:22 +00:00
|
|
|
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
2019-04-25 13:50:48 +00:00
|
|
|
config_profile_url = 'https://shh.mpg.de'
|
2019-01-04 13:55:22 +00:00
|
|
|
}
|
2019-01-03 15:01:06 +00:00
|
|
|
|
|
|
|
singularity {
|
|
|
|
enabled = true
|
2019-04-25 13:48:20 +00:00
|
|
|
autoMounts = true
|
2019-06-14 17:16:20 +00:00
|
|
|
runOptions = '-B /run/shm:/run/shm'
|
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-10-25 13:50:49 +00:00
|
|
|
queue = { task.memory > 756.GB ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
|
2019-06-14 17:16:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
executor {
|
2019-03-20 12:44:13 +00:00
|
|
|
queueSize = 16
|
2019-01-03 15:01:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
2019-10-25 13:50:49 +00:00
|
|
|
max_memory = 2.TB
|
2019-03-14 20:26:43 +00:00
|
|
|
max_cpus = 32
|
2019-10-25 13:50:49 +00:00
|
|
|
max_time = 720.h
|
2019-04-18 09:19:53 +00:00
|
|
|
//Illumina iGenomes reference file path
|
|
|
|
igenomes_base = "/projects1/public_data/igenomes/"
|
|
|
|
}
|