Skip to content
Snippets Groups Projects
Commit 055296c3 authored by Gilquin's avatar Gilquin
Browse files

fix: add missing regex "starts with" symbol

parent 9fd8ff32
No related branches found
No related tags found
1 merge request!2fix: correct some errors
......@@ -198,7 +198,7 @@ Modify this command to only get a list of sequence names in a fasta file un lowe
<details><summary>Solution</summary>
<p>
```sh
awk '/[^>]/ {print(tolower($0))}' sample.fa > seq_name_lower.txt
awk '/^[^>]/ {print(tolower($0))}' sample.fa > seq_name_lower.txt
```
</p>
</details>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment