comparison expression_delete_biomaterials.xml @ 0:3af5ba30d0cd draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 3c4fb887c809face4fbe4602617d6dc094b15864
author gga
date Mon, 05 Nov 2018 08:05:34 -0500
parents
children 8b1250de656a
comparison
equal deleted inserted replaced
-1:000000000000 0:3af5ba30d0cd
1 <?xml version="1.0"?>
2 <tool id="expression_delete_biomaterials" name="Chado biomaterials delete" version="@WRAPPER_VERSION@.0">
3 <description></description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements"/>
8 <code file="chado.py"/>
9 <command detect_errors="aggressive"><![CDATA[
10 @AUTH@
11
12 chakin expression delete_biomaterials
13
14 #if $names:
15 --names '$names'
16 #end if
17 #if $ids:
18 --ids '$ids'
19 #end if
20 #if $organism_id:
21 --organism_id '$organism_id'
22 #end if
23 #if $analysis_id:
24 --analysis_id '$analysis_id'
25 #end if
26 > $results
27 ]]></command>
28 <inputs>
29 <!-- options -->
30 <param argument="organism_id" type="select" dynamic_options="list_organisms()" label="Organism" optional="true" />
31 <param argument="analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" optional="true" />
32 <param name="names" label="Names" argument="names" type="data" format="json" help="JSON list of biomaterial names to delete." optional="true" />
33 <param name="ids" label="Ids" argument="ids" type="data" format="json" help="JSON list of biomaterial ids to delete." optional="true" />
34
35 <expand macro="wait_for"/>
36 </inputs>
37 <outputs>
38 <data format="txt" name="results"/>
39 </outputs>
40 <help>
41 Will delete biomaterials based on selector. Only one selector will be used.
42
43 @HELP@
44 </help>
45 </tool>