view phylogeny_gene_order.xml @ 22:fe413d250b2d draft default tip

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 20d8d84d66eb27f870cadb94a02c97806090df24
author gga
date Wed, 11 May 2022 14:42:02 +0000
parents 954d702c935e
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="phylogeny_gene_order" name="Chado gene ordering" version="@WRAPPER_VERSION@">
 	<description>for phylogeny module</description>
	<macros>
		<import>macros.xml</import>
	</macros>
	<expand macro="requirements"/>
	<command detect_errors="aggressive"><![CDATA[
@START_PSQL@ &&

chakin phylogeny gene_order

$nuke

 > '$results'

 @ZIP_PSQL@
    ]]></command>
	<inputs>
		<expand macro="psql_target"/>
    <!-- options -->
		<param name="nuke" label="Nuke" argument="--nuke" type="boolean" truevalue="--nuke" falsevalue="" help="Removes all previous gene ordering data" />
	    <expand macro="wait_for"/>

	</inputs>
	<outputs>
		<data format="txt" name="results"/>
    <data format="postgresql" name="outfile" from_work_dir="postgresql_out.tar.bz2" label="${tool.name} on ${on_string}">
      <filter>psql_target['method'] == "pgtools"</filter>
    </data>
	</outputs>
	<help>
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/).

@HELP@
	</help>
</tool>