Skip to content
Snippets Groups Projects
Commit 7ba365a5 authored by Gilquin's avatar Gilquin
Browse files

fix: correct field extractor exercise

Improved the solution of the exercise by filtering line with type transcript then focusing on the last column.
parent 506a7ef8
No related branches found
No related tags found
1 merge request!2fix: correct some errors
......@@ -239,7 +239,7 @@ You can change the field separator with the option `-d`, set it to `";"` to extr
<details><summary>Solution</summary>
<p>
```sh
gzip -dc hg38.ncbiRefSeq.gtf.gz | head | cut -f 2 -f 5 -d ";"
gzip -dc hg38.ncbiRefSeq.gtf.gz | head | grep -w "transcript" | cut -f 9 | cut -f 2,3 -d ";"
```
</p>
</details>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment