view macros.xml @ 1:6d8444408ff1 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/agat commit 7339e1e32188846188c6b18a024dac0ee0ff4d88
author bgruening
date Tue, 23 May 2023 18:05:26 +0000
parents f7c0a0030254
children e009d8260be2
line wrap: on
line source

<macros>
    <token name="@TOOL_VERSION@">1.1.0</token>
    <token name="@VERSION_SUFFIX@">1</token>
    <xml name="requirements">
        <requirements>
            <requirement type="package" version="@TOOL_VERSION@">agat</requirement>
        </requirements>
    </xml>
    <xml name="biotools">
        <xrefs>
            <xref type="bio.tools">agat</xref>
        </xrefs>
    </xml>
    <xml name="citations">
        <citations>
            <citation type="doi">10.5281/zenodo.3552717</citation>
        </citations>
    </xml>
    <xml name="ANNOTATION_INPUT" token_format="gff,gtf,gff3,gff3.gz">
        <param argument="--gff" type="data" format="@FORMAT@" label="Annotation file" help="Input GTF/GFF file" />
    </xml>

    <xml name="REFERENCE_FASTA">
        <conditional name="reference_genome">
            <param name="source" type="select" label="Source for the reference genome" help="Built-in references were created using default options.">
                <option value="indexed" selected="true">Use a built-in genome</option>
                <option value="history" selected="true">Use a genome from history</option>
            </param>
            <when value="indexed">
                <param name="index" type="select" label="Select a reference genome" help="If your genome of interest is not listed, contact the Galaxy team.">
                    <options from_data_table="fasta_indexes">
                        <filter type="sort_by" column="2" />
                        <validator type="no_options" message="No genomes are available for the selected input dataset" />
                    </options>
                </param>
            </when>
            <when value="history">
                <param name="history_item" type="data" format="fasta" label="Reference genome" help="A reference genome in FASTA format" />
            </when>
        </conditional>
    </xml>
    <token name="@input_annotation_single@"><![CDATA[
        #set $input_annotation = 'annotation.' + str($tool.gff.ext)
        ln -s '${tool.gff}' $input_annotation &&
    ]]></token>
    <token name="@input_reference@"><![CDATA[
        #if $tool.reference_genome.source == 'history':
            #set $ref_genome = 'reference.fasta'
            ln -s -f '${tool.reference_genome.history_item}' $ref_genome &&
        #else:
            #set $ref_genome = $tool.reference_genome.index.fields.path
        #end if
    ]]></token>
    <token name="@input_annotation_double@"><![CDATA[
        #set $input1 = 'annotation1.' + str($tool.input_annotation1.ext)
        #set $input2 = 'annotation2.' + str($tool.input_annotation2.ext)
        ln -s '${tool.input_annotation1}' $input1 &&
        ln -s '${tool.input_annotation2}' $input2 &&
    ]]></token>
    

</macros>