view tools/consensus_clustering/consensus_clustering.xml @ 0:6a73638d707c draft

Initial Upload
author matnguyen
date Fri, 16 Nov 2018 15:28:27 -0500
parents
children
line wrap: on
line source

<tool id="consensus_clustering" name="PathOGiST - Consensus Clustering" version="1.0.0">
    <description>: Performs consensus clustering on multiple clusterings</description>
    <requirements>
        <requirement type="package" version="0.0.1">pathogist</requirement>
    </requirements>

    <command><![CDATA[
        PATHOGIST consensus $constraints $distances $clusterings $fine_clusterings cc.tsv
    ]]></command>

    <inputs>
        <param name="distances" type="data" format="tabular,txt" label="Distance Matrices"
               help="File contains paths to distance matrices for different clusterings"/>
        <param name="clusterings" type="data" format="tabular,txt" label="Clusterings"
               help="File contains paths to clusterings (matrices or lists of clustering assignments)"/>
        <param name="fine_clusterings" type="data" format="tabular,txt" label="Fine Clusterings"
               help="File contains names of the clusterings which are the finest"/>
        <param name="constraints" type="boolean" checked="false" truevalue="--all_constraints" falsevalue=""
               label="All constraints"
               help="Add all constraints to the optimization problem, not just those with mixed signs"/>
    </inputs>

    <outputs>
        <data name="clustering" label="Consensus clustering on ${on_string}" format="tabular" from_work_dir="cc.tsv"/>
    </outputs>

    <help>

    </help>

    <citations>

    </citations>
</tool>