view feature_delete_features.xml @ 7:1888d36bb298 draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit f5c5d81fc9781371e12b91c0d609b9201587cda5
author gga
date Fri, 23 Nov 2018 11:02:41 -0500
parents 458734a6b936
children 4c973d69c8e6
line wrap: on
line source

<?xml version="1.0"?>
<tool id="feature_delete_features" name="Chado features delete" version="@WRAPPER_VERSION@.0">
    <description></description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <code file="chado.py"/>
    <command detect_errors="aggressive"><![CDATA[
@AUTH@

chakin feature delete_features

#if $organism:
  --organism_id '$organism'
#end if
#if $analysis_id:
  --analysis_id '$analysis_id'
#end if
#if $name:
  --name '$name'
#end if
#if $uniquename:
  --uniquename '$uniquename'
#end if

| jq -S . > $results
    ]]></command>
    <inputs>
    <!-- options -->
    <param argument="--organism" type="select" dynamic_options="list_organisms()" label="Organism" />
    <param argument="--analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" />
    <param name="name" label="Name" argument="--name" type="text" help="name filter" />
    <param name="uniquename" label="Uniquename" argument="--uniquename" type="text" help="uniquename filter" />

    </inputs>
    <outputs>
        <data format="json" name="results"/>
    </outputs>
    <help>
Get all or some features

@HELP@
    </help>
</tool>