Mercurial > repos > bgruening > text_processing
annotate 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 |
| rev | line source |
|---|---|
|
26
f22a309187a3
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c2b1677d1c94433f777c2dc28ac8eec0a99cc6a7
bgruening
parents:
14
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> |
| 4 | 3 <macros> |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
|
26
f22a309187a3
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c2b1677d1c94433f777c2dc28ac8eec0a99cc6a7
bgruening
parents:
14
diff
changeset
|
6 <expand macro="creator"/> |
| 4 | 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 | |
|
26
f22a309187a3
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c2b1677d1c94433f777c2dc28ac8eec0a99cc6a7
bgruening
parents:
14
diff
changeset
|
18 -o '$outfile' |
|
f22a309187a3
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c2b1677d1c94433f777c2dc28ac8eec0a99cc6a7
bgruening
parents:
14
diff
changeset
|
19 '$infile' |
| 4 | 20 ]]> |
| 0 | 21 </command> |
| 22 <inputs> | |
| 4 | 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)" /> | |
| 0 | 28 <conditional name="adv_opts"> |
| 29 <param name="adv_opts_selector" type="select" label="Advanced Options"> | |
| 4 | 30 <option value="basic" selected="True">Hide Advanced Options</option> |
| 31 <option value="advanced">Show Advanced Options</option> | |
| 0 | 32 </param> |
| 33 <when value="basic" /> | |
| 34 <when value="advanced"> | |
| 4 | 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"/> | |
| 0 | 37 </when> |
| 38 </conditional> | |
| 39 </inputs> | |
| 40 <outputs> | |
| 6 | 41 <data name="outfile" format_source="infile" metadata_source="infile"/> |
| 0 | 42 </outputs> |
| 43 <tests> | |
| 44 <test> | |
| 4 | 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"/> | |
| 0 | 52 </test> |
| 53 </tests> | |
| 54 <help> | |
| 4 | 55 <![CDATA[ |
| 0 | 56 .. class:: infomark |
| 57 | |
| 58 **Syntax** | |
| 59 | |
| 7 | 60 This tool returns all unique lines using the 'sort -u' command. It can be used with unsorted files. |
| 0 | 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:: | |
| 7 | 74 |
| 0 | 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 | |
| 4 | 91 ]]> |
| 0 | 92 </help> |
|
14
7725ab6dab67
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b'e6ee273f75fff61d1e419283fa8088528cf59470\n'
bgruening
parents:
7
diff
changeset
|
93 <expand macro="citations" /> |
| 0 | 94 </tool> |
