Mercurial > repos > iuc > bedtools
annotate fisherBed.xml @ 17:a2d4c30ba2f9 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
| author | iuc |
|---|---|
| date | Sun, 21 Jun 2015 22:49:46 -0400 |
| parents | 315929597efb |
| children | c0fbce5dc84a |
| rev | line source |
|---|---|
| 4 | 1 <tool id="bedtools_fisher" name="FisherBed" version="@WRAPPER_VERSION@.0"> |
|
17
a2d4c30ba2f9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
iuc
parents:
4
diff
changeset
|
2 <description>calculate Fisher statistic between two feature files</description> |
| 4 | 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> |
