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.config`
The `nextflow.config` package contains the implementation of the Nextflow configuration.
## Class Diagram
```{mermaid} diagrams/nextflow.config.mmd
```
```{note}
Some classes may be excluded from the above diagram for brevity.
```
## Notes
Any command that parses Nextflow config files (`config`, `run`, etc) uses the `ConfigBuilder` to build a `ConfigMap` from a set of config files. The `ConfigBuilder` itself uses a `ConfigParser` to parse the config files.
The Nextflow configuration language is essentially Groovy with some extensions. These extensions are implemented in `ConfigBase` and `ConfigTransformImpl`.