You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/config.mdx
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1784,11 +1784,9 @@ The `seqera.executor` scope configures the Seqera scheduler service for the [Seq
1784
1784
1785
1785
The following settings are available:
1786
1786
1787
-
The following settings are available:
1788
-
1789
1787
###### `seqera.executor.autoLabels`
1790
1788
1791
-
When `true`, automatically adds workflow metadata labels to the session with the `nextflow.io/` prefix (default: `false`). The following labels are added: `projectName`, `userName`, `runName`, `sessionId`, `resume`, `revision`, `commitId`, `repository`, `manifestName`, `runtimeVersion`. A `seqera.io/runId` label is also added, computed as a SipHash of the session ID and run name.
1789
+
When `true`, automatically adds workflow metadata labels to the session with the `nextflow.io/` prefix (default: `false`). The following labels are added: `projectName`, `userName`, `runName`, `sessionId`, `resume`, `revision`, `commitId`, `repository`, `manifestName`, `runtimeVersion`. A `seqera.io/runId` label is also added, computed as a SipHash of the session ID and run name. The `userName` label reports the Seqera Platform user that submitted the run, falling back to the OS user running the Nextflow launcher when no Platform identity is available.
1792
1790
1793
1791
###### `seqera.executor.computeEnvId`
1794
1792
@@ -1874,6 +1872,10 @@ The maximum number of spot retry attempts before falling back to on-demand. Only
1874
1872
1875
1873
The instance provisioning mode. Can be `'spot'`, `'ondemand'`, or `'spotFirst'`.
The maximum number of concurrent vCPUs a single user may consume across all of their runs on this compute environment (default: no limit). A task requesting more `cpus` than this cap fails instead of being queued.
1878
+
1877
1879
###### `seqera.executor.retryPolicy.delay`
1878
1880
1879
1881
The initial delay when a failing HTTP request is retried (default: `'450ms'`).
Copy file name to clipboardExpand all lines: docs/reference/semantics.mdx
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The *semantics* of the Nextflow language are the meaning and behavior of each la
9
9
10
10
## Values
11
11
12
-
Every expression in Nextflow produces a *value*, and every value has a [type](#types) that determines the operations it supports. This section describes the kinds of values in the language and how they behave. See the [Types][stdlib-types]reference for the full set of operations available on each type, and[Syntax][syntax-page] for the grammar of each literal.
12
+
Every expression in Nextflow produces a *value*, and every value has a [type](#types) that determines the operations it supports. This section describes the kinds of values in the language and how they behave. Each kind of value links to its type reference, which describes the full set of available operations. See[Syntax][syntax-page] for the grammar of each literal.
13
13
14
14
### Booleans
15
15
@@ -901,7 +901,7 @@ The entry workflow of an included script is ignored. This allows the same script
901
901
902
902
## Types
903
903
904
-
Every value in Nextflow has a *type*, which determines the set of operations that can be performed on it. The available types are described in the [Types][stdlib-types] reference.
904
+
Every value in Nextflow has a *type*, which determines the set of operations that can be performed on it. The available types are described in [Values](#values).
905
905
906
906
Nextflow supports two styles of typing:
907
907
@@ -1029,18 +1029,17 @@ A value is also cast *implicitly* in the following situations:
0 commit comments