comparison region-motif-compare/region_motif_compare.xml @ 17:7afdfd4f4c1b draft

Uploaded
author jeremyjliu
date Wed, 12 Nov 2014 15:21:11 -0500
parents
children
comparison
equal deleted inserted replaced
16:9a84f76db861 17:7afdfd4f4c1b
1 <tool id="region_motif_compare" name="Region Motif Count Compare">
2 <description>for comparing the motif counts in different region sets</description>
3 <requirements>
4 <requirement type="set_environment">RMOTIF_PATH</requirement>
5 </requirements>
6 <command interpreter="Rscript">
7 region_motif_compare.r --args \$RMOTIF_PATH $db_type $in_tab_1 $in_tab_2 $out_enriched $out_depleted $out_plots
8 </command>
9 <inputs>
10 <param name="in_tab_1" type="data" format="tabular" label="Region Set 1 Motif Count File"/>
11 <param name="in_tab_2" type="data" format="tabular" label="Region Set 2 Motif Count File"/>
12 <param name="db_type" type="select" label="Select Motif Database" >
13 <option value="t">Test Pouya Subset (hg19)</option>
14 <option value="p">Pouya Encode Motifs (hg19)</option>
15 <option value="j">Jaspar and Jolma Motifs (hg19)</option>
16 <option value="m">Mouse Motifs (mm9)</option>
17 <option value="c">Pouya, Jaspar, and Jolma Combined (hg19)</option>
18 </param>
19 </inputs>
20 <outputs>
21 <data name="out_enriched" format="tabular" label="Enriched Motifs"/>
22 <data name="out_depleted" format="tabular" label="Depleted Motifs"/>
23 <data name="out_plots" format="png" label="Motif Count Comparison Plots"/>
24 </outputs>
25
26 <help>
27 This tools reads in two counts file and determines enriched and depleted
28 motifs in two different region sets based on poisson calculation with
29 gc correction.
30 </help>
31
32 </tool>