1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-22 08:29:54 +00:00

Merge pull request #104 from jfy133/master

Attempt to fix process specific configs with pipeline specific configs
This commit is contained in:
Alexander Peltzer 2019-12-06 17:16:37 +01:00 committed by GitHub
commit 1f7940c2ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -4,14 +4,15 @@ params {
// Specific nf-core/configs params
config_profile_contact = 'James Fellows Yates (@jfy133)'
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
process {
withName: malt {
memory = { check_max( 756.GB * task.attempt, 'memory' ) }
cpus = { check_max(64 * task.attempt, 'cpus') }
withName:malt {
memory = { 756.GB * task.attempt ]
cpus = { 64 * task.attempt }
time = 1440.h
queue = { task.memory > 756.GB ? 'supercruncher': 'long' }
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
}
}

View file

@ -29,7 +29,6 @@ params {
igenomes_base = "/projects1/public_data/igenomes/"
}
profiles {
cdag {
config_profile_description = 'MPI-SHH CDAG profile, provided by nf-core/configs.'