view feature_delete_features.xml @ 6:4f019255aa2c draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit c5b949de324bf86c88c680767e56ac77685cd14c
author gga
date Mon, 05 Nov 2018 12:13:19 -0500
parents 458734a6b936
children 1888d36bb298
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>
    <!-- arguments -->

    <!-- 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>