comparison pool_by_metadata.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="pool_by_metadata" name="pool_by_metadata" version="1.2.0">
2 <description>pool samples in OTU table and mapping file based on sample metadata from mapping file</description>
3 <requirements>
4 <requirement type="binary">pool_by_metadata.py</requirement>
5 </requirements>
6 <command interpreter="python">
7 qiime_wrapper.py
8 --galaxy_tmpdir='$__new_file_path__'
9 pool_by_metadata.py
10 --otu_table_fp=$otu_table_fp
11 --map=$map
12 --states=$states
13 --otu_outfile=$otu_outfile
14 --map_outfile=$map_outfile
15 --pooled_sample_name=$pooled_sample_name
16 </command>
17 <inputs>
18 <param name="otu_table_fp" type="data" format="txt" label="otu_table_fp"
19 help="path to the input OTU table (i.e., the output from make_otu_table.py) [REQUIRED]"/>
20 <param name="map" type="data" format="tabular" label="map"
21 help="path to the map file [REQUIRED]"/>
22 <param name="states" type="text" label="states"
23 help="string containing valid states, e.g. 'STUDY_NAME:DOG' [REQUIRED]"/>
24 <param name="pooled_sample_name" type="text" value="pooledSample" label="pooled_sample_name"
25 help="new sample name used in new mapping file and new otu table"/>
26 </inputs>
27 <outputs>
28 <data format="txt" name="otu_outfile"/>
29 <data format="txt" name="map_outfile"/>
30 </outputs>
31 <tests>
32 </tests>
33 <help>
34
35 </help>
36 </tool>
37