File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
nextflow/src/main/groovy/nextflow/config
nf-lang/src/main/java/nextflow/config/scopes Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ This page lists all of the available settings in the {ref}`Nextflow configuratio
8
8
9
9
## Unscoped options
10
10
11
+ ` bucketDir `
12
+ : The remote work directory used by hybrid workflows. Equivalent to the ` -bucket-dir ` option of the ` run ` command.
13
+
11
14
` cleanup `
12
15
: If ` true ` , on a successful completion of a run all files in * work* directory are automatically deleted.
13
16
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ class ConfigValidator {
36
36
* Hidden options added by ConfigBuilder
37
37
*/
38
38
private static final List<String > hiddenOptions = List . of(
39
- ' bucketDir' ,
40
39
' cacheable' ,
41
40
' dumpChannels' ,
42
41
' libDir' ,
Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ public class Config implements ConfigScope {
25
25
26
26
// OPTIONS
27
27
28
+ @ ConfigOption
29
+ @ Description ("""
30
+ The remote work directory used by hybrid workflows. Equivalent to the `-bucket-dir` option of the `run` command.
31
+ """ )
32
+ public Path bucketDir ;
33
+
28
34
@ ConfigOption
29
35
@ Description ("""
30
36
If `true`, on a successful completion of a run all files in *work* directory are automatically deleted.
You can’t perform that action at this time.
0 commit comments