Mercurial > repos > gga > tripal_db_populate_mviews
comparison db_populate_mviews.xml @ 0:7fff65c442fe 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:53:04 -0400 |
parents | |
children | 52f0e9417dc1 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7fff65c442fe |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="db_populate_mviews" profile="16.04" name="Populate materialized views" version="@WRAPPER_VERSION@.0"> | |
3 <description>in Tripal</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <expand macro="stdio"/> | |
9 <command><![CDATA[ | |
10 | |
11 @AUTH@ | |
12 | |
13 tripaille db populate_mviews | |
14 | |
15 #if $mview: | |
16 --name '${mview}' | |
17 #end if | |
18 | |
19 && | |
20 | |
21 echo "Data loaded" > $results | |
22 ]]></command> | |
23 <inputs> | |
24 <param name="mview" | |
25 argument="--name" | |
26 type="text" | |
27 optional="true" | |
28 label="View name" | |
29 help="The materialized view name to populate (leave empty to populate all views)" /> | |
30 </inputs> | |
31 <outputs> | |
32 <data format="txt" name="results" label="Populate Tripal materialized view(s)" /> | |
33 </outputs> | |
34 <tests> | |
35 <test expect_failure="true" expect_exit_code="1"> | |
36 <expand macro="test_result" /> | |
37 </test> | |
38 <test expect_failure="true" expect_exit_code="1"> | |
39 <param name="mview" value="Test" /> | |
40 | |
41 <expand macro="test_result" /> | |
42 </test> | |
43 </tests> | |
44 <help><![CDATA[ | |
45 @HELP_OVERVIEW@ | |
46 | |
47 **Populate Materialized View** | |
48 | |
49 With this tool, you can populate a materialized view in a Tripal instance. | |
50 | |
51 @HELP@ | |
52 ]]></help> | |
53 <expand macro="citation"/> | |
54 </tool> |