Mercurial > repos > iuc > bedtools
annotate fisherBed.xml @ 4:607c0576c6ab draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
author | iuc |
---|---|
date | Wed, 27 Jan 2016 15:15:59 -0500 |
parents | 82aac94b06c3 |
children | 7308cc546a36 |
rev | line source |
---|---|
1 | 1 <tool id="bedtools_fisher" name="FisherBed" 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>calculate Fisher statistic between two feature files</description> |
1 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <command> | |
9 <![CDATA[ | |
10 bedtools fisher | |
11 $strand | |
12 $split | |
13 -a $inputA | |
14 -b $inputB | |
15 -f $overlap | |
16 -g $genome | |
17 $reciprocal | |
18 $m | |
19 > $output | |
20 ]]> | |
21 </command> | |
22 <inputs> | |
23 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/> | |
24 <param format="bed,gff,vcf,gff3" name="inputB" type="data" label="BED/VCF/GFF file"/> | |
25 <expand macro="genome" /> | |
26 <expand macro="strand2" /> | |
27 <expand macro="split" /> | |
28 <expand macro="overlap" /> | |
29 <expand macro="reciprocal" /> | |
30 <param name="m" type="boolean" checked="False" truevalue="-m" falsevalue="" | |
31 label="Merge overlapping intervals before looking at overlap" help="(-m)" /> | |
32 </inputs> | |
33 <outputs> | |
34 <data name="output" metadata_source="inputA" format_source="inputA" label="Fisher Test on ${inputA.name} and ${inputB.name}"/> | |
35 </outputs> | |
36 <tests> | |
37 <test> | |
38 <param name="inputA" value="fisherBed1.bed" ftype="bed" /> | |
39 <param name="inputB" value="fisherBed2.bed" ftype="bed" /> | |
40 <param name="genome" value="fisherBed.len" ftype="tabular" /> | |
41 <output name="output" file="fisherBed_result1.bed" ftype="bed" /> | |
42 </test> | |
43 </tests> | |
44 <help> | |
45 <![CDATA[ | |
46 **What it does** | |
47 | |
48 Perform fisher’s exact test on the number of overlaps/unique intervals between 2 files. | |
49 | |
50 @REFERENCES@ | |
51 ]]> | |
52 </help> | |
53 <expand macro="citations" /> | |
54 </tool> |