view 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
line wrap: on
line source

<tool id="pool_by_metadata" name="pool_by_metadata" version="1.2.0">
 <description>pool samples in OTU table and mapping file based on sample metadata from mapping file</description>
 <requirements>
  <requirement type="binary">pool_by_metadata.py</requirement>
 </requirements>
 <command interpreter="python">
  qiime_wrapper.py
  --galaxy_tmpdir='$__new_file_path__'
  pool_by_metadata.py
  --otu_table_fp=$otu_table_fp
  --map=$map
  --states=$states
  --otu_outfile=$otu_outfile
  --map_outfile=$map_outfile
  --pooled_sample_name=$pooled_sample_name
 </command>
 <inputs>
  <param name="otu_table_fp" type="data" format="txt" label="otu_table_fp"
   help="path to the input OTU table (i.e., the output from make_otu_table.py) [REQUIRED]"/>
  <param name="map" type="data" format="tabular" label="map"
   help="path to the map file [REQUIRED]"/>
  <param name="states" type="text"  label="states"
   help="string containing valid states, e.g. 'STUDY_NAME:DOG' [REQUIRED]"/>
  <param name="pooled_sample_name" type="text" value="pooledSample" label="pooled_sample_name"
   help="new sample name used in new mapping file and new otu table"/>
 </inputs>
 <outputs>
  <data format="txt" name="otu_outfile"/>
  <data format="txt" name="map_outfile"/>
 </outputs>
 <tests>
 </tests>
 <help>
  
 </help>
</tool>