Skip to content

Commit 4dc29d1

Browse files
committed
Fixed code typos and broken link
1 parent a296559 commit 4dc29d1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

design-patterns/branch-and-merge/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ workflow run {
3434
3535
# Run `stepD`, connecting the `in1` input to `stepB`'s `out` output
3636
# and the `in2` input to `stepC`'s `out` output.
37-
call stepC { input: in1 = stepB.out, in2 = stepC.out }
37+
call stepD { input: in1 = stepB.out, in2 = stepC.out }
3838
}
3939
```
4040

@@ -143,7 +143,7 @@ workflow run {
143143
# (b) The merge happens here.
144144
call merge_vcfs { input:
145145
snp_vcf = filter_snps.filtered_vcf,
146-
indel_vcf = filter_snps.filtered_vcf,
146+
indel_vcf = filter_indels.filtered_vcf,
147147
}
148148
149149
output {

design-patterns/conditional-statement/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ It is often desirable to only execute some section of a computation graph only i
44
particular condition holds. This could be as simple as a user input to the workflow
55
indicating the "mode A" should be run instead of "mode B", whether to scatter and gather
66
tasks rather than running a single multi-threaded task, or enabling an entire analysis
7-
based on if some analytical check passes a QC threshold. In these cases, you'll want to
7+
based on whether some analytical check passes a QC threshold. In these cases, you'll want to
88
reach for **conditional statements** (also known as `if`/`else` statements).
99

1010
![A diagram showing three tasks: `stepA`, `stepB`, and `stepC`. `stepA` is always

getting-started/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ the output of the above workflow would be the following.
116116
"Hello, world!",
117117
"Hallo, world!",
118118
"Hej, world!",
119-
// "Ahoy, world!" is included is `is_pirate` is set to `true` above.
119+
// "Ahoy, world!" is included if `is_pirate` is set to `true` above.
120120
]
121121
}
122122
```

language-guide/tasks.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Fundamentally, the represent a bash script that is intended to be run to accompl
99
goal. You'll reach for tasks when defining each of the constituent analyses within a
1010
broader [workflow](./workflows.md).
1111

12-
Tasks have a required ```command``` section and several optional sections for things
12+
Tasks have a required `command` section and several optional sections for things
1313
like defining inputs, defining outputs, documenting your task, and specifying runtime
1414
requirements. We'll cover each of these in detail here while leaving an exhaustive
15-
explanation to [the specification][spec-tasks].
15+
explanation to [the specification][spec-tasks].
1616

1717
Below is a representative example of what a simple task might look like.
1818

@@ -179,7 +179,7 @@ them when the need arises.
179179

180180
[spec-tasks]: https://github.com/openwdl/wdl/blob/wdl-1.2/SPEC.md#task-definition
181181
[spec-task-inputs]: https://github.com/openwdl/wdl/blob/wdl-1.2/SPEC.md#task-inputs
182-
[spec-task-inputs]: https://github.com/openwdl/wdl/blob/wdl-1.2/SPEC.md#task-outputs
182+
[spec-task-outputs]: https://github.com/openwdl/wdl/blob/wdl-1.2/SPEC.md#task-outputs
183183
[spec-requirements]:
184184
https://github.com/openwdl/wdl/blob/wdl-1.2/SPEC.md#-requirements-section
185185
[spec-requirements-attributes]: https://github.com/openwdl/wdl/blob/wdl-1.2/SPEC.md#requirements-attributes

0 commit comments

Comments
 (0)