view qiime2/qiime_gneiss_gradient-clustering.xml @ 9:f190567fe3f6 draft

Uploaded
author florianbegusch
date Wed, 14 Aug 2019 15:12:48 -0400
parents 51025741f326
children a0a8d77a991c
line wrap: on
line source

<?xml version="1.0" ?>
<tool id="qiime_gneiss_gradient-clustering" name="qiime gneiss gradient-clustering" version="2019.7">
	<description> - Hierarchical clustering using gradient information.</description>
	<requirements>
		<requirement type="package" version="2019.7">qiime2</requirement>
	</requirements>
	<command><![CDATA[
qiime gneiss gradient-clustering

--i-table=$itable
--m-gradient-column="$mgradientcolumn"


#if $mgradientfile:
--m-gradient-file=$mgradientfile
#end if

#if $pnoweighted:
 --p-no-weighted
#end if

--o-clustering=oclustering
;
cp oclustering.qza $oclustering
	]]></command>
	<inputs>
		<param format="qza,no_unzip.zip" label="--i-table: ARTIFACT FeatureTable[Frequency | RelativeFrequency | Composition]       The feature table containing the samples in which the columns will be clustered.                   [required]" name="itable" optional="False" type="data"/>
		<param label="--m-gradient-column: COLUMN  MetadataColumn[Numeric] Contains gradient values to sort the features and samples.                                     [required]" name="mgradientcolumn" optional="False" type="text"/>
		<param label="--p-no-weighted : Specifies if abundance or presence/absence information should be used to perform the clustering. [default: False]" name="pnoweighted" selected="False" type="boolean"/>

		<param label="--m-gradient-file: " name="mgradientfile" optional="True" type="data" format="tabular,qza,no_unzip.zip" />

	</inputs>
	<outputs>
		<data format="qza" label="${tool.name} on ${on_string}: clustering.qza" name="oclustering"/>
	</outputs>
	<help><![CDATA[
Hierarchical clustering using gradient information.
###################################################

Build a bifurcating tree that represents a hierarchical clustering of
features.  The hiearchical clustering uses Ward hierarchical clustering
based on the mean difference of gradients that each feature is observed in.
This method is primarily used to sort the table to reveal the underlying
block-like structures.

Parameters
----------
table : FeatureTable[Frequency | RelativeFrequency | Composition]
    The feature table containing the samples in which the columns will be
    clustered.
gradient : MetadataColumn[Numeric]
    Contains gradient values to sort the features and samples.
weighted : Bool, optional
    Specifies if abundance or presence/absence information should be used
    to perform the clustering.

Returns
-------
clustering : Hierarchy
    A hierarchy of feature identifiers where each tip corresponds to the
    feature identifiers in the table. This tree can contain tip ids that
    are not present in the table, but all feature ids in the table must be
    present in this tree.
	]]></help>
<macros>
    <import>qiime_citation.xml</import>
</macros>
<expand macro="qiime_citation"/>
</tool>