-
How do I convert RepeatMasker output to be something useable with
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Convert to BED file:
The EDITED: Hit |
Beta Was this translation helpful? Give feedback.
-
That worked. Thanks! http://owl.fish.washington.edu/halfshell/genomic-databank/cgigas_uk_roslin_v1_rm.te.bed |
Beta Was this translation helpful? Give feedback.
Convert to BED file:
tail -n +4 GCF_902806645.1_cgigas_uk_roslin_v1_rm.out | awk 'BEGIN{OFS= "\t"} {print $5, $6, $7}' > GCF_902806645.1_cgigas_uk_roslin_v1_rm.bed
The
tail -n +4
skips the first four lines.EDITED: Hit
Answer
before I was finished.