annotate randomBed.xml @ 0:b8348686a0b9 draft

Imported from capsule None
author iuc
date Tue, 04 Nov 2014 01:45:04 -0500
parents
children 82aac94b06c3
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>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
9 bedtools random
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 -g $genome
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -l $length
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 -n $intervals
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 #if $seed.choose:
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 -seed $seed.seed
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 #end if
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 <expand macro="genome" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 <param name="length" type="integer" value="100" label="The length of the intervals to generate." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <param name="intervals" type="integer" value="1000000" label="The number of intervals to generate." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 <expand macro="seed" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 <data format="bed" name="output" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 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
31
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
32 @REFERENCES@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 </tool>