Mercurial > repos > jjohnson > qiime
comparison multiple_rarefactions.xml @ 0:e5c3175506b7 default tip
Initial tool configs for qiime, most need work.
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Sun, 17 Jul 2011 10:30:11 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e5c3175506b7 |
---|---|
1 <tool id="multiple_rarefactions" name="multiple_rarefactions" version="1.2.0"> | |
2 <description>Perform multiple subsamplings/rarefactions on an otu table</description> | |
3 <requirements> | |
4 <requirement type="binary">multiple_rarefactions.py</requirement> | |
5 </requirements> | |
6 <command interpreter="python"> | |
7 qiime_wrapper.py | |
8 --galaxy_tmpdir='$__new_file_path__' | |
9 multiple_rarefactions.py | |
10 --input_path=$input_path | |
11 --output_path=$output_path | |
12 --min=$min | |
13 --max=$max | |
14 --step=$step | |
15 --num-reps=$num_reps | |
16 $lineages_included | |
17 $keep_empty_otus | |
18 </command> | |
19 <inputs> | |
20 <param name="input_path" type="text" label="input_path" | |
21 help="input otu table filepath [REQUIRED]"/> | |
22 <param name="min" type="integer" value="-1" label="min" | |
23 help="min seqs/sample [REQUIRED]"/> | |
24 <param name="max" type="integer" value="-1" label="max" | |
25 help="max seqs/sample (inclusive) [REQUIRED]"/> | |
26 <param name="step" type="integer" value="-1" label="step" | |
27 help="levels: min, min+step... for level {= max [REQUIRED]"/> | |
28 <param name="num_reps" type="integer" value="1" label="num-reps" | |
29 help="num iterations at each seqs/sample level [default: 1]"/> | |
30 <param name="lineages_included" type="boolean" truevalue="--lineages_included" falsevalue="" checked="false" label="lineages_included" | |
31 help="output rarefied otu tables will include taxonomic (lineage) information for each otu, if present in input otu table [default: False]"/> | |
32 <param name="keep_empty_otus" type="boolean" truevalue="--keep_empty_otus" falsevalue="" checked="false" label="keep_empty_otus" | |
33 help="otus (rows) of all zeros are usually omitted from the output otu tables, with -k they will not be removed from the output files [default: False]"/> | |
34 </inputs> | |
35 <outputs> | |
36 <data format="txt" name="output_path"/> | |
37 </outputs> | |
38 <tests> | |
39 </tests> | |
40 <help> | |
41 | |
42 </help> | |
43 </tool> | |
44 |