comparison convert_characters.xml @ 1:847d5c804ec4 draft

Uploaded
author julius
date Wed, 01 Aug 2012 07:36:34 -0400
parents
children
comparison
equal deleted inserted replaced
0:01dc4b951cbd 1:847d5c804ec4
1 <tool id="Convert characters1" name="Convert" version="1.1.0">
2 <description>delimiters to TAB</description>
3 <command interpreter="python">convert_characters.py $input $convert_from $out_file1</command>
4 <inputs>
5 <param name="convert_from" type="select" label="Convert all">
6 <option value="s">Whitespaces</option>
7 <option value="T">Tabs</option>
8 <!--<option value="Sp">Spaces</option>-->
9 <option value="Dt">Dots</option>
10 <option value="C">Commas</option>
11 <option value="D">Dashes</option>
12 <option value="U">Underscores</option>
13 <option value="P">Pipes</option>
14 </param>
15 <param format="txt" name="input" type="data" label="in Query"/>
16 </inputs>
17 <outputs>
18 <data format="tabular" name="out_file1" />
19 </outputs>
20 <tests>
21 <test>
22 <param name="convert_from" value="s"/>
23 <param name="input" value="1.bed"/>
24 <output name="out_file1" file="eq-convert.dat"/>
25 </test>
26 <test>
27 <param name="convert_from" value="s"/>
28 <param name="input" value="a.txt"/>
29 <output name="out_file1" file="a.tab"/>
30 </test>
31 </tests>
32 <help>
33
34 **What it does**
35
36 Converts all delimiters of a specified type into TABs. Consecutive characters are condensed. For example, if columns are separated by 5 spaces they will converted into 1 tab.
37
38 -----
39
40 **Example**
41
42 - Input file::
43
44 chrX||151283558|151283724|NM_000808_exon_8_0_chrX_151283559_r|0|-
45 chrX|151370273|151370486|NM_000808_exon_9_0_chrX_151370274_r|0|-
46 chrX|151559494|151559583|NM_018558_exon_1_0_chrX_151559495_f|0|+
47 chrX|151564643|151564711|NM_018558_exon_2_0_chrX_151564644_f||||0|+
48
49 - Converting all pipe delimiters of the above file to TABs will get::
50
51 chrX 151283558 151283724 NM_000808_exon_8_0_chrX_151283559_r 0 -
52 chrX 151370273 151370486 NM_000808_exon_9_0_chrX_151370274_r 0 -
53 chrX 151559494 151559583 NM_018558_exon_1_0_chrX_151559495_f 0 +
54 chrX 151564643 151564711 NM_018558_exon_2_0_chrX_151564644_f 0 +
55
56 </help>
57 </tool>