Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow outputs (third preview) #5909

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
8 changes: 4 additions & 4 deletions docs/reference/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,20 +298,20 @@ Enum types cannot be included across modules at this time.

### Output block

The output block consists of one or more *target blocks*. A target block consists of a *target name* and one or more *target directives* for configuring the corresponding publish target:
The output block consists of one or more *output declarations*. An output declaration consists of a name and one or more *output directives* for defining the output:

```nextflow
output {
'fastq' {
path 'samples'
samples {
path 'fastq'
index {
path 'index.csv'
}
}
}
```

Only one output block may be defined in a script. See {ref}`workflow-output-def` for the set of available target directives.
Only one output block may be defined in a script. See {ref}`workflow-output-def` for the set of available output directives.

## Statements

Expand Down
Loading
Loading