Mercurial > repos > azuzolo > qiime1_3_0
view qiime/principal_coordinates.xml @ 0:9e12a0762f87 draft
Uploaded
author | azuzolo |
---|---|
date | Wed, 06 Jun 2012 14:49:49 -0400 |
parents | |
children |
line wrap: on
line source
<tool id="principal_coordinates" name="principal_coordinates" version="1.2.0"> <description>Principal Coordinates Analysis (PCoA)</description> <requirements> <requirement type="binary">principal_coordinates.py</requirement> </requirements> <command interpreter="python"> qiime_wrapper.py #if $run_type.input_type.__str__ == 'multi': --galaxy_new_datasets='^\S+\.txt$:txt' --galaxy_new_files_path='$__new_file_path__' --galaxy_datasetid=$output_path.id --galaxy_logfile=$logfile #end if principal_coordinates.py #if $run_type.input_type.__str__ == "multi": --input_path=$input_path.extra_files_path --output_path='$__new_file_path__' #else: --input_path=$input_path --output_path=$output_path #end if </command> <inputs> <conditional name="run_type"> <param name="input_type" type="select" label="Input Type" help="Select the type/number of input file(s). If you want to process multiple diversity metrics, select 'multiple files.'"> <option value="single">Single File</option> <option value="multi">Multiple Files</option> </param> <when value="single"> <param name="input_path" type="data" format="qiimedistmat" label="input_path" help="path to the input distance matrix file (i.e., the output from beta_diversity.py). [REQUIRED]"/> </when> <when value="multi"> <param name="input_path" type="data" format="qiimedistmat" label="input_path" help="Path to the first distance matrix file of the metrics run. Example: if you ran beta diversity for both 1: unweighted and 2: weighted unifrac, choose the unweighted file. [REQUIRED]"/> </when> </conditional> </inputs> <outputs> <data format="txt" name="logfile" label="${tool.name} on ${on_string}: log"/> <data format="qiimepca" name="output_path" label="${tool.name} on ${on_string}: coordinates"/> </outputs> <tests> </tests> <help>For more information, see principle_coordinates_ in the Qiime documentation. Updated and validated 01/18/12 .. _principle_coordinates: http://qiime.org/scripts/principal_coordinates.html</help> </tool>