Skip to content

Commit d893b7d

Browse files
committed
use the full github repo path
1 parent e75e8db commit d893b7d

24 files changed

+33
-33
lines changed

docs/channel-duplication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ workflow {
3838
Use the the following command to execute the example:
3939

4040
```bash
41-
nextflow run patterns/channel-duplication.nf
41+
nextflow run nextflow-io/patterns/channel-duplication.nf
4242
```

docs/collect-into-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ workflow {
3434
Use the the following command to execute the example:
3535

3636
```bash
37-
nextflow run patterns/collect-into-file.nf
37+
nextflow run nextflow-io/patterns/collect-into-file.nf
3838
```

docs/conditional-process.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ workflow {
7070
Use the the following command to execute the example:
7171

7272
```bash
73-
nextflow run patterns/conditional-process.nf
73+
nextflow run nextflow-io/patterns/conditional-process.nf
7474
```
7575

7676
The processes `foo` and `omega` are executed. Run the same command
7777
with the `--flag` command line option.
7878

7979
```bash
80-
nextflow run patterns/conditional-process.nf --flag
80+
nextflow run nextflow-io/patterns/conditional-process.nf --flag
8181
```
8282

8383
This time the processes `bar` and `omega` are executed.
@@ -149,5 +149,5 @@ workflow {
149149
## Run it
150150

151151
```bash
152-
nextflow run patterns/conditional-process2.nf
152+
nextflow run nextflow-io/patterns/conditional-process2.nf
153153
```

docs/conditional-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ workflow {
3636
## Run it
3737

3838
```bash
39-
nextflow run patterns/conditional-resources.nf
39+
nextflow run nextflow-io/patterns/conditional-resources.nf
4040
```

docs/feedback-loop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ Use the the following command to execute the example:
111111

112112
```
113113
# iterative process
114-
nextflow run patterns/feedback-loop-process.nf
114+
nextflow run nextflow-io/patterns/feedback-loop-process.nf
115115
116116
# iterative workflow
117-
nextflow run patterns/feedback-loop-workflow.nf
117+
nextflow run nextflow-io/patterns/feedback-loop-workflow.nf
118118
```

docs/ignore-failing-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ workflow {
3636
Run the script with the following command:
3737

3838
```bash
39-
nextflow run patterns/ignore-failing-process.nf
39+
nextflow run nextflow-io/patterns/ignore-failing-process.nf
4040
```

docs/optional-input.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ workflow {
3838
Run the script with the following command:
3939

4040
```bash
41-
nextflow run patterns/optional-input.nf
41+
nextflow run nextflow-io/patterns/optional-input.nf
4242
```
4343

4444
Run the same script providing an optional file input:
4545

4646
```bash
47-
nextflow run patterns/optional-input.nf --filter foo.txt
47+
nextflow run nextflow-io/patterns/optional-input.nf --filter foo.txt
4848
```

docs/optional-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ workflow {
2929
Use the the following command to execute the example:
3030

3131
```bash
32-
nextflow run patterns/optional-output.nf
32+
nextflow run nextflow-io/patterns/optional-output.nf
3333
```

docs/process-collect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ workflow {
4545
Use the the following command to execute the example:
4646

4747
```bash
48-
nextflow run patterns/process-collect.nf
48+
nextflow run nextflow-io/patterns/process-collect.nf
4949
```

docs/process-get-workdir.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ workflow {
3939
The command run the script with an empty channel:
4040

4141
```bash
42-
nextflow run patterns/process-get-workdir.nf
42+
nextflow run nextflow-io/patterns/process-get-workdir.nf
4343
```
4444

4545
Use the following command to provide the same script
4646
some input files, that prevents the process from being executed:
4747

4848
```bash
49-
nextflow run patterns/process-get-workdir.nf --inputs ../data/prots/\*
49+
nextflow run nextflow-io/patterns/process-get-workdir.nf --inputs ../data/prots/\*
5050
```

0 commit comments

Comments
 (0)