Files
playground/nextflow.config
CI 5b1018434e Build branch main with version main (861319f)
Build pipeline: vsh-ci-template-8vdc6

Source commit: 861319f5dd

Source message: Merge pull request #4 from viash-hub/update-star-align-params

update param
2025-02-03 16:59:21 +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 }
}