Hi, thank you for your answer. I am trying to understand how to get proteomes using gff files (I found this files for some of my species). I read a post where someone was asking how to do this (https://bioinformatics.stackexchange.com/questions/6865/can-a-gff-file-be-converted-to-a-fasta-file) and someone recomended gffread (http://ccb.jhu.edu/software/stringtie/gff.shtml#gffread_ex), in that page there is this example:
gffread -w transcripts.fa -g /path/to/genome.fa transcripts.gtf
I think it is suposed to get the sequences of all transcripts in gff file using the genome as reference, if I understand well I should get the sequences of the features named "protein" or "transcript" or "CDS" in the gff file, but I used grep to look for these words("protein", "transcript", "CDS" and "gene") and I don't get results, I looked at my gff files and all I see is "region" as feature. So I guess this files won't be useful, right? then I have to get the annotation with Augustus (or similar) ...