view entity_publish.xml @ 2:6367393cae8e draft default tip

"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit ea279e5b47cf3d5767328d17b0e40e57b0238ea1"
author gga
date Wed, 14 Aug 2019 10:03:19 -0400
parents cf07e70c1502
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="entity_publish" name="Publish entities" version="@WRAPPER_VERSION@.1">
 <description>in Tripal</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <command detect_errors="aggressive"><![CDATA[

        @AUTH@

        tripaille entity publish

        #for $rep in $repeat_types:
          --types '$rep.types'
        #end for

        &&

        echo "Data loaded" > '$results'
]]></command>
    <inputs>
        <!-- arguments -->

        <!-- options -->
        <repeat name="repeat_types" title="types">
            <param name="types" label="Types" argument="types" type="text" help="List of entity types to be published (e.g. Gene mRNA, default: all)" />
        </repeat>

        <expand macro="wait_for"/>

    </inputs>
    <outputs>
        <data format="json" name="results"/>
    </outputs>
    <help>
Publish entities (Tripal 3 only)

@HELP@
    </help>
</tool>