comparison feature_delete_features.xml @ 12:ccda382b5c8a draft

"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 1640878827bdc3870b6f34eded3a3f7571a1849f"
author gga
date Wed, 21 Aug 2019 05:08:32 -0400
parents 926dbc8a33a1
children
comparison
equal deleted inserted replaced
11:926dbc8a33a1 12:ccda382b5c8a
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="feature_delete_features" name="Chado features delete" version="@WRAPPER_VERSION@.1"> 2 <tool id="feature_delete_features" name="Chado features delete" version="@WRAPPER_VERSION@">
3 <description></description> 3 <description></description>
4 <macros> 4 <macros>
5 <import>macros.xml</import> 5 <import>macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements"/> 7 <expand macro="requirements"/>
9 <command detect_errors="aggressive"><![CDATA[ 9 <command detect_errors="aggressive"><![CDATA[
10 @START_PSQL@ && 10 @START_PSQL@ &&
11 11
12 chakin feature delete_features 12 chakin feature delete_features
13 13
14 #if $organism: 14 #if $organism_id:
15 --organism_id '$organism' 15 --organism_id '$organism_id'
16 #end if 16 #end if
17 #if $analysis_id: 17 #if $analysis_id:
18 --analysis_id '$analysis_id' 18 --analysis_id '$analysis_id'
19 #end if 19 #end if
20 #if $name: 20 #if $name:
29 @ZIP_PSQL@ 29 @ZIP_PSQL@
30 ]]></command> 30 ]]></command>
31 <inputs> 31 <inputs>
32 <expand macro="psql_target"/> 32 <expand macro="psql_target"/>
33 <!-- options --> 33 <!-- options -->
34 <param argument="--organism" type="select" dynamic_options="list_organisms()" label="Organism" /> 34 <param argument="--organism_id" type="select" dynamic_options="list_organisms()" label="Organism" />
35 <param argument="--analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" /> 35 <param argument="--analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" />
36 <param name="name" label="Name" argument="--name" type="text" help="name filter" /> 36 <param name="name" label="Name" argument="--name" type="text" help="name filter" />
37 <param name="uniquename" label="Uniquename" argument="--uniquename" type="text" help="uniquename filter" /> 37 <param name="uniquename" label="Uniquename" argument="--uniquename" type="text" help="uniquename filter" />
38 </inputs> 38 </inputs>
39 <outputs> 39 <outputs>