comparison make_pie_charts.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="make_pie_charts" name="make_pie_charts" version="1.2.0">
2 <description>Make pie charts based on taxonomy assignment</description>
3 <requirements>
4 <requirement type="binary">make_pie_charts.py</requirement>
5 </requirements>
6 <command interpreter="python">
7 qiime_wrapper.py
8 --galaxy_tmpdir='$__new_file_path__'
9 make_pie_charts.py
10 --input_files=$input_files
11 --labels=$labels
12 $sample_flag
13 --num=$num
14 --dir-prefix=$dir_prefix
15 --colorby=$colorby
16 --prefs_path=$prefs_path
17 --background_color=$background_color
18 </command>
19 <inputs>
20 <param name="input_files" type="text" label="input_files"
21 help="list of files with sample counts by taxonomy [REQUIRED]"/>
22 <param name="labels" type="text" label="labels"
23 help="list of labels for pie chart(i.e. Phylum,Class)[REQUIRED]"/>
24 <param name="sample_flag" type="boolean" truevalue="--sample_flag" falsevalue="" checked="false" label="sample_flag"
25 help="if -s is passed, pie charts will be created for each sample"/>
26 <param name="num" type="text" value="20" label="num"
27 help="Maximum number of individual categories in each pie chart. All additional categories are grouped into an 'other' category. [default: 20]"/>
28 <param name="dir_prefix" type="text" label="dir-prefix"
29 help="output folder"/>
30 <param name="colorby" type="text" label="colorby"
31 help="This is the samples to make pie charts for in the counts files from summarize_taxa.py. The sample name must match the name of a sample id in the header of the counts file exactly and multiple categories can be list by comma separating them without spaces. If you want to see the pie charts broken up by all samples -s is still funtional. If -s is set and -b is used it will just be broken up by all samples. If neither -s or -b are set the pie charts will be based on all samples put together, one for each level. [default: ('NO', 'DEFAULT')]"/>
32 <param name="prefs_path" type="text" label="prefs_path"
33 help="This is the user-generated preferences file. NOTE: This is a file with a dictionary containing preferences for the analysis. The label taxonomy_coloring is used for the coloring, see example prefs file preferences_file. [default: ('NO', 'DEFAULT')]"/>
34 <param name="background_color" type="text" label="background_color"
35 help="This is the background color to use in the plots. [default: ('NO', 'DEFAULT')]"/>
36 </inputs>
37 <outputs>
38
39 </outputs>
40 <tests>
41 </tests>
42 <help>
43
44 </help>
45 </tool>
46