annotate groupbyBed.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_groupbybed" name="GroupByBed" 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 groupby
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 -c $cols
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -g $group
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 -o $operation
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 -i $inputA
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 &gt; $output
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 <param name="cols" type="text" value="" label="Specify the column(s) (comma separated) that should be summarized" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 <param name="group" type="text" value="1,2,3" label="Specifies which column(s) (1-based) should be used to group the input. Columns may be comma-separated with each column must be explicitly listed. Or, ranges (e.g. 1-4) are also allowed." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <param name="operation" type="select" label="Specify the operation">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 <option value="sum" selected="True">Sum - numeric only</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 <option value="stdev">Stdev - numeric only</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 <option value="sstdev">Sstdev - numeric only</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 <option value="freqasc">Freqasc - print a comma separated list of values observed and the number of times they were observed. Reported in ascending order of frequency*</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 <option value="freqdesc">Freqdesc - - print a comma separated list of values observed and the number of times they were observed. Reported in descending order of frequency*</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 <option value="first">First - numeric or text</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 <option value="last">Last - numeric or text</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28 <expand macro="math_options" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29 <expand macro="additional_math_options" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 </param>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
31 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
32 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 <data format_source="inputA" name="output" metadata_source="inputA" label=""/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36
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@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44 </tool>