view region_motif_intersect.xml @ 9:0c1627c2f09d draft

Uploaded
author jeremyjliu
date Sat, 25 Oct 2014 15:16:56 -0400
parents d281fed8ec61
children ef85d5e787d7
line wrap: on
line source

<tool id="region_motif_intersect" name="Region Motif Intersect">
  <description>for computing the motifs that lie inside a region set</description>
  <requirements>
    <requirement type="set_environment">R_SCRIPT_PATH</requirement>
    <requirement type="package" version="2.15.1">R</requirement>
  </requirements>
  <command interpreter="Rscript">
    region_motif_intersect.r --args $R_SCRIPT_PATH $db_type $in_bed $out_tab
  </command>
  <inputs>
    <param name="in_bed" type="data" format="bed" label="Input BED File" />
    <param name="db_type" type="select" label="Select Motif Database" >
      <option value="t">Test Pouya Subset (hg19)</option>
      <option value="p">Pouya Encode Motifs (hg19)</option>
      <option value="j">Jaspar and Jolma Motifs (hg19)</option>
      <option value="m">Mouse Motifs (mm9)</option>
    </param>
  </inputs>
  <outputs>
    <data name="out_tab" format="tabular" />
  </outputs>

  <help>
    This tool computes the motifs and the number of motifs that intersect
    any region in a input set of regions.
  </help>
 
</tool>