2019-01-04 08:55:22 -05:00
|
|
|
//Profile config names for nf-core/configs
|
|
|
|
params {
|
2019-12-05 06:09:11 -05:00
|
|
|
config_profile_description = 'Generic MPI-SHH cluster(s) profile provided by nf-core/configs.'
|
2019-11-26 09:26:05 -05:00
|
|
|
config_profile_contact = 'James Fellows Yates (@jfy133), Maxime Borry (@Maxibor)'
|
2019-04-25 09:50:48 -04:00
|
|
|
config_profile_url = 'https://shh.mpg.de'
|
2019-01-04 08:55:22 -05:00
|
|
|
}
|
2019-01-03 10:01:06 -05:00
|
|
|
|
|
|
|
singularity {
|
|
|
|
enabled = true
|
2019-04-25 09:48:20 -04:00
|
|
|
autoMounts = true
|
2019-06-14 13:16:20 -04:00
|
|
|
runOptions = '-B /run/shm:/run/shm'
|
2019-03-14 16:16:02 -04:00
|
|
|
cacheDir = "/projects1/singularity_scratch/cache/"
|
2019-01-03 10:01:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
executor = 'slurm'
|
2019-11-26 14:20:17 -05:00
|
|
|
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
|
2019-06-14 13:16:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
executor {
|
2019-03-20 08:44:13 -04:00
|
|
|
queueSize = 16
|
2019-01-03 10:01:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
params {
|
2019-12-05 06:09:11 -05:00
|
|
|
max_memory = 256.GB
|
|
|
|
max_cpus = 32
|
2019-10-25 09:50:49 -04:00
|
|
|
max_time = 720.h
|
2019-04-18 05:19:53 -04:00
|
|
|
//Illumina iGenomes reference file path
|
|
|
|
igenomes_base = "/projects1/public_data/igenomes/"
|
2019-11-26 09:25:35 -05:00
|
|
|
}
|
2019-12-05 06:09:11 -05:00
|
|
|
|
|
|
|
profiles {
|
|
|
|
cdag {
|
|
|
|
config_profile_description = 'MPI-SHH CDAG profile, provided by nf-core/configs.'
|
|
|
|
}
|
|
|
|
sdag {
|
|
|
|
config_profile_description = 'MPI-SHH SDAG profile, provided by nf-core/configs.'
|
|
|
|
max_memory = 2.TB
|
|
|
|
max_cpus = 128
|
|
|
|
}
|
2019-12-05 06:23:06 -05:00
|
|
|
}
|