Mercurial > repos > gga > chado_feature_get_features
view feature_get_features.xml @ 18:51ed67155877 draft
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 170209d14cabe6ce8ab7b9f06df7fbf36af2ba43"
author | gga |
---|---|
date | Tue, 04 May 2021 12:51:59 +0000 |
parents | df8527b4f2b8 |
children |
line wrap: on
line source
<?xml version="1.0"?> <tool id="feature_get_features" name="Chado features get" version="@WRAPPER_VERSION@"> <description></description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <code file="chado.py"/> <command detect_errors="aggressive"><![CDATA[ @START_PSQL@ && chakin feature get_features #if $organism_id: --organism_id '$organism_id' #end if #if $analysis_id: --analysis_id '$analysis_id' #end if #if $name: --name '$name' #end if #if $uniquename: --uniquename '$uniquename' #end if | jq -S . > '$results' @STOP_PSQL@ ]]></command> <inputs> <expand macro="psql_target"/> <!-- options --> <param argument="--organism_id" type="select" dynamic_options="list_organisms()" label="Organism" /> <param argument="--analysis_id" type="select" dynamic_options="list_analyses()" label="Analysis" /> <param name="name" label="Name" argument="--name" type="text" help="name filter" /> <param name="uniquename" label="Uniquename" argument="--uniquename" type="text" help="uniquename filter" /> </inputs> <outputs> <data format="json" name="results"/> </outputs> <help> Get all or some features @HELP@ </help> </tool>