Issue Description:
I'm looking for a way to extract coordinates based on a specific tag from a GFF file. Specifically, I want to extract exons for downstream analysis. The desired output should resemble the following format:
However, this command did not yield the expected output.
Expected Result:
I'm looking for some guidance on correctly extracting exon coordinates based on the tag field and generating the desired output format as shown above.
Equivalent code in awk awk '$3=="exon"' Homo_sapiens.GRCh38.110.gtf | less
Issue Description: I'm looking for a way to extract coordinates based on a specific tag from a GFF file. Specifically, I want to extract exons for downstream analysis. The desired output should resemble the following format:
What I've Tried: I attempted to use the
agat_sp_extract_attributes.pl
script with the following command:However, this command did not yield the expected output.
Expected Result: I'm looking for some guidance on correctly extracting exon coordinates based on the tag field and generating the desired output format as shown above.
Equivalent code in awk
awk '$3=="exon"' Homo_sapiens.GRCh38.110.gtf | less
Thanks, Medhat