1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2025-01-07 22:42:08 -05:00
nf-configs/conf/pipeline/eager/shh.config

48 lines
1.2 KiB
Text
Raw Normal View History

2019-12-05 11:01:10 -05:00
// Profile config names for nf-core/configs
params {
// Specific nf-core/configs params
config_profile_contact = 'James Fellows Yates (@jfy133)'
2020-05-26 05:11:42 -04:00
config_profile_description = 'nf-core/eager SHH profile provided by nf-core/configs'
2019-12-06 07:17:31 -05:00
igenomes_base = "/projects1/public_data/igenomes/"
2020-05-26 05:11:42 -04:00
// default BWA
bwaalnn = 0.04
bwaalnl = 32
2019-12-05 11:01:10 -05:00
}
// Specific nf-core/eager process configuration
process {
2019-12-06 13:11:08 -05:00
withName: malt {
maxRetries = 1
memory = { task.attempt > 1 ? 1900.GB : 725.GB }
cpus = { task.attempt > 1 ? 112 : 64 }
2019-12-06 13:13:29 -05:00
time = 1440.h
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
2019-12-05 11:01:10 -05:00
}
}
2020-05-26 05:11:42 -04:00
profiles {
pathogen_loose {
params {
config_profile_description = 'Pathogen (loose) MPI-SHH profile, provided by nf-core/configs.'
bwaalnn = 0.01
bwaalnl = 16
}
}
pathogen_strict {
params {
config_profile_description = 'Pathogen (strict) MPI-SHH SDAG profile, provided by nf-core/configs.'
bwaalnn = 0.1
bwaalnl = 32
}
}
human {
params {
config_profile_description = 'Human MPI-SHH SDAG profile, provided by nf-core/configs.'
bwaalnn = 0.01
bwaalnl = 16500
}
}
}