Lesson 1 Exercise 9..extracting specific sequence "AACCGGUU" #108
-
I am on lesson exercise 9 of the beginners seqkit tutorial. I am using this to extract sequences from hairpin.fa seqkit grep -f ids.text hairpins.fa 5 patterns become loaded from the file with this command. What changes can I make to extract sequences with "AACCGGUU" specifically? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Yes using Also, note that |
Beta Was this translation helpful? Give feedback.
seqkit seq --max-len 80 hairpins.fa
would only show you sequences that have length 80, which is not what we need. We need sequences of all length, but only showing 80 nucleotides per line, which the--line-width
doesYes, you can use
-s
for sequence and then use--pattern
to specifying the sequence pattern to search forAlso, just in case it's not clear in the UI, you need to redirect the output of the tool to the file specified in the exercise.