Mercurial > repos > iuc > circos
view text-from-interval.xml @ 10:7f13dc906cb9 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit 164c36ba98fe4cd293e035efca00a9efa885a7ec"
author | iuc |
---|---|
date | Mon, 11 Oct 2021 10:09:51 +0000 |
parents | df7356989ac1 |
children | 31a35811dda6 |
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> <expand macro="requirements"> </expand> <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> <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>