Mercurial > repos > bgruening > augustus_training
view augustus_training.xml @ 7:f1e653756174 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit fbd55928544683a7f7e6e10dadabe698bc71b0e4
author | iuc |
---|---|
date | Fri, 04 Oct 2024 11:32:17 +0000 |
parents | dc027fa56d55 |
children |
line wrap: on
line source
<?xml version="1.0"?> <tool id="augustus_training" name="Train Augustus" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description>ab-initio gene predictor</description> <macros> <import>macros.xml</import> </macros> <xrefs> <xref type="bio.tools">augustus</xref> </xrefs> <expand macro="requirements"> <requirement type="package" version="2.31.10">maker</requirement> </expand> <command><![CDATA[ cp -r `command -v augustus | xargs dirname`/../config/ augustus_dir/ && export AUGUSTUS_CONFIG_PATH=`pwd`/augustus_dir/ && maker2zff '${maker_gff}' && zff2gff3.pl genome.ann | perl -plne 's/\t(\S+)$/\t\.\t$1/' > genome.gff3 && autoAugTrain.pl --genome=${genome} --species=local --trainingset=genome.gff3 -v && cd 'augustus_dir/species/' && tar cvfz '${output_tar}' 'local' ]]></command> <inputs> <param name="genome" type="data" format="fasta" label="Genome to annotate"/> <param name="maker_gff" type="data" format="gff" label="Annotation to use for training"/> </inputs> <outputs> <data name="output_tar" format="augustus" label="${tool.name} on ${on_string}: Augustus trained model"/> </outputs> <tests> <test expect_failure="true"> <param name="genome" value="human_augustus.fa"/> <param name="maker_gff" value="annot.gff3"/> <assert_stderr> <has_text text="Number of training genes is with 2 too low (at least 100 genes required)" /> </assert_stderr> </test> </tests> <help><![CDATA[ This tool allows to train Augustus (the ab-initio gene predictor) based on a previous prediction (e.g. made with Maker). ]]></help> <expand macro="citations"/> </tool>