mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 16:29:55 +00:00
Merge pull request #104 from jfy133/master
Attempt to fix process specific configs with pipeline specific configs
This commit is contained in:
commit
1f7940c2ee
2 changed files with 5 additions and 5 deletions
|
@ -4,13 +4,14 @@ params {
|
||||||
// Specific nf-core/configs params
|
// Specific nf-core/configs params
|
||||||
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
||||||
config_profile_description = 'nf-core/eager SHH profile provided by nf-core/configs'
|
config_profile_description = 'nf-core/eager SHH profile provided by nf-core/configs'
|
||||||
|
igenomes_base = "/projects1/public_data/igenomes/"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Specific nf-core/eager process configuration
|
// Specific nf-core/eager process configuration
|
||||||
process {
|
process {
|
||||||
withName:malt {
|
withName:malt {
|
||||||
memory = { check_max( 756.GB * task.attempt, 'memory' ) }
|
memory = { 756.GB * task.attempt ]
|
||||||
cpus = { check_max(64 * task.attempt, 'cpus') }
|
cpus = { 64 * task.attempt }
|
||||||
time = 1440.h
|
time = 1440.h
|
||||||
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
|
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,6 @@ params {
|
||||||
igenomes_base = "/projects1/public_data/igenomes/"
|
igenomes_base = "/projects1/public_data/igenomes/"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
profiles {
|
profiles {
|
||||||
cdag {
|
cdag {
|
||||||
config_profile_description = 'MPI-SHH CDAG profile, provided by nf-core/configs.'
|
config_profile_description = 'MPI-SHH CDAG profile, provided by nf-core/configs.'
|
||||||
|
|
Loading…
Reference in a new issue