mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-21 16:16:04 +00:00
Add debug profile
which deactivates cleanup of workdir after successful run
This commit is contained in:
parent
5ba1b01c0c
commit
713a032a36
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