view visualization.xml @ 3:2b80a2596064 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz commit 8007f71281553ddfa45e6f8e1172952d956bb000"
author iuc
date Thu, 11 Jun 2020 07:18:17 -0400
parents 704c401e0afb
children
line wrap: on
line source

<tool id="heinz_visualization" name="Visualize" version="0.1.1">
    <description>the optimal scoring subnetwork</description>
    <requirements>
        <requirement type="package" version="2.42.3">graphviz</requirement>
        <requirement type="package" version="0.4.10">py-graphviz</requirement>
        <requirement type="package" version="1">fonts-conda-ecosystem</requirement>
    </requirements>
    <command detect_errors="aggressive"><![CDATA[
python '$__tool_directory__/visualization.py' -i '$subnetwork' -o $visualization
    ]]></command>
    <inputs>
        <param type="data" name="subnetwork" format="txt" label="Heinz output file"
        help='Output file of the tool "Identify optimal scoring subnetwork"'/>
    </inputs>
    <outputs>
        <data name="visualization" format="pdf" label="${tool.name} on ${on_string}: Heinz visualization" />
    </outputs>
    <tests>
      <test>
        <param name="subnetwork" value="Heinz_output.txt" />
        <output name="visualization" file="heinz_graph.pdf" compare="sim_size" delta="10000" />
      </test>
    </tests>
    <help><![CDATA[
This tool provides a simple visualisation of the raw output of the Heinz Galaxy tool
and saves the output as PDF.

Heinz output file: output file of the tool "Identify optimal scoring subnetwork".
    ]]></help>
    <citations>
        <citation type="doi">10.1093/bioinformatics/btn161</citation>
        <citation type="doi">10.1093/bioinformatics/btg148</citation>
    </citations>
</tool>