wf-transcriptomes-v202/nextflow.config
2021-01-29 15:04:44 +00:00

20 lines
504 B
Plaintext

process {
withLabel:containerCPU {
container = 'workflow-template:latest'
}
}
profiles {
// the "standard" profile is used implicitely by nextflow
// if no other profile is given on the CLI
standard {
docker {
enabled = true
// this ensures container is run as host user and group, but
// also adds host user to the within-container group
runOptions = "--user \$(id -u):\$(id -g) --group-add 100"
}
}
}