Build pipeline: vsh-ci-template-8vdc6
Source commit: 861319f5dd
Source message: Merge pull request #4 from viash-hub/update-star-align-params
update param
22 lines
399 B
Plaintext
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 }
|
|
}
|
|
|