view sort_rows.xml @ 6:60edf2f8c28f draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b'e6ee273f75fff61d1e419283fa8088528cf59470\n'
author bgruening
date Sat, 06 May 2017 13:09:05 -0400
parents 5314e5d6f040
children f46f0e4f75c4
line wrap: on
line source

<tool id="tp_sort_rows" name="Sort a row" version="@BASE_VERSION@.0">
    <description>according to their columns</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <command>
<![CDATA[
    python -c 'for line in ( "\t".join(sorted(line.strip().split("\t"))) for line in open("$infile") ): print line' > $outfile
]]>
    </command>
    <inputs>
        <param format="tabular" name="infile" type="data" label="Tabular file that should be sorted"/>
    </inputs>
    <outputs>
        <data name="outfile" format_source="infile" metadata_source="infile"/>
    </outputs>
    <options sanitize="False"/>
    <tests>
        <test>
            <param name="infile" value="sort_rows1.tabular" ftype="tabular" />
            <output name="outfile" file="sort_rows_results1.bed"/>
        </test>
    </tests>
    <help>
<![CDATA[
.. class:: infomark

**TIP:** If your data is not TAB delimited, use *Text Manipulation->Convert*

**What it does**

That tool sorts each row in a TAB separated file, according to their columns. In other words: It is a sorted reordering of all columns.

@REFERENCES@
]]>
    </help>
    <expand macro="citations" />
</tool>