Mercurial > repos > bgruening > text_processing
annotate unsorted_uniq.xml @ 20:fbf99087e067 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c4f50d1ee81c1618344ede1f04a46a28d8068bcc
author | bgruening |
---|---|
date | Thu, 28 Mar 2024 13:20:16 +0000 |
parents | 12615d397df7 |
children |
rev | line source |
---|---|
19
12615d397df7
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 70980e329cd9fa78e74bf14a76fd4ded9bd2b91f
bgruening
parents:
6
diff
changeset
|
1 <tool id="tp_sorted_uniq" name="Unique" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
0 | 2 <description>occurrences of each record</description> |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
19
12615d397df7
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 70980e329cd9fa78e74bf14a76fd4ded9bd2b91f
bgruening
parents:
6
diff
changeset
|
6 <expand macro="creator"/> |
0 | 7 <expand macro="requirements" /> |
8 <version_command>sort --version | head -n 1</version_command> | |
9 <command> | |
10 <![CDATA[ | |
11 sort -u | |
12 $ignore_case | |
13 $is_numeric | |
14 -t ' ' | |
15 #if $adv_opts.adv_opts_selector == "advanced": | |
16 -k$adv_opts.column_start,$adv_opts.column_end | |
17 #end if | |
19
12615d397df7
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 70980e329cd9fa78e74bf14a76fd4ded9bd2b91f
bgruening
parents:
6
diff
changeset
|
18 -o '$outfile' |
12615d397df7
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 70980e329cd9fa78e74bf14a76fd4ded9bd2b91f
bgruening
parents:
6
diff
changeset
|
19 '$infile' |
0 | 20 ]]> |
21 </command> | |
22 <inputs> | |
23 <param name="infile" type="data" format="tabular" label="File to scan for unique values" /> | |
24 <param name="ignore_case" type="boolean" truevalue="-f" falsevalue="" checked="False" | |
25 label="Ignore differences in case when comparing" help="(-f)"/> | |
26 <param name="is_numeric" type="boolean" truevalue="-n" falsevalue="" checked="False" | |
27 label="Column only contains numeric values" help="(-n)" /> | |
28 <conditional name="adv_opts"> | |
29 <param name="adv_opts_selector" type="select" label="Advanced Options"> | |
30 <option value="basic" selected="True">Hide Advanced Options</option> | |
31 <option value="advanced">Show Advanced Options</option> | |
32 </param> | |
33 <when value="basic" /> | |
34 <when value="advanced"> | |
35 <param name="column_start" type="data_column" data_ref="infile" label="Column start" help="Unique on specific column range"/> | |
36 <param name="column_end" type="data_column" data_ref="infile" label="Column end" help="Unique on specific column range"/> | |
37 </when> | |
38 </conditional> | |
39 </inputs> | |
40 <outputs> | |
41 <data name="outfile" format_source="infile" metadata_source="infile"/> | |
42 </outputs> | |
43 <tests> | |
44 <test> | |
45 <param name="infile" value="1.bed"/> | |
46 <param name="is_numeric" value="True"/> | |
47 <param name="ignore_case" value="True"/> | |
48 <param name="adv_opts_selector" value="advanced"/> | |
49 <param name="column_start" value="2"/> | |
50 <param name="column_end" value="3"/> | |
51 <output name="outfile" file="unique_results1.bed"/> | |
52 </test> | |
53 </tests> | |
54 <help> | |
55 <![CDATA[ | |
56 .. class:: infomark | |
57 | |
58 **Syntax** | |
59 | |
60 This tool returns all unique lines using the 'sort -u' command. It can be used with unsorted files. | |
61 If you need additional options, like grouping or counting your unique results, please use the 'Unique lines from sorted file' tool. | |
62 | |
63 ----- | |
64 | |
65 .. class:: infomark | |
66 | |
67 The input file needs to be tab separated. Please convert your file if necessary. | |
68 | |
69 ----- | |
70 | |
71 **Example** | |
72 | |
73 - Input file:: | |
74 | |
75 chr1 10 100 gene1 | |
76 chr1 105 200 gene2 | |
77 chr1 10 100 gene1 | |
78 chr2 10 100 gene4 | |
79 chr2 1000 1900 gene5 | |
80 chr3 15 1656 gene6 | |
81 chr2 10 100 gene4 | |
82 | |
83 - Unique lines will result in:: | |
84 | |
85 chr1 10 100 gene1 | |
86 chr1 105 200 gene2 | |
87 chr2 10 100 gene4 | |
88 chr2 1000 1900 gene5 | |
89 chr3 15 1656 gene6 | |
90 | |
91 ]]> | |
92 </help> | |
6
60edf2f8c28f
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b'e6ee273f75fff61d1e419283fa8088528cf59470\n'
bgruening
parents:
0
diff
changeset
|
93 <expand macro="citations" /> |
0 | 94 </tool> |