Skip to content

Commit

Permalink
correct LSF queues
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Feb 21, 2022
1 parent 66430ae commit 8082edf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -56,28 +56,28 @@ process {
withName: 'create_fake_bam' {
cpus = 1
memory = '1 GB'
queue = 'yesterday'
queue = 'small'
}
withName: 'np_pindel' {
cpus = 3
memory = '6 GB'
queue = 'yesterday'
queue = 'long'
}
withName: 'np_creation' {
cpus = 1
memory = '4 GB'
queue = 'yesterday'
queue = 'long'
}
// pindel_pl
withName: 'pindel' {
cpus = 2
memory = '8 GB'
queue = 'yesterday'
queue = 'long'
}
withName: 'pindel_flag' {
cpus = 1
memory = '4 GB'
queue = 'yesterday'
queue = 'normal'
}
}

Expand Down

0 comments on commit 8082edf

Please sign in to comment.