Entering edit mode
2.5 years ago
saifulislam99121
•
0
Hello, I need to extract UTR from a gff file. Which tool should I use?
Thank you
Hello, I need to extract UTR from a gff file. Which tool should I use?
Thank you
While the task is not always trivial, the minimum requirement for posting would be to search for existing questions. Now, there are several good answers already posted, check out Similar posts on the right. Therefore, this question is a duplicate.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Have you tried anything so far? I would include what you have tried prior to asking in future posts.
You could use
grep
to take lines with "UTR" in them.Alternatively, you could use
R
using thertracklayer
package to read in the gff, and then subset using thetype
field.