comparison unsorted_uniq.xml @ 26:f22a309187a3 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c2b1677d1c94433f777c2dc28ac8eec0a99cc6a7
author bgruening
date Fri, 16 Aug 2024 10:41:17 +0000
parents 7725ab6dab67
children 08cdbfffce67
comparison
equal deleted inserted replaced
25:cd83b5644eab 26:f22a309187a3
1 <tool id="tp_sorted_uniq" name="Unique" version="@BASE_VERSION@.0"> 1 <tool id="tp_sorted_uniq" name="Unique" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
2 <description>occurrences of each record</description> 2 <description>occurrences of each record</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="creator"/>
6 <expand macro="requirements" /> 7 <expand macro="requirements" />
7 <version_command>sort --version | head -n 1</version_command> 8 <version_command>sort --version | head -n 1</version_command>
8 <command> 9 <command>
9 <![CDATA[ 10 <![CDATA[
10 sort -u 11 sort -u
12 $is_numeric 13 $is_numeric
13 -t ' ' 14 -t ' '
14 #if $adv_opts.adv_opts_selector == "advanced": 15 #if $adv_opts.adv_opts_selector == "advanced":
15 -k$adv_opts.column_start,$adv_opts.column_end 16 -k$adv_opts.column_start,$adv_opts.column_end
16 #end if 17 #end if
17 -o "$outfile" 18 -o '$outfile'
18 "$infile" 19 '$infile'
19 ]]> 20 ]]>
20 </command> 21 </command>
21 <inputs> 22 <inputs>
22 <param name="infile" type="data" format="tabular" label="File to scan for unique values" /> 23 <param name="infile" type="data" format="tabular" label="File to scan for unique values" />
23 <param name="ignore_case" type="boolean" truevalue="-f" falsevalue="" checked="False" 24 <param name="ignore_case" type="boolean" truevalue="-f" falsevalue="" checked="False"
85 chr1 105 200 gene2 86 chr1 105 200 gene2
86 chr2 10 100 gene4 87 chr2 10 100 gene4
87 chr2 1000 1900 gene5 88 chr2 1000 1900 gene5
88 chr3 15 1656 gene6 89 chr3 15 1656 gene6
89 90
90 @REFERENCES@
91 ]]> 91 ]]>
92 </help> 92 </help>
93 <expand macro="citations" /> 93 <expand macro="citations" />
94 </tool> 94 </tool>