Mercurial > repos > iuc > bedtools
annotate fisherBed.xml @ 26:95a3b2c25bd1 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
author | iuc |
---|---|
date | Thu, 26 Apr 2018 17:02:46 -0400 |
parents | a8eabd2838f6 |
children | 4f7a5ccd2ae9 |
rev | line source |
---|---|
19
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
17
diff
changeset
|
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 | |
11
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
13 -a '$inputA' |
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
14 -b '$inputB' |
1 | 15 -f $overlap |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
11
diff
changeset
|
16 -g @GENOME_FILE@ |
1 | 17 $reciprocal |
18 $m | |
11
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
19 > '$output' |
1 | 20 ]]> |
21 </command> | |
22 <inputs> | |
26
95a3b2c25bd1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
19
diff
changeset
|
23 <param format="@STD_BEDTOOLS_INPUTS@" name="inputA" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/> |
95a3b2c25bd1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
19
diff
changeset
|
24 <param format="@STD_BEDTOOLS_INPUTS@" name="inputB" type="data" label="@STD_BEDTOOLS_INPUT_LABEL@ file"/> |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
11
diff
changeset
|
25 <expand macro="input_conditional_genome_file" /> |
1 | 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" /> | |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
11
diff
changeset
|
40 <param name="genome_file_opts_selector" value="hist" /> |
1 | 41 <param name="genome" value="fisherBed.len" ftype="tabular" /> |
42 <output name="output" file="fisherBed_result1.bed" ftype="bed" /> | |
43 </test> | |
44 </tests> | |
45 <help> | |
46 <![CDATA[ | |
47 **What it does** | |
48 | |
49 Perform fisher’s exact test on the number of overlaps/unique intervals between 2 files. | |
50 | |
51 @REFERENCES@ | |
52 ]]> | |
53 </help> | |
54 <expand macro="citations" /> | |
55 </tool> |