comparison get.group.xml @ 0:64172c653a64 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 180a403421967d36f995941b1a4561349d75cfc5
author iuc
date Fri, 24 Jun 2016 16:31:33 -0400
parents
children 583954d9f36e
comparison
equal deleted inserted replaced
-1:000000000000 0:64172c653a64
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="version_command"/>
8 <command detect_errors="aggressive"><![CDATA[
9 ## create symlinks to input datasets
10 ln -s "$otu" otu.dat &&
11
12 echo 'get.group(
13 shared=otu.dat
14 )'
15 | sed 's/ //g' ## mothur trips over whitespace
16 | mothur &&
17
18 ## parse relevant output from logfile to file
19 cat mothur.*.logfile
20 | head -n-6
21 | sed '1,29d'
22 > "$bootgroups"
23 ]]></command>
24 <inputs>
25 <param name="otu" type="data" format="mothur.shared" label="shared - OTU Shared"/>
26 </inputs>
27 <outputs>
28 <expand macro="logfile-output"/>
29 <data name="bootgroups" format="mothur.groups" label="${tool.name} on ${on_string}: bootGroups"/>
30 </outputs>
31 <tests>
32 <test>
33 <param name="otu" value="amazon.an.shared" ftype="mothur.shared"/>
34 <output name="bootgroups" md5="93b9f7ead2ee04f056e77b5bb94ea0dd"/>
35 <expand macro="logfile-test"/>
36 </test>
37 </tests>
38 <help>
39 <![CDATA[
40
41 @MOTHUR_OVERVIEW@
42
43 **Command Documenation**
44
45 The get.group_ command generate principle components plot data.
46
47 .. _get.group: http://www.mothur.org/wiki/Get.group
48
49 v.1.20.0: Updated to Mothur 1.33
50 ]]>
51 </help>
52 <expand macro="citations"/>
53 </tool>