mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-21 08:16:03 +00:00
Merge pull request #202 from nf-core/TCLamnidis-patch-1
Add debug profile
This commit is contained in:
commit
c33cedf4ed
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,7 @@ params {
|
|||
igenomes_base = "/projects1/public_data/igenomes/"
|
||||
}
|
||||
|
||||
// Preform work directory cleanup after a successful run
|
||||
cleanup = true
|
||||
|
||||
singularity {
|
||||
|
@ -46,4 +47,8 @@ profiles {
|
|||
queue = { task.memory > 756.GB || task.cpus > 64 ? 'supercruncher': task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium': 'long' }
|
||||
}
|
||||
}
|
||||
// Profile to deactivate automatic cleanup of work directory after a successful run. Overwrites cleanup option.
|
||||
debug {
|
||||
cleanup = false
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue