Files
playground/nextflow.config
CI 56925e7a68 Build branch demultiplex_htrnaseq_meta with version demultiplex_htrnaseq_meta (93b7c51)
Build pipeline: viash-hub.playground.demultiplex-htrnaseq-meta-6pxp7

Source commit: 93b7c51fcc

Source message: metaworkflow working
2025-03-04 10:35:13 +00:00

22 lines
399 B
Plaintext

process.container = "nextflow/nextflow:21.04.3"
docker {
enabled = true
fixOwnership = true
}
process {
memory = 1.GB
cpus = 1
withLabel: singlecpu { cpus = 1 }
withLabel: lowcpu { cpus = 4 }
withLabel: midcpu { cpus = 8 }
withLabel: highcpu { cpus = 10 }
withLabel: lowmem { memory = 5.GB }
withLabel: midmem { memory = 8.GB }
withLabel: highmem { memory = 25.GB }
}