Mercurial > repos > gga > chado_analysis_get_analyses
diff analysis_get_analyses.xml @ 0:693fd0ba9cf2 draft
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 81a83f06b49db32928ba0cd44e5b6d0431868d27
author | gga |
---|---|
date | Thu, 21 Jun 2018 08:42:59 -0400 |
parents | |
children | 304b8f21bb97 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/analysis_get_analyses.xml Thu Jun 21 08:42:59 2018 -0400 @@ -0,0 +1,66 @@ +<?xml version="1.0"?> +<tool id="analysis_get_analyses" name="Chado analysis get" version="@WRAPPER_VERSION@.0"> + <description></description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> + <command detect_errors="aggressive"><![CDATA[ +@AUTH@ + +chakin analysis get_analyses + +#if $analysis_id: + --analysis_id '$analysis_id' +#end if +#if $name: + --name '$name' +#end if +#if $program: + --program '$program' +#end if +#if $programversion: + --programversion '$programversion' +#end if +#if $algorithm: + --algorithm '$algorithm' +#end if +#if $sourcename: + --sourcename '$sourcename' +#end if +#if $sourceversion: + --sourceversion '$sourceversion' +#end if +#if $sourceuri: + --sourceuri '$sourceuri' +#end if +#if $description: + --description '$description' +#end if + +| jq -S . > $results + ]]></command> + <inputs> + <!-- arguments --> + + <!-- options --> + <param name="analysis_id" label="Analysis Id" argument="analysis_id" type="integer" help="analysis_id filter" optional="True" /> + <param name="name" label="Name" argument="name" type="text" help="analysis name filter" optional="True" /> + <param name="program" label="Program" argument="program" type="text" help="analysis program filter" optional="True" /> + <param name="programversion" label="Programversion" argument="programversion" type="text" help="analysis programversion filter" optional="True" /> + <param name="algorithm" label="Algorithm" argument="algorithm" type="text" help="analysis algorithm filter" optional="True" /> + <param name="sourcename" label="Sourcename" argument="sourcename" type="text" help="analysis sourcename filter" optional="True" /> + <param name="sourceversion" label="Sourceversion" argument="sourceversion" type="text" help="analysis sourceversion filter" optional="True" /> + <param name="sourceuri" label="Sourceuri" argument="sourceuri" type="text" help="analysis sourceuri filter" optional="True" /> + <param name="description" label="Description" argument="description" type="text" help="analysis description" optional="True" /> + + </inputs> + <outputs> + <data format="json" name="results"/> + </outputs> + <help> +Get all or some analyses + +@HELP@ + </help> +</tool>