Mercurial > repos > iuc > mothur_get_group
comparison get.group.xml @ 0:200b088eaf93 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit a9d1e0debcd357d8080a1c6c5f1d206dd45a7a4d
author | iuc |
---|---|
date | Fri, 19 May 2017 05:57:15 -0400 |
parents | |
children | 0aa74388e4fc |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:200b088eaf93 |
---|---|
1 <tool profile="16.07" id="mothur_get_group" name="Get.group" version="@WRAPPER_VERSION@.0"> | |
2 <description>group names from shared or from list and group</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements"/> | |
7 <expand macro="stdio"/> | |
8 <expand macro="version_command"/> | |
9 <command><![CDATA[ | |
10 @SHELL_OPTIONS@ | |
11 | |
12 ## create symlinks to input datasets | |
13 ln -s "$otu" otu.dat && | |
14 | |
15 echo 'get.group( | |
16 shared=otu.dat | |
17 )' | |
18 | sed 's/ //g' ## mothur trips over whitespace | |
19 | mothur | |
20 | tee mothur.out.log && | |
21 | |
22 ## parse relevant output from logfile to file | |
23 cat mothur.*.logfile | |
24 | head -n-6 | |
25 | sed '1,29d' | |
26 > "$bootgroups" | |
27 ]]></command> | |
28 <inputs> | |
29 <param name="otu" type="data" format="mothur.shared" label="shared - OTU Shared"/> | |
30 </inputs> | |
31 <outputs> | |
32 <expand macro="logfile-output"/> | |
33 <data name="bootgroups" format="mothur.groups" label="${tool.name} on ${on_string}: bootGroups"/> | |
34 </outputs> | |
35 <tests> | |
36 <test> | |
37 <param name="otu" value="amazon.an.shared" ftype="mothur.shared"/> | |
38 <output name="bootgroups" md5="93b9f7ead2ee04f056e77b5bb94ea0dd"/> | |
39 <expand macro="logfile-test"/> | |
40 </test> | |
41 </tests> | |
42 <help> | |
43 <![CDATA[ | |
44 | |
45 @MOTHUR_OVERVIEW@ | |
46 | |
47 **Command Documentation** | |
48 | |
49 The get.group_ command generate principle components plot data. | |
50 | |
51 .. _get.group: https://www.mothur.org/wiki/Get.group | |
52 | |
53 v.1.20.0: Updated to Mothur 1.33 | |
54 ]]> | |
55 </help> | |
56 <expand macro="citations"/> | |
57 </tool> |