2019-12-05 16:01:10 +00:00
|
|
|
// Profile config names for nf-core/configs
|
|
|
|
|
|
|
|
params {
|
|
|
|
// Specific nf-core/configs params
|
|
|
|
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
2020-05-12 10:47:59 +00:00
|
|
|
config_profile_description = 'JFY nf-core/eager SHH profile provided by nf-core/configs'
|
2019-12-06 12:17:31 +00:00
|
|
|
igenomes_base = "/projects1/public_data/igenomes/"
|
2019-12-05 16:01:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Specific nf-core/eager process configuration
|
|
|
|
process {
|
2019-12-06 18:11:08 +00:00
|
|
|
withName: malt {
|
2019-12-21 19:55:54 +00:00
|
|
|
maxRetries = 1
|
|
|
|
memory = { task.attempt > 1 ? 1900.GB : 725.GB }
|
|
|
|
cpus = { task.attempt > 1 ? 112 : 64 }
|
2019-12-06 18:13:29 +00:00
|
|
|
time = 1440.h
|
|
|
|
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
|
2019-12-05 16:01:10 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-04 19:02:16 +00:00
|
|
|
|
|
|
|
params {
|
|
|
|
bwaalnn = 0.01
|
2020-05-07 07:16:08 +00:00
|
|
|
bwaalnl = 32
|
2020-05-04 19:02:16 +00:00
|
|
|
}
|