Skip to content

Commit 30a81a7

Browse files
Fix minor typos on Hello Nextflow
1 parent 9fe4c2f commit 30a81a7

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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
@@ -202,7 +202,7 @@ process cowSay {
202202
container 'community.wave.seqera.io/library/pip_cowsay:131d6a1b707a8e65'
203203
```
204204

205-
### 2.2. Run nextflow pipelines using containers
205+
### 2.2. Run Nextflow pipelines using containers
206206

207207
Run the script to see the container in action.
208208

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

237237
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.
238238

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

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

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

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

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

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

440440
Add some branching logic using to your pipeline to allow it to accept inputs intended for both `quote` and `sayHello`.
441441
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)