add nextflow d30e48d

This commit is contained in:
2026-04-29 23:01:54 +02:00
parent d0b12d668d
commit 97cc9058d3
2840 changed files with 730250 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# `nextflow.container`
The `nextflow.container` package implements the integration with container runtimes.
## Class Diagram
```{mermaid} diagrams/nextflow.container.mmd
```
```{note}
Some classes may be excluded from the above diagram for brevity.
```
## Notes
The `ContainerBuilder` class is the base class for all container runtimes supported by Nextflow. It produces the container wrapper command for a given task run.
Executors that support containerized tasks insert this wrapper command into the task wrapper script (`.command.run`). Executors that are *container-native*, i.e. that launch the task wrapper itself inside a container, don't need to generate a container wrapper command.