Mercurial > repos > gga > chado_expression_get_biomaterials
comparison expression_get_biomaterials.xml @ 0:2dc7f958f3ff 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:17:31 -0500 |
parents | |
children | 3df5eaa8ae44 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2dc7f958f3ff |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="expression_get_biomaterials" name="Chado biomaterial get" 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 get_biomaterials | |
13 | |
14 #if $provider_id: | |
15 --provider_id '$provider_id' | |
16 #end if | |
17 #if $biomaterial_id: | |
18 --biomaterial_id '$biomaterial_id' | |
19 #end if | |
20 #if $organism_id: | |
21 --organism_id '$organism_id' | |
22 #end if | |
23 #if $biomaterial_name: | |
24 --biomaterial_name '$biomaterial_name' | |
25 #end if | |
26 #if $analysis_id: | |
27 --analysis_id '$analysis_id' | |
28 #end if | |
29 | |
30 | jq -S . > $results | |
31 ]]></command> | |
32 <inputs> | |
33 <!-- options --> | |
34 <param argument="organism_id" type="select" dynamic_options="list_organisms()" label="Organism" optional="true" /> | |
35 <param argument="analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" optional="true" /> | |
36 <param name="provider_id" label="Provider Id" argument="provider_id" type="text" help="Limit query to the selected provider" optional="true" /> | |
37 <param name="biomaterial_id" label="Biomaterial Id" argument="biomaterial_id" type="text" help="Limit query to the selected biomaterial id" optional="true" /> | |
38 <param name="biomaterial_name" label="Biomaterial Name" argument="biomaterial_name" type="text" help="Limit query to the selected biomaterial name" optional="true" /> | |
39 | |
40 <expand macro="wait_for"/> | |
41 </inputs> | |
42 <outputs> | |
43 <data format="json" name="results"/> | |
44 </outputs> | |
45 <help> | |
46 List biomaterials in the database | |
47 | |
48 @HELP@ | |
49 </help> | |
50 </tool> |