-
Notifications
You must be signed in to change notification settings - Fork 4
Augustus Training (without optimisation)
Gemy George Kaithakottil edited this page May 17, 2022
·
2 revisions
cd /home/train/Annotation_workshop/Augustus/Training
source activate_reat
rm -rf Output && mkdir -p Outputgff2gbSmallDNA.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 current working directory to prevent accident modification of pre-trained Augustus species.
cp -a /opt/venvs/reat/x86_64/config Output/confignew_species.pl --AUGUSTUS_CONFIG_PATH=$PWD/Output/config --species=ath_wksp2022vim Output/config/species/ath_wksp2022/ath_wksp2022_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_wksp2022
etraining Output/good_transcripts.gb.train --AUGUSTUS_CONFIG_PATH=$PWD/Output/config --species=ath_wksp2022 --stopCodonExcludedFromCDS=false...
...
start codon frequencies: ATG(800)
# admissible start codons and their probabilities: ATG(1), CTG(0), TTG(0)
...
...
/usr/bin/time -v augustus --AUGUSTUS_CONFIG_PATH=$PWD/Output/config --species=ath_wksp2022 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.799 |
---------------------------------------------/
----------------------------------------------------------------------------------------------------------\
| #pred | #anno | | FP = false pos. | FN = false neg. | | |
| total/ | total/ | TP |--------------------|--------------------| sensitivity | specificity |
| unique | unique | | part | ovlp | wrng | part | ovlp | wrng | | |
----------------------------------------------------------------------------------------------------------|
| | | | 395 | 175 | | |
exon level | 1590 | 1370 | 1195 | ------------------ | ------------------ | 0.872 | 0.752 |
| 1590 | 1370 | | 115 | 6 | 274 | 118 | 6 | 51 | | |
----------------------------------------------------------------------------------------------------------/
----------------------------------------------------------------------------\
transcript | #pred | #anno | TP | FP | FN | sensitivity | specificity |
----------------------------------------------------------------------------|
gene level | 307 | 200 | 104 | 203 | 96 | 0.52 | 0.339 |
----------------------------------------------------------------------------/
What the above means is that:
Of the 200 genes 104 were predicted exactly
87.2% of the exons were predicted exactly
75.2% of the predicted exons were exactly as in the test set.
cp -a Output/config Output/ath_wksp2022_config_27Apr2022