@@ -37,8 +37,6 @@ Before taking on this side quest, you should:
3737
3838## 0. Get started
3939
40- Before we dive in, let's make sure you have everything you need.
41-
4240#### Open the training codespace
4341
4442If you haven't yet done so, make sure to open the training environment as described in the [ Environment Setup] ( ../envsetup/index.md ) .
@@ -47,15 +45,15 @@ If you haven't yet done so, make sure to open the training environment as descri
4745
4846#### Move into the project directory
4947
50- Let's move into the project directory.
48+ Let's move into the directory where the files for this tutorial are located .
5149
52- ``` bash title="Navigate to the project directory"
50+ ``` bash
5351cd side-quests/metadata
5452```
5553
5654You can set VSCode to focus on this directory:
5755
58- ``` bash title="Open VSCode in current directory"
56+ ``` bash
5957code .
6058```
6159
6462You'll find a main workflow file and a ` data ` directory containing a samplesheet and a handful of data files.
6563
6664``` console title="Directory contents"
67- > tree
6865.
6966├── data
7067│ ├── bonjour.txt
@@ -79,8 +76,6 @@ You'll find a main workflow file and a `data` directory containing a samplesheet
7976└── nextflow.config
8077```
8178
82- Each data file contains some greeting text in one of five languages (French, German, Spanish, Italian, English).
83-
8479The datasheet list the paths to the data files and some associated metadata, organized in 3 columns:
8580
8681- ` id ` : self-explanatory, an ID given to the file
@@ -98,6 +93,8 @@ sampleF,moose,/workspaces/training/side-quests/metadata/data/salut.txt
9893sampleG,turtle,/workspaces/training/side-quests/metadata/data/ciao.txt
9994```
10095
96+ Each data file contains some greeting text in one of five languages (French, German, Spanish, Italian, English).
97+
10198We will also provide you with a containerized language analysis tool called ` langid ` .
10299
103100#### Scenario
0 commit comments