comparison phylogeny_gene_order.xml @ 11:9efb6d4ed19b draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 0b135f1ea2623ea68e41ac88e13d99e6b4ad8bea
author gga
date Mon, 08 Jul 2019 05:31:09 -0400
parents cba2274d1463
children bb4b8932ccdc
comparison
equal deleted inserted replaced
10:cba2274d1463 11:9efb6d4ed19b
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"/>
8 <command detect_errors="aggressive"><![CDATA[ 8 <command detect_errors="aggressive"><![CDATA[
9 @AUTH@ 9 @START_PSQL@ &&
10 10
11 chakin phylogeny gene_order 11 chakin phylogeny gene_order
12 12
13 $nuke 13 $nuke
14 14
15 > '$results' 15 > '$results'
16
17 && @ZIP_PSQL@
16 ]]></command> 18 ]]></command>
17 <inputs> 19 <inputs>
20 <expand macro="psql_target"/>
18 <!-- options --> 21 <!-- options -->
19 <param name="nuke" label="Nuke" argument="--nuke" type="boolean" truevalue="--nuke" falsevalue="" help="Removes all previous gene ordering data" /> 22 <param name="nuke" label="Nuke" argument="--nuke" type="boolean" truevalue="--nuke" falsevalue="" help="Removes all previous gene ordering data" />
20 <expand macro="wait_for"/> 23 <expand macro="wait_for"/>
21 24
22 </inputs> 25 </inputs>
23 <outputs> 26 <outputs>
24 <data format="txt" name="results"/> 27 <data format="txt" name="results"/>
28 <data format="postgresql" name="outfile" from_work_dir="postgresql_out.tar.bz2" label="${tool.name} on ${on_string}">
29 <filter>psql_target['method'] == "pgtools"</filter>
30 </data>
25 </outputs> 31 </outputs>
26 <help> 32 <help>
27 Orders all the genes in the database by their order on their respective chromosomes in the gene_order table (for use in https://github.com/legumeinfo/lis_context_viewer/). 33 Orders all the genes in the database by their order on their respective chromosomes in the gene_order table (for use in https://github.com/legumeinfo/lis_context_viewer/).
28 34
29 @HELP@ 35 @HELP@