Get summary of augustus ouput (gff)
1
0
Entering edit mode
5.9 years ago
Chvatil ▴ 130

Hi all, I made 4 augustus run for all my genomes assembly and get 4 gff files.

Does someone know a programme which plot the results in sumarry, or only creat a summary table with number of gene predicted, number of complet ones (start + stop) etc? ? Thank you :)

augustus gff • 2.3k views
ADD COMMENT
1
Entering edit mode

Additionally, you can use getAnnoFasta.pl scprit in script directory of Augustus to get amino acid sequences of predicted genes.Assume you get aminoacidsequences.aa as an output. Later, you can use stats aminoacidsequences.aa

ADD REPLY
1
Entering edit mode
5.9 years ago
goodez ▴ 640

A good place to start would be some simple command line tricks. You won't need to install anything just open up a unix terminal.

To see how many gene features are in your gff:

awk '$3=="gene"' your_file.gff | wc -l

This gives you the total number of gene features. You can play around with this command to view other features like "transcript". Also you can look at $4 and $5 columns which are the start and end of each feature.

ADD COMMENT
0
Entering edit mode

OK I'll try this thank you :)

ADD REPLY

Login before adding your answer.

Traffic: 2516 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6