Skip to content

Commit 4426be0

Browse files
authored
Change how kraken2 CPUs are defined
1 parent f76267e commit 4426be0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

nextflow.config

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ profiles {
1717
// Capture exit codes from upstream processes when piping
1818
process.shell = ['/bin/bash', '-euo', 'pipefail']
1919
process.executor = 'sge'
20-
process.withName: 'kraken2' { cpus = 8 }
20+
process {
21+
withName: kraken2 {
22+
cpus = 8
23+
}
24+
}
2125

2226

2327
manifest {

0 commit comments

Comments
 (0)