Skip to content

Commit 38a2f85

Browse files
authored
Merge branch 'main' into show-more-of-cwltool
2 parents 744b19f + 3ed85b8 commit 38a2f85

8 files changed

+9
-9
lines changed

src/topics/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Best practices
1+
# Best Practices
22

33
Below are a set of recommended good practices to keep in mind when writing a
44
Common Workflow Language description for a tool or workflow. These guidelines

src/topics/creating-files-at-runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Creating files at runtime
1+
# Creating Files at Runtime
22

33
Sometimes you need to create a file on the fly from input parameters,
44
such as tools which expect to read their input configuration from a file

src/topics/file-formats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# File formats
1+
# File Formats
22

33
Tools and workflows can take `File` types as input and produce them as output.
44
We also recommend indicating the format for `File` types. This helps document

src/topics/metadata-and-authorship.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Metadata and authorship
1+
# Metadata and Authorship
22

33
Implementation extensions not required for correct execution (for example,
44
fields related to GUI presentation) and metadata about the tool or workflow

src/topics/specifying-software-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Specifying software requirements
1+
# Specifying Software Requirements
22

33
Often tool descriptions will be written for a specific version of a software. To
44
make it easier for others to use your descriptions, you can include a

src/topics/staging-input-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Staging input files
1+
# Staging Input Files
22

33
Normally, input files are located in a read-only directory separate from
44
the output directory. This causes problems if the underlying tool expects to

src/topics/using-containers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Using containers
1+
# Using Containers
22

3-
## Running tools inside Docker
3+
## Running Tools Inside Docker
44

55
[Docker][docker] containers simplify software installation by providing a
66
complete known-good runtime for software and its dependencies. However,

src/topics/workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ two-step workflow to a single step subworkflow:
519519
Now the scatter acts on a single step, but that step consists of two steps so each step is performed
520520
in parallel.
521521

522-
## Conditional workflows
522+
## Conditional Workflows
523523

524524
This workflow contains a conditional step and is executed based on the input.
525525
This allows workflows to skip additional steps based on input parameters given at the start of the program or by previous steps.

0 commit comments

Comments
 (0)