Mercurial > repos > gga > chado_analysis_delete_analyses
comparison analysis_delete_analyses.xml @ 10:0859730cc192 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:39:41 -0400 |
parents | ab0e3ca18381 |
children | 7bcd46cf597f |
comparison
equal
deleted
inserted
replaced
9:ab0e3ca18381 | 10:0859730cc192 |
---|---|
5 <import>macros.xml</import> | 5 <import>macros.xml</import> |
6 </macros> | 6 </macros> |
7 <expand macro="requirements"/> | 7 <expand macro="requirements"/> |
8 <code file="chado.py"/> | 8 <code file="chado.py"/> |
9 <command detect_errors="aggressive"><![CDATA[ | 9 <command detect_errors="aggressive"><![CDATA[ |
10 @AUTH@ | 10 @START_PSQL@ && |
11 | 11 |
12 chakin analysis delete_analyses | 12 chakin analysis delete_analyses |
13 | 13 |
14 --analysis_id '$analysis_id' | 14 --analysis_id '$analysis_id' |
15 | 15 |
16 > '$results' | 16 > '$results' |
17 | |
18 && @ZIP_PSQL@ | |
17 ]]></command> | 19 ]]></command> |
18 <inputs> | 20 <inputs> |
21 <expand macro="psql_target"/> | |
19 <!-- arguments --> | 22 <!-- arguments --> |
20 | 23 |
21 <!-- options --> | 24 <!-- options --> |
22 <param argument="--analysis_id" | 25 <param argument="--analysis_id" |
23 type="select" | 26 type="select" |
25 label="Analysis" /> | 28 label="Analysis" /> |
26 | 29 |
27 </inputs> | 30 </inputs> |
28 <outputs> | 31 <outputs> |
29 <data format="txt" name="results"/> | 32 <data format="txt" name="results"/> |
33 <data format="postgresql" name="outfile" from_work_dir="postgresql_out.tar.bz2" label="${tool.name} on ${on_string}"> | |
34 <filter>psql_target['method'] == "pgtools"</filter> | |
35 </data> | |
30 </outputs> | 36 </outputs> |
31 <help> | 37 <help> |
32 Delete analysis | 38 Delete analysis |
33 | 39 |
34 @HELP@ | 40 @HELP@ |