comparison multiple_rarefactions.xml @ 0:c1bd0c560018 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime commit bcbe76277f3e60303faf826f8ce7f018bc663a9a-dirty
author bebatut
date Tue, 02 Feb 2016 05:50:37 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c1bd0c560018
1 <tool id="qiime_multiple_rarefactions" name="Perform multiple subsamplings/rarefactions" version="1.9.1">
2 <description>on an otu table</description>
3
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7
8 <expand macro="requirements" />
9
10 <command>
11 <![CDATA[
12 multiple_rarefactions.py -i $input_path -o multiple_rarefactions_output -m $min -x $max -s $step
13
14 #if $numreps:
15 -n $numreps
16 #end if
17
18 #if $lineages_included:
19 --lineages_included
20 #end if
21
22 #if $keep_empty_otus:
23 -k
24 #end if
25
26 #if $subsample_multinomial:
27 --subsample_multinomial
28 #end if
29 ]]>
30 </command>
31
32 <inputs>
33 <param label="-i/--input_path: Input OTU table filepath."
34 name="input_path" optional="False" type="data"/>
35 <param label="-m/--min: Minimum number of seqs/sample for rarefaction."
36 name="min" optional="False" type="integer" value="0"/>
37 <param label="-x/--max: Maximum number of seqs/sample (inclusive) for r
38 arefaction. " name="max" optional="False" type="integer" value="0"/>
39 <param label="-s/--step: Size of each steps between the min/max of
40 seqs/sample (e.g. min, min+step... for level = max)." name="step"
41 optional="False" type="integer" value="0"/>
42 <param default="10" label="-n/--num-reps: The number of iterations at
43 each step. [default: 10]" name="numreps" optional="True" type="integer"/>
44 <param label="--lineages_included: Retain taxonomic (lineage) information
45 for each OTU. Note: this will only work if lineage information is in
46 the input OTU table. [default: False]" name="lineages_included"
47 selected="False" type="boolean"/>
48 <param label="-k/--keep_empty_otus: Retain OTUs of all zeros, which are
49 usually omitted from the output OTU tables. [default: False]"
50 name="keep_empty_otus" selected="False" type="boolean"/>
51 <param label="--subsample_multinomial: subsample using subsampling with
52 replacement [default: False]" name="subsample_multinomial"
53 selected="False" type="boolean"/>
54 </inputs>
55
56 <outputs>
57 <data format="tgz" name="multiple_rarefactions" label="Multiple_rarefaction.tgz" />
58 <data format="tgz" name="output_dir" label="Alpha diversity.tgz" />
59 <data format="text" name="alpha_param" label="alpha_param.txt" />
60 </outputs>
61
62 <tests>
63 <test>
64 </test>
65 </tests>
66
67 <help><![CDATA[
68 To perform bootstrap, jackknife, and rarefaction analyses, the otu table must be subsampled (rarefied). This script rarefies, or subsamples, OTU tables. This does not provide curves of diversity by number of sequences in a sample. Rather it creates a series of subsampled OTU tables by random sampling (without replacement) of the input OTU table. Samples that have fewer sequences then the requested rarefaction depth for a given output otu table are omitted from those ouput otu tables. The pseudo-random number generator used for rarefaction by subsampling is NumPy’s default - an implementation of the Mersenne twister PRNG.
69 ]]>
70 </help>
71
72 <citations>
73 <expand macro="citations" />
74 </citations>
75 </tool>