annotate region_motif_intersect.xml @ 2:5d9014614d28 draft

Uploaded
author jeremyjliu
date Fri, 17 Oct 2014 13:41:26 -0400
parents 19d2cffb8db3
children d281fed8ec61
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>
2
5d9014614d28 Uploaded
jeremyjliu
parents: 0
diff changeset
3 <requirements>
5d9014614d28 Uploaded
jeremyjliu
parents: 0
diff changeset
4 <requirement type="set_environment">MOTIF_DB_PATH</requirement>
5d9014614d28 Uploaded
jeremyjliu
parents: 0
diff changeset
5 </requirements>
5d9014614d28 Uploaded
jeremyjliu
parents: 0
diff changeset
6 <command interpreter="Rscript">
5d9014614d28 Uploaded
jeremyjliu
parents: 0
diff changeset
7 region_motif_intersect.r --args $MOTIF_DB_PATH $db_type $in_bed $out_tab
0
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
8 </command>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
9 <inputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
10 <param name="in_bed" type="data" format="bed" label="Input BED File" />
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
11 <param name="db_type" type="select" label="Select Motif Database" >
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
12 <option value="t">Test Pouya Subset (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
13 <option value="p">Pouya Encode Motifs (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
14 <option value="j">Jaspar and Jolma Motifs (hg19)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
15 <option value="m">Mouse Motifs (mm9)</option>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
16 </param>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
17 </inputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
18 <outputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
19 <data name="out_tab" format="tabular" />
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
20 </outputs>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
21
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
22 <help>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
23 This tool computes the motifs and the number of motifs that intersect
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
24 any region in a input set of regions.
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
25 </help>
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
26
19d2cffb8db3 Initial upload
jeremyjliu
parents:
diff changeset
27 </tool>