comparison expression_delete_biomaterials.xml @ 0:939ae64500f9 draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
author gga
date Mon, 25 Feb 2019 06:21:08 -0500
parents
children 446eee605ac1
comparison
equal deleted inserted replaced
-1:000000000000 0:939ae64500f9
1 <?xml version="1.0"?>
2 <tool id="expression_delete_biomaterials" name="Delete biomaterials" version="@WRAPPER_VERSION@.0">
3 <description>from Tripal</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements"/>
8 <code file="tripal.py"/>
9 <command detect_errors="aggressive"><![CDATA[
10 @AUTH@
11
12 tripaille expression delete_biomaterials
13
14 #if $names:
15 --names '$names'
16 #end if
17 #if $organism_id:
18 --organism_id '$organism_id'
19 #end if
20 #if $analysis_id:
21 --analysis_id '$analysis_id'
22 #end if
23
24 &&
25
26 echo "Data loaded" > $results
27 ]]></command>
28 <inputs>
29 <!-- arguments -->
30
31 <!-- options -->
32 <param name="names" label="Names" argument="names" type="text" help="JSON list of biomaterial names to delete." optional="true">
33 <expand macro="sanitized"/>
34 </param>
35
36 <param argument="--organism_id" type="select" dynamic_options="list_organisms()" label="Organism" optional="true" />
37 <param argument="--analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" optional="true" />
38
39 </inputs>
40 <outputs>
41 <data format="txt" name="results"/>
42 </outputs>
43 <help>
44 Delete some biomaterials
45
46 @HELP@
47 </help>
48 </tool>