annotate region_motif_compare.xml @ 9:0c1627c2f09d draft

Uploaded
author jeremyjliu
date Sat, 25 Oct 2014 15:16:56 -0400
parents 19d2cffb8db3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
1 <tool id="region_motif_compare" name="Region Motif Count Compare">
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
2 <description>for comparing the motif counts in different region sets</description>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
3 <command interpreter="bash">
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
4 /usr/bin/R --slave --vanilla -f $GALAXY_ROOT_DIR/tools/my_tools/region_motif_compare.r --args $GALAXY_ROOT_DIR $db_type $in_tab_1 $in_tab_2 $out_enriched $out_depleted $out_plots
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
5 </command>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
6 <inputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
7 <param name="in_tab_1" type="data" format="tabular" label="Region Set 1 Motif Count File"/>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
8 <param name="in_tab_2" type="data" format="tabular" label="Region Set 2 Motif Count File"/>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
9 <param name="db_type" type="select" label="Select Motif Database" >
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
10 <option value="t">Test Pouya Subset (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
11 <option value="p">Pouya Encode Motifs (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
12 <option value="j">Jaspar and Jolma Motifs (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
13 <option value="m">Mouse Motifs (mm9)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
14 <option value="c">Pouya, Jaspar, and Jolma Combined (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
15 </param>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
16 </inputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
17 <outputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
18 <data name="out_enriched" format="tabular" label="Enriched Motifs"/>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
19 <data name="out_depleted" format="tabular" label="Depleted Motifs"/>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
20 <data name="out_plots" format="png" label="Motif Count Comparison Plots"/>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
21 </outputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
22
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
23 <help>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
24 This tools reads in two counts file and determines enriched and depleted
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
25 motifs in two different region sets based on poisson calculation with
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
26 gc correction.
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
27 </help>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
28
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
29 </tool>