annotate randomBed.xml @ 1:82aac94b06c3 draft

Uploaded
author iuc
date Thu, 08 Jan 2015 14:25:51 -0500
parents b8348686a0b9
children 457b09031d57
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_randombed" name="RandomBed" version="@WRAPPER_VERSION@.0">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
2 <description></description>
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 random
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -g $genome
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 -l $length
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 -n $intervals
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
14 #if $seed.seed_choose:
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
15 -seed $seed.seed
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 #end if
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
17 > "$output"
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
18 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 <expand macro="genome" />
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
22 <param name="length" type="integer" value="100" label="The length of the intervals to generate" help="(-l)" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
23 <param name="intervals" type="integer" value="1000000" label="The number of intervals to generate" help="(-n)" />
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 <expand macro="seed" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 <data format="bed" name="output" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28 </outputs>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
29 <tests>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
30 <test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
31 <param name="genome" value="mm9_chr1.len" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
32 <param name="seed_choose" value="True" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
33 <param name="seed" value="1" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
34 <param name="length" value="5" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
35 <param name="intervals" value="3" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
36 <output name="output" file="randomBed_result1.bed" ftype="bed" />
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
37 </test>
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
38 </tests>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39 <help>
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
40 <![CDATA[
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
41 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 bedtools random will generate a random set of intervals in BED6 format. One can specify both the number (-n) and the size (-l) of the intervals that should be generated.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
45 @REFERENCES@
1
82aac94b06c3 Uploaded
iuc
parents: 0
diff changeset
46 ]]>
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
47 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
48 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
49 </tool>