view augustus_training.xml @ 0:fcdd4f5c6cfc draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus commit 2896dcfd180800d00ea413a59264ef8b11788b8e
author iuc
date Fri, 20 Oct 2017 03:48:35 -0400
parents
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="augustus_training" name="Train Augustus" profile="16.04" version="@VERSION@">
    <description>ab-initio gene predictor</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements">
        <requirement type="package" version="2.31.9">maker</requirement>
    </expand>
    <command><![CDATA[
        cp -r "\$AUGUSTUS_CONFIG_PATH/" 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>