File tree Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Expand file tree Collapse file tree 1 file changed +3
-14
lines changed Original file line number Diff line number Diff line change @@ -73,24 +73,13 @@ nextflow.preview.topic = true
73
73
74
74
An include declaration consists of an * include source* and one or more * include clauses* :
75
75
76
- The include source should be a string literal and should refer to either a local path (e.g. ` ./module.nf ` ) or a plugin (e.g. ` plugin/nf-hello ` ):
77
-
78
- ``` groovy
79
- include { foo } from './some/module'
80
- ```
81
-
82
- Each include clause should specify a name, and may also specify an * alias* :
83
-
84
76
``` groovy
85
- include { bar as baz } from './some/module'
77
+ include { foo ; bar as baz } from './some/module'
86
78
```
87
79
88
- Include clauses may include multiple names:
80
+ The include source should be a string literal and should refer to either a local path (e.g. ` ./module.nf ` ) or a plugin (e.g. ` plugin/nf-hello ` ).
89
81
90
- ``` groovy
91
- // together
92
- include { foo ; bar as baz } from './some/module'
93
- ```
82
+ Each include clause should specify a name, and may also specify an * alias* . In the example above, ` bar ` is included under the alias ` baz ` .
94
83
95
84
Include clauses can be separated by newlines or semi-colons, or they can be specified as separate includes:
96
85
You can’t perform that action at this time.
0 commit comments