Skip to content

Commit f2c0b44

Browse files
authored
Merge pull request #425 from nextflow-io/minor_typos
2 parents 16709e8 + 7bbad6d commit f2c0b44

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/hello_nextflow/01_orientation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you have not yet done so, please follow [this link](../../envsetup/) before g
1010
Throughout this training course, we'll be working in the `hello-nextflow/` directory, which loads by default when you open the Gitpod workspace.
1111
This directory contains all the code files, test data and accessory files you will need.
1212

13-
Feel free to explore the contents of this directory; the easiest way to do so is to use the file explorer on the left hand side of the Gitpod workspace.
13+
Feel free to explore the contents of this directory; the easiest way to do so is to use the file explorer on the left-hand side of the Gitpod workspace.
1414
Alternatively, you can use the `tree` command.
1515
Throughout the course, we use the output of `tree` to represent directory structure and contents in a readable form, sometimes with minor modifications for clarity.
1616

docs/hello_nextflow/03_hello_containers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ process cowSay {
208208
container 'community.wave.seqera.io/library/pip_cowsay:131d6a1b707a8e65'
209209
```
210210

211-
### 2.2. Run nextflow pipelines using containers
211+
### 2.2. Run Nextflow pipelines using containers
212212

213213
Run the script to see the container in action.
214214

@@ -242,7 +242,7 @@ You should see a new directory called `containers/results` that contains the out
242242

243243
Let's take a look at the task directory for one of the cowsay tasks to see how Nextflow works with containers under the hood.
244244

245-
Check your the output form your `nextflow run` command to find the task ID for the `cowsay` process.
245+
Check the output from your `nextflow run` command to find the task ID for the `cowsay` process.
246246
Then check out the task directory for that task.
247247

248248
```bash
@@ -421,7 +421,7 @@ Doing these exercises is _not required_ to understand later parts of the trainin
421421
We have a list of computer and biology pioneers in the `containers/data/pioneers.csv` file.
422422
At a high level, to complete this exercise you will need to:
423423

424-
- modify the default `params.input_file` to point to the `pioneers.csv` file.
424+
- Modify the default `params.input_file` to point to the `pioneers.csv` file.
425425
- Create a `getQuote` process that uses the `quote` container to fetch a quote for each input.
426426
- Connect the output of the `getQuote` process to the `cowsay` process to display the quote.
427427

@@ -441,7 +441,7 @@ For the `quote` container image, you can either use the one you built yourself i
441441

442442
You can find a solution to this exercise in `containers/scripts/hello-containers-4.1.nf`.
443443

444-
### 4.2. Modify your nextflow pipeline to allow it to execute in `quote` and `sayHello` modes.
444+
### 4.2. Modify your Nextflow pipeline to allow it to execute in `quote` and `sayHello` modes.
445445

446446
Add some branching logic using to your pipeline to allow it to accept inputs intended for both `quote` and `sayHello`.
447447
Here's an example of how to use an `if` statement in a Nextflow workflow:

docs/hello_nextflow/07_hello_modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ hello-modules/
4343
└── nextflow.config
4444
```
4545

46-
For a detailed description of these files, see the Warmup section in Part 5.
46+
For a detailed description of these files, see the warmup section in Part 5.
4747

4848
### 0.2. Create a symbolic link to the data
4949

docs/hello_nextflow/08_hello_nf-test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ hello-nf-test/
4949
└── nextflow.config
5050
```
5151

52-
For a detailed description of the files, see the Warmup section in Part 6.
52+
For a detailed description of the files, see the warmup section in Part 6.
5353
For details about the contents of the `modules` directory, read through all of Part 6 (it's pretty short).
5454

5555
### 0.2. Create a symbolic link to the data
@@ -87,7 +87,7 @@ executor > local (7)
8787
As expected, it all worked.
8888

8989
Like previously, there will now be a `work` directory and a `results_genomics` directory inside your project directory.
90-
However we are going to ignore them entirely, because we are no longer going to touch the pipeline itself, and we're not even going to interact directly with Nextflow as such.
90+
However, we are going to ignore them entirely, because we are no longer going to touch the pipeline itself, and we're not even going to interact directly with Nextflow as such.
9191

9292
Instead, we are going to interact with the `nf-test` package.
9393

docs/hello_nextflow/09_hello_nf-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Lets' try it!
134134
nextflow run nf-core/demo -profile docker,test --outdir results
135135
```
136136

137-
!!! hint "Changing nextflow version"
137+
!!! hint "Changing Nextflow version"
138138

139139
Depending on the nextflow version you have installed, this command might fail due to a version mismatch.
140140
If that happens, you can temporarily run the pipeline with a different version than you have installed by adding NXF_VER=<version> to the start of your command as shown below:

docs/hello_nextflow/seqera/02_run_with_launchpad.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Next we want to start using Seqera Platform to launch Nextflow workflows on our
1616

1717
Seqera Platform has a concept of [**organizations**](https://docs.seqera.io/platform/latest/orgs-and-teams/organizations) and [**workspaces**](https://docs.seqera.io/platform/latest/orgs-and-teams/workspace-management) which are used to organize and share [pipelines](https://docs.seqera.io/platform/latest/launch/launchpad), [compute environments](https://docs.seqera.io/platform/latest/compute-envs/overview), [data](https://docs.seqera.io/platform/latest/data/data-explorer), [credentials](https://docs.seqera.io/platform/latest/credentials/overview), and more.
1818
The `community/showcase` workspace is a public workspace where you can see some example pipelines and compute environments.
19-
Each user has an alloted amount of free compute to use in this workspace.
19+
Each user has an allotted amount of free compute to use in this workspace.
2020

2121
Click on your username in the top left corner of the screen to bring up the list of organizations and workspaces you have access to.
2222
Select the `community/showcase` workspace.

0 commit comments

Comments
 (0)