annotate tools/mytools/dreme.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="dreme" name="DREME">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>short motif discovery</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">/Users/xuebing/bin/dreme.py -p $input -png -e $ethresh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 #if $background_select.bg_select == "fromfile":
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 -n "${bgfile}"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 &amp;&amp; mv dreme_out/dreme.html ${html_outfile}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 &amp;&amp; mv dreme_out/dreme.txt ${txt_outfile}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 &amp;&amp; mv dreme_out/dreme.xml ${xml_outfile}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 &amp;&amp; rm -rf dreme_out
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <param name="input" type="data" format="fasta" label="Sequence file (FASTA)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 <conditional name="background_select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <param name="bg_select" type="select" label="Background sequence" >
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <option value="shuffle" selected="true">shuffle the orignal sequence</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <option value="fromfile">load from file</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <when value="fromfile">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <param name="bgfile" type="data" format="fasta" label="Background sequence file (FASTA)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 <param name="ethresh" size="10" type="float" value="0.05" label="E-value threshold"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <data format="xml" name="xml_outfile" label="${tool.name} on ${on_string} (xml)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <data format="txt" name="txt_outfile" label="${tool.name} on ${on_string} (motif)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 <data format="html" name="html_outfile" label="${tool.name} on ${on_string} (html)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 http://meme.sdsc.edu/meme/doc/dreme.html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 DREME (Discriminative Regular Expression Motif Elicitation) finds relatively short motifs (up to 8 bases) fast, and can perform discriminative motif discovery if given a negative set, consisting of sequences unlikely to contain a motif of interest that is however likely to be found in the main ("positive") sequence set. If you do not provide a negative set the program shuffles the positive set to provide a background (in the role of the negative set).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 The input to DREME is one or two sets of DNA sequences. The program uses a Fisher Exact Test to determine significance of each motif found in the postive set as compared with its representation in the negative set, using a significance threshold that may be set on the command line.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 DREME achieves its high speed by restricting its search to regular expressions based on the IUPAC alphabet representing bases and ambiguous characters, and by using a heuristic estimate of generalised motifs' statistical significance.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 </tool>