mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 00:26:03 +00:00
Had executor options in wrong spot :(
This commit is contained in:
parent
6862fb8bfd
commit
24a2949fe2
1 changed files with 2 additions and 3 deletions
|
@ -13,9 +13,6 @@ params
|
|||
singularity
|
||||
{
|
||||
enabled = true
|
||||
//queue = {task.memory >= 190.GB ? 'genomics-himem' : task.time >= 48.h ? 'genomicslong' : 'genomics'}
|
||||
queue = 'genomics'
|
||||
clusterOptions = '-A b1042'
|
||||
cacheDir = "/projects/b1042/singularity_cache"
|
||||
}
|
||||
|
||||
|
@ -23,6 +20,8 @@ process
|
|||
{
|
||||
beforeScript = 'module purge; module load singularity/latest; module load graphviz/2.40.1'
|
||||
executor = 'slurm'
|
||||
queue = {task.memory >= 190.GB ? 'genomics-himem' : task.time >= 48.h ? 'genomicslong' : 'genomics'}
|
||||
clusterOptions = '-A b1042'
|
||||
}
|
||||
|
||||
executor
|
||||
|
|
Loading…
Reference in a new issue