-
Notifications
You must be signed in to change notification settings - Fork 0
Augustus Prediction
Gemy George Kaithakottil edited this page Apr 15, 2026
·
5 revisions
Augustus gene prediction run making use of all extrinsic evidence and weighted towards transcript assemblies along with RNA-Seq coverage
(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run1
rm -rf Output && mkdir -p Output
/usr/bin/time -v augustus \
--AUGUSTUS_CONFIG_PATH=../Inputs/config \
--species=ath_wksp_opt_c32_k32 \
--UTR=on \
--extrinsicCfgFile=../Inputs/extrinsic.ei_augustus340_generic.cfg \
--alternatives-from-evidence=true \
--hintsfile=hints/extrinsic.augustus.run1.gff3 \
--noInFrameStop=true \
--allow_hinted_splicesites=atac \
--outfile=Output/run1.raw.gtf \
--errfile=Output/run1.log \
--predictionStart=1065466 \
--predictionEnd=1464870 \
../Inputs/Athaliana_447_TAIR10.Chr3.fa
)(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run1
augustus_gtf_to_gff3 ARATH3702_run1 Output/run1.raw.gtf
)Augustus gene prediction run making use of all extrinsic evidence, same as run1, but without RNA-Seq coverage
(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run2
rm -rf Output && mkdir -p Output
/usr/bin/time -v augustus \
--AUGUSTUS_CONFIG_PATH=../Inputs/config \
--species=ath_wksp_opt_c32_k32 \
--UTR=on \
--extrinsicCfgFile=../Inputs/extrinsic.ei_augustus340_generic.cfg \
--alternatives-from-evidence=true \
--hintsfile=hints/extrinsic.augustus.run2.gff3 \
--noInFrameStop=true \
--allow_hinted_splicesites=atac \
--outfile=Output/run2.raw.gtf \
--errfile=Output/run2.log \
--predictionStart=1065466 \
--predictionEnd=1464870 \
../Inputs/Athaliana_447_TAIR10.Chr3.fa
)(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run2
augustus_gtf_to_gff3 ARATH3702_run2 Output/run2.raw.gtf
)Augustus gene prediction run makes use of all extrinsic evidence, same as run2, but weighted towards protein alignments
(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run3
rm -rf Output && mkdir -p Output
/usr/bin/time -v augustus \
--AUGUSTUS_CONFIG_PATH=../Inputs/config \
--species=ath_wksp_opt_c32_k32 \
--UTR=on \
--extrinsicCfgFile=../Inputs/extrinsic.ei_augustus340_generic.cfg \
--alternatives-from-evidence=true \
--hintsfile=hints/extrinsic.augustus.run3.gff3 \
--noInFrameStop=true \
--allow_hinted_splicesites=atac \
--outfile=Output/run3.raw.gtf \
--errfile=Output/run3.log \
--predictionStart=1065466 \
--predictionEnd=1464870 \
../Inputs/Athaliana_447_TAIR10.Chr3.fa
)(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run3
augustus_gtf_to_gff3 ARATH3702_run3 Output/run3.raw.gtf
)Ab initio Augustus gene prediction run without making use of any extrinsic evidence
(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run4
rm -rf Output && mkdir -p Output
/usr/bin/time -v augustus \
--AUGUSTUS_CONFIG_PATH=../Inputs/config \
--species=ath_wksp_opt_c32_k32 \
--UTR=on \
--noInFrameStop=true \
--allow_hinted_splicesites=atac \
--outfile=Output/run4.raw.gtf \
--errfile=Output/run4.log \
--predictionStart=1065466 \
--predictionEnd=1464870 \
../Inputs/Athaliana_447_TAIR10.Chr3.fa
)(
cd /home/train/Annotation_workshop/Augustus/Prediction/Chr3-1065466-1464870/run4
augustus_gtf_to_gff3 ARATH3702_run4 Output/run4.raw.gtf
)(
for f in run*/*.stats.txt ; do
tag=$(basename $f .txt)
mkdir -p Mikado_stats
parse_mikado_stats \
${f} \
> Mikado_stats/${tag}.summary.txt
done
)(
Scripts/paste_mikado_summary_stats.sh \
Mikado_stats/*stats.summary.txt |
tabulate -s "\t" \
> Mikado_stats/all_gff.summary
)cat Mikado_stats/all_gff.summary(
for f in run*/ARATH3702*.gff; do
tag=$(basename $f .gff)
mikado compare \
-r Inputs/Athaliana_447_Araport11.Chr3-1065466-1464870.gene_exons.gff3 \
-p $f \
-o Mikado_Compare/${tag}
done
)(
mikado util collect_compare \
-fmt tsv \
-l "all" \
-o Mikado_Compare/Athaliana_augustus_models \
Mikado_Compare/*.stats
)(
cat Mikado_Compare/Athaliana_augustus_models.f1.tsv \
| sed -e 's:Mikado_Compare/::g' -e 's:.stats::g' \
| tabulate -s "\t"
)- 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