This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Augustus output

I decided to annotate genome using AUGUSTUS. Previously I used AUGUSTUS web-interface, but it allow you to upload files less then 8 mb in size, so I installed AUGUSTUS via conda and ran this augustus --strand=both --species=aedes genome.fa. But it didn't create any output files, why? It returned stdout but it is not what I expected (.gff, .gtf or .bed). I can't find information in documentation about outfiles, any suggestions?

annotation augustus

what kind of output did you then get?

There was no files. stdout looked like :

....
# start gene g97
2R  AUGUSTUS    gene    752955  758230  0.1 -   .   g97
2R  AUGUSTUS    transcript  752955  758230  0.1 -   .   g97.t1
....
2R  AUGUSTUS    CDS 758157  758230  0.46    -   0   transcript_id "g97.t1"; gene_id "g97";
2R  AUGUSTUS    start_codon 758228  758230  .   -   0   transcript_id "g97.t1"; gene_id "g97";
# protein sequence = [MPQTRPWEVTSVAGKRYQCSHLSSHPYGEGVTASTLWLAGWLAVRFSGLCGVSVVAYNLDEHLFTESATLELLQIRWH
# PASPTDSHLLALLSDNSIRVYDVDSLRHVWRIGPTPTPQPVVIGSGSGVGGGCKHGPSASFVGSPGTAAASPGVTSKLAYLNSLGDTAVDFDIAPPRV
....

I can extract the data manually, but I don't understand why the output didn't split to separate files.

Augustus only outputs to STDOUT so you'll need to capture that to get a GFF file (what it writes to stdout is actually most gff like you can get from augustus.)

To get for instance fasta files from that you can run one of the auxiliary scripts that come with Augustus. (eg getAnnoFasta.pl)

0 answers

No answers yet.

Log in to answer this question.