This example shows how to use the Conda packages defined in
Nextflow pipeline via the conda
directive to assemble
the corresponding containers on-demand and provision for the
pipeline execution.
docker {
enabled = true
runOptions = '-u $(id -u):$(id -g)'
}
wave {
strategy = 'conda'
}
The above setting instructs Wave to only use the conda
directive to provision the pipeline containers, ignoring the use of the container directive and any Dockerfile(s).
run rnaseq-nf -with-wave