comparison analysis_sync.xml @ 0:c401f51b12cc draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit f745b23c84a615bf434d717c8c0e553a012f0268
author gga
date Mon, 11 Sep 2017 05:52:26 -0400
parents
children 8fea07ae5d94
comparison
equal deleted inserted replaced
-1:000000000000 0:c401f51b12cc
1 <?xml version="1.0"?>
2 <tool id="analysis_sync" profile="16.04" name="Synchronize an analysis" version="@WRAPPER_VERSION@.0">
3 <description>from Chado to Tripal</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements"/>
8 <code file="tripal.py"/>
9 <expand macro="stdio"/>
10 <command><![CDATA[
11
12 @AUTH@
13
14 tripaille analysis sync
15
16 --analysis_id '${analysis_id}'
17
18 &&
19
20 echo "Data loaded" > $results
21 ]]></command>
22 <inputs>
23 <param argument="--analysis_id"
24 type="select"
25 dynamic_options="list_analyses()"
26 label="Analysis" />
27 </inputs>
28 <outputs>
29 <data format="json" name="results" label="Synchronize Analysis into Tripal" />
30 </outputs>
31 <tests>
32 <test expect_failure="true">
33 <param name="analysis_id" value="1" />
34
35 <expand macro="test_result" />
36 </test>
37 </tests>
38 <help><![CDATA[
39 @HELP_OVERVIEW@
40
41 **Synchronize Analysis**
42
43 With this tool, you can synchronize an analysis from the Chado database into the Tripal instance.
44 A corresponding Drupal node will be created.
45
46 @HELP@
47 ]]></help>
48 <expand macro="citation"/>
49 </tool>