annotate expandBed.xml @ 8:0232cdab3664 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9555dac6cbff70048b682a6514c7fbb2b7fbb975
author iuc
date Mon, 05 Sep 2016 15:27:58 -0400
parents 607c0576c6ab
children 95a3b2c25bd1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
1 <tool id="bedtools_expandbed" name="ExpandBed" version="@WRAPPER_VERSION@.0">
4
607c0576c6ab planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents: 1
diff changeset
2 <description>replicate lines based on lists of values in columns</description>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
4 <import>macros.xml</import>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
8 <command>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
9 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 bedtools expand
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
11 -c "${cols}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
12 -i "${input}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
13 > "${output}"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
14 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 <inputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
17 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
18 <expand macro="choose_columns" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
21 <data name="output" metadata_source="input" format_source="input" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 </outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
23 <tests>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
24 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
25 <param name="input" value="expandBed1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
26 <param name="cols" value="5"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
27 <output name="output" file="expandBed_result1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
28 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
29 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
30 <param name="input" value="expandBed1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
31 <param name="cols" value="4,5"/>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
32 <output name="output" file="expandBed_result2.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
33 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
34 </tests>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 <help>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
36 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
38
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39 Replicate lines in a file based on columns of comma-separated values.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
40
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
41 @REFERENCES@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
42 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
45 </tool>