-
Hi, Thanks, Jon Here's my config file and I add the option process {
if (params.use_docker) {
container = "nfcore/viralrecon:1.1.0"
withName:CONSENSUS {
container = "nfcore/viralrecon:1.1.0"
}
withName:MODIFY_FASTA {
container = "darcyabjones/bbmap:latest"
}
}
}
docker {
enabled = params.use_docker
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Sure, I think that the docker scope also works at the process level: process {
withName:LOCAL_PROCESS {
docker.enabled = false
}
} It's been a while, but I'm pretty sure that this is what we did / do in order to run MultiQC with our in-house plugins 🤔 |
Beta Was this translation helpful? Give feedback.
Sure, I think that the docker scope also works at the process level:
It's been a while, but I'm pretty sure that this is what we did / do in order to run MultiQC with our in-house plugins 🤔