-
Notifications
You must be signed in to change notification settings - Fork 0
Augustus Training (without optimisation)
Gemy George Kaithakottil edited this page Apr 22, 2026
·
7 revisions
General note:
- Augustus comes with a fairly wide set of trained species, and training jobs can be submitted via the web service http://bioinf.uni-greifswald.de/webaugustus/training/create
- Augustus can be trained manually using the supplied scripts http://bioinf.uni-greifswald.de/augustus/binaries/retraining.html
- Maker pipeline provides a process for training Snap and Augustus
- Braker allows for fully automated training of Augustus and GeneMark-EX from RNA-seq and protein homology data
- BUSCO can be used to train augustus https://busco.ezlab.org/busco_userguide.html
cd /home/train/Annotation_workshop/Augustus/Trainingrm -rf Output && mkdir -p Output(
gff2gbSmallDNA.pl \
Inputs/gold.gff \
Inputs/Athaliana_447_TAIR10.Chr3.fa \
1000 \
Output/good_transcripts.full_models.gb \
--overlap
)gff2gbSmallDNA.pl Inputs/gold.gff Inputs/Athaliana_447_TAIR10.Chr3.fa 1000 Output/good_transcripts.full_models.gb --overlapgrep -c '^LOCUS' Output/good_transcripts.full_models.gbIf over (>) 1000 models:
randomSplit.pl Output/good_transcripts.full_models.gb 1000cd Output && ln -s good_transcripts.full_models.gb.test good_transcripts.gb && cd ..
else:
cd Output && ln -s good_transcripts.full_models.gb good_transcripts.gb && cd ..
randomSplit.pl Output/good_transcripts.gb 2005. Copy Augustus species config directory to the current working directory to prevent accident modification of pre-trained Augustus species.
cp -a /opt/data/config Output/confignew_species.pl --AUGUSTUS_CONFIG_PATH=$PWD/Output/config --species=ath_wkspvim Output/config/species/ath_wksp/ath_wksp_parameters.cfg8. Make an initial Augustus training. This creates parameter files for exon, intron and intergenic region in the directory $AUGUSTUS_CONFIG_PATH/species/ath_wksp
(
etraining \
Output/good_transcripts.gb.train \
--AUGUSTUS_CONFIG_PATH=$PWD/Output/config \
--species=ath_wksp \
--stopCodonExcludedFromCDS=false
)etraining Output/good_transcripts.gb.train --AUGUSTUS_CONFIG_PATH=$PWD/Output/config --species=ath_wksp --stopCodonExcludedFromCDS=false...
...
start codon frequencies: ATG(800)
# admissible start codons and their probabilities: ATG(1), CTG(0), TTG(0)
...
...
(
augustus \
--AUGUSTUS_CONFIG_PATH=$PWD/Output/config \
--species=ath_wksp \
Output/good_transcripts.gb.test \
> Output/augustus.initial_test.txt
)augustus --AUGUSTUS_CONFIG_PATH=$PWD/Output/config --species=ath_wksp Output/good_transcripts.gb.test > Output/augustus.initial_test.txtgrep -A 22 Evaluation Output/augustus.initial_test.txt...
...
******* Evaluation of gene prediction *******
---------------------------------------------\
| sensitivity | specificity |
---------------------------------------------|
nucleotide level | 0.978 | 0.81 |
---------------------------------------------/
----------------------------------------------------------------------------------------------------------\
| #pred | #anno | | FP = false pos. | FN = false neg. | | |
| total/ | total/ | TP |--------------------|--------------------| sensitivity | specificity |
| unique | unique | | part | ovlp | wrng | part | ovlp | wrng | | |
----------------------------------------------------------------------------------------------------------|
| | | | 388 | 165 | | |
exon level | 1493 | 1270 | 1105 | ------------------ | ------------------ | 0.87 | 0.74 |
| 1493 | 1270 | | 105 | 3 | 280 | 107 | 3 | 55 | | |
----------------------------------------------------------------------------------------------------------/
----------------------------------------------------------------------------\
transcript | #pred | #anno | TP | FP | FN | sensitivity | specificity |
----------------------------------------------------------------------------|
gene level | 310 | 200 | 110 | 200 | 90 | 0.55 | 0.355 |
----------------------------------------------------------------------------/
What the above means is that:
Of the 200 genes, 104 were predicted exactly
87% of the exons were predicted exactly
74% of the predicted exons were exactly as in the test set.
cp -a Output/config Output/ath_wksp_config- Workshop Wiki Home
- Basic Unix Command Guide
- Transcript assembly commands
- Mikado commands
- Annotation liftover commands
- Augustus
- Tiberius commands
- Helixer commands
- GALBA commands
- BRAKER3 commands
- Minos commands
- EVidenceModeler (EVM) commands
- Annotation Web Apollo Browser
- Workshop data locations
- Software tools used
- Guacamole tips
- Troubleshooting