Mercurial > repos > bgruening > text_processing
annotate tail.xml @ 27:08cdbfffce67 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 2dc2df988bd2dde9f8d7f629b594186dbd4fdc2b
author | bgruening |
---|---|
date | Fri, 07 Mar 2025 20:43:41 +0000 |
parents | f22a309187a3 |
children |
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_tail_tool" name="Select last" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
0 | 2 <description>lines from a dataset (tail)</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>tail --version | head -n 1</version_command> | |
0 | 9 <command> |
4 | 10 <![CDATA[ |
11 tail | |
12 --lines $complement$num_lines | |
13 '$infile' | |
14 > '$outfile' | |
15 ]]> | |
0 | 16 </command> |
17 <inputs> | |
4 | 18 <param name="infile" format="txt" type="data" label="Text file" /> |
19 <param name="complement" type="select" label="Operation"> | |
20 <option value="">Keep last lines</option> | |
21 <option value="+">Keep everything from this line on</option> | |
22 </param> | |
10
c78b1767db2b
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 10052765d6b712cf7d38356af4251fcc38a339b6-dirty
bgruening
parents:
7
diff
changeset
|
23 <param name="num_lines" type="integer" value="10" |
4 | 24 label="Number of lines" help="These will be kept (depending on 'operation'). (--lines)" /> |
0 | 25 </inputs> |
26 <outputs> | |
6 | 27 <data name="outfile" format_source="infile" metadata_source="infile" /> |
0 | 28 </outputs> |
1 | 29 <tests> |
30 <test> | |
31 <param name="infile" value="1.bed"/> | |
4 | 32 <param name="num_lines" value="10"/> |
33 <output name="outfile" file="tail_results1.bed"/> | |
34 </test> | |
35 <test> | |
36 <param name="infile" value="1.bed"/> | |
37 <param name="num_lines" value="10"/> | |
38 <param name="complement" value="+"/> | |
39 <output name="outfile" file="tail_results2.bed"/> | |
1 | 40 </test> |
41 </tests> | |
0 | 42 <help> |
4 | 43 <![CDATA[ |
0 | 44 **What it does** |
45 | |
1 | 46 This tool outputs specified number of lines from the **end** of a dataset |
47 | |
48 ----- | |
49 | |
50 **Example** | |
51 | |
52 - Input File:: | |
53 | |
54 chr7 57134 57154 D17003_CTCF_R7 356 - | |
55 chr7 57247 57267 D17003_CTCF_R4 207 + | |
56 chr7 57314 57334 D17003_CTCF_R5 269 + | |
57 chr7 57341 57361 D17003_CTCF_R7 375 + | |
58 chr7 57457 57477 D17003_CTCF_R3 188 + | |
59 | |
60 - Show last two lines of above file. The result is:: | |
61 | |
62 chr7 57341 57361 D17003_CTCF_R7 375 + | |
63 chr7 57457 57477 D17003_CTCF_R3 188 + | |
0 | 64 |
4 | 65 ]]> |
0 | 66 </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:
10
diff
changeset
|
67 <expand macro="citations" /> |
0 | 68 </tool> |