annotate fimo.xml @ 0:503f7469fcab default tip

Uploaded
author xuebing
date Sat, 31 Mar 2012 21:39:36 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
503f7469fcab Uploaded
xuebing
parents:
diff changeset
1 <tool id="fimo" name="FIMO">
503f7469fcab Uploaded
xuebing
parents:
diff changeset
2 <description>motif search</description>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
3 <command> fimo
503f7469fcab Uploaded
xuebing
parents:
diff changeset
4 #if $background_select.bg_select == "fromfile":
503f7469fcab Uploaded
xuebing
parents:
diff changeset
5 -bgfile $bgfile
503f7469fcab Uploaded
xuebing
parents:
diff changeset
6 #end if
503f7469fcab Uploaded
xuebing
parents:
diff changeset
7
503f7469fcab Uploaded
xuebing
parents:
diff changeset
8 $norc --max-stored-scores 5000000 --output-pthresh $pth --verbosity 1 $motif $database
503f7469fcab Uploaded
xuebing
parents:
diff changeset
9 &amp;&amp; mv fimo_out/fimo.html ${html_outfile}
503f7469fcab Uploaded
xuebing
parents:
diff changeset
10
503f7469fcab Uploaded
xuebing
parents:
diff changeset
11 &amp;&amp; mv fimo_out/fimo.txt ${txt_outfile}
503f7469fcab Uploaded
xuebing
parents:
diff changeset
12
503f7469fcab Uploaded
xuebing
parents:
diff changeset
13 &amp;&amp; rm -rf fimo_out
503f7469fcab Uploaded
xuebing
parents:
diff changeset
14
503f7469fcab Uploaded
xuebing
parents:
diff changeset
15 </command>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
16 <inputs>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
17
503f7469fcab Uploaded
xuebing
parents:
diff changeset
18 <param name="motif" type="data" format="txt" label="Motif file" help="created using the tool create-motif-file, or import from Shared Data"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
19 <param name="database" type="data" format="fasta" label="Sequence file (FASTA)"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
20
503f7469fcab Uploaded
xuebing
parents:
diff changeset
21 <conditional name="background_select">
503f7469fcab Uploaded
xuebing
parents:
diff changeset
22 <param name="bg_select" type="select" label="Background model" >
503f7469fcab Uploaded
xuebing
parents:
diff changeset
23 <option value="uniform" selected="true">uniform</option>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
24 <option value="fromfile">load from file</option>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
25 </param>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
26 <when value="fromfile">
503f7469fcab Uploaded
xuebing
parents:
diff changeset
27 <param name="bgfile" type="data" format="txt" label="File for background model"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
28 </when>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
29 </conditional>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
30
503f7469fcab Uploaded
xuebing
parents:
diff changeset
31 <param name="pth" size="10" type="float" value="0.0001" label="p-value threshold"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
32 <param name="norc" label="Do not score the reverse complement DNA strand. Both strands are scored by default" type="boolean" truevalue="-norc" falsevalue="" checked="False"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
33 </inputs>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
34 <outputs>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
35 <data format="html" name="html_outfile" label="${tool.name} on ${on_string} (html)"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
36 <data format="txt" name="txt_outfile" label="${tool.name} on ${on_string} (txt)"/>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
37 </outputs>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
38 <help>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
39
503f7469fcab Uploaded
xuebing
parents:
diff changeset
40 **What it does**
503f7469fcab Uploaded
xuebing
parents:
diff changeset
41
503f7469fcab Uploaded
xuebing
parents:
diff changeset
42 This tool uses FIMO to find matches of a motif in a fasta file. See more details:
503f7469fcab Uploaded
xuebing
parents:
diff changeset
43
503f7469fcab Uploaded
xuebing
parents:
diff changeset
44 http://meme.sdsc.edu/meme/fimo-intro.html
503f7469fcab Uploaded
xuebing
parents:
diff changeset
45
503f7469fcab Uploaded
xuebing
parents:
diff changeset
46 </help>
503f7469fcab Uploaded
xuebing
parents:
diff changeset
47 </tool>