view text-from-interval.xml @ 11:31a35811dda6 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit b9ec351920dbc83fa14bd1f8cfdd0a6a19b89473"
author iuc
date Tue, 16 Nov 2021 09:20:08 +0000
parents df7356989ac1
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="circos_interval_to_text" name="Circos: Interval to Circos Text Labels" version="@WRAPPER_VERSION@">
    <description>reformats interval files to prepare for Circos text labels</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <edam_topics>
        <edam_topic>topic_0797</edam_topic>
        <edam_topic>topic_0092</edam_topic>
    </edam_topics>
    <edam_operations>
        <edam_operation>operation_3434</edam_operation>
    </edam_operations>
    <expand macro="requirements"/>
    <command detect_errors="exit_code"><![CDATA[
python
#if $ref.ref_source == 'gff3':
    '$__tool_directory__/text-from-gff3.py' '$input' '${ref.attr}'
#else
    '$__tool_directory__/text-from-bed.py' '$input'
#end if
> '$output'
    ]]></command>
    <inputs>
        <conditional name="ref">
            <param name="ref_source" type="select" label="Data Format">
                <option value="bed" selected="true">BED6+</option>
                <option value="gff3">GFF3</option>
            </param>
            <when value="bed">
                <param name="input" type="data" format="bed" label="BED File (BED6+ only)" />
            </when>
            <when value="gff3">
                <param name="input" type="data" format="gff3" label="GFF3 File" />
                <param name="attr" type="text" label="GFF3 Attribute to pull value from" />
            </when>
        </conditional>
    </inputs>
    <outputs>
        <data name="output" format="tabular" />
    </outputs>
    <tests>
        <test>
            <conditional name="ref">
                <param name="ref_source" value="bed" />
                <param name="input" value="text/1.bed" ftype="bed" />
            </conditional>
            <output name="output" file="text/1.out" ftype="tabular" />
        </test>
        <test>
            <conditional name="ref">
                <param name="ref_source" value="gff3" />
                <param name="input" value="text/2.gff3" ftype="gff3" />
                <param name="attr" value="Name" />
            </conditional>
            <output name="output" file="text/2.out" ftype="tabular" />
        </test>
    </tests>
    <help><![CDATA[
Converts standard BED6+ and GFF3 files into a format appropriate for Circos data tracks, especially text tracks.

BED3 files cannot be used as they lack the name field.
    ]]></help>
    <expand macro="citations" />
</tool>