You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a channel from a csv-file (`input.csv`). Generate the channel for the `input.csv`-file which you can find in the `exercises/01_building_blocks/` folder and contains the following content:
219
+
Create a channel from a csv-file (`input.csv`) and use an operator to view the contents. Generate the channel for the `input.csv`-file which you can find in the `exercises/01_building_blocks/` folder and contains the following content:
Building on exercise 1.2 and using the `map` operator, create 2 channels, one containing the sampleId and the forward read as a tuple and the second containg the sampleId and reverse read as a tuple. Use the `view` operator to inspect the contents of thsee channels.
246
+
247
+
````
248
+
249
+
````{tab} Solution 1.3
250
+
The solution is available in the file `exercises/01_building_blocks/solutions/1.3_template-csv-map.nf`
251
+
225
252
````
226
253
227
254
---
@@ -405,10 +432,10 @@ executor > local (10)
405
432
[4b/aff57f] process > whosfirst (10) [100%] 10 of 10
406
433
```
407
434
408
-
````{tab} Exercise 1.3
435
+
````{tab} Exercise 1.4
409
436
A `tag` directive can be added at the top of the process definition and allows you to associate each process execution with a custom label. Hence, it is really useful for logging or debugging. Add a tag for `num` and `str` in the process of the script `exercises/01_building_blocks/firstscript.nf` and inspect the output.
410
437
````
411
-
````{tab} Solution 1.3
438
+
````{tab} Solution 1.4
412
439
The process should be adapted, containing the following tag line in the directives.
0 commit comments