annotate region_motif_intersect.xml @ 0:19d2cffb8db3 draft

Initial upload
author jeremyjliu
date Wed, 06 Aug 2014 15:36:46 -0400
parents
children 5d9014614d28
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_intersect" name="Region Motif Intersect">
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
2 <description>for computing the motifs that lie inside a region set</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_intersect.r --args $GALAXY_ROOT_DIR $db_type $in_bed $out_tab
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_bed" type="data" format="bed" label="Input BED File" />
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
8 <param name="db_type" type="select" label="Select Motif Database" >
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
9 <option value="t">Test Pouya Subset (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
10 <option value="p">Pouya Encode Motifs (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
11 <option value="j">Jaspar and Jolma Motifs (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
12 <option value="m">Mouse Motifs (mm9)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
13 </param>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
14 </inputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
15 <outputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
16 <data name="out_tab" format="tabular" />
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
17 </outputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
18
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
19 <help>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
20 This tool computes the motifs and the number of motifs that intersect
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
21 any region in a input set of regions.
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
22 </help>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
23
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
24 </tool>