Skip to content

Commit d4c3118

Browse files
Address #491 - Selecting a Nextflow version and Environment variables (#627)
* Address #491 - Selecting a Nextflow version and Environment variables * removing Environment section * Prettify orientation file --------- Co-authored-by: Marcel Ribeiro-Dantas <[email protected]>
1 parent 3192270 commit d4c3118

File tree

1 file changed

+6
-20
lines changed

1 file changed

+6
-20
lines changed

docs/basic_training/orientation.md

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ If you want to use a specific version of Nextflow, you can set the `NXF_VER` var
6363
export NXF_VER=23.10.1
6464
```
6565

66+
You can double-check `NXF_VER` by running:
67+
68+
```bash
69+
nextflow -version
70+
```
71+
6672
!!! question "Exercise"
6773

6874
Open the GitHub Codespaces training environment and use the following command to switch to the `nf-customize` folder. View the files in this folder using the `tree` command:
@@ -71,23 +77,3 @@ export NXF_VER=23.10.1
7177
cd /workspaces/training/nf-training
7278
tree .
7379
```
74-
75-
## Environment variables
76-
77-
By default, Nextflow will pull the latest stable version into your environment.
78-
79-
However, Nextflow is constantly evolving as improvements are made.
80-
81-
The [latest releases](https://github.com/nextflow-io/nextflow/releases) can be viewed on GitHub.
82-
83-
If you want to use a specific version of Nextflow, you can set the `NXF_VER` variable:
84-
85-
```bash
86-
export NXF_VER=23.10.1
87-
```
88-
89-
!!! note
90-
91-
This tutorial workshop requires `NXF_VER=23.10.1`, or later.
92-
93-
If you have exported the `NXF_VER` variable, execute `nextflow -version` again to confirm that the change has taken effect.

0 commit comments

Comments
 (0)