annotate seq_to_meme.xml @ 1:54f508fcdc40 default tip

Uploaded
author xuebing
date Sat, 31 Mar 2012 21:50:15 -0400
parents 8147a2451531
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
8147a2451531 Uploaded
xuebing
parents:
diff changeset
1 <tool id="seq2meme" name="create-motif-file">
8147a2451531 Uploaded
xuebing
parents:
diff changeset
2 <description>from fasta file</description>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">seq2meme.py $input $output $motifName $psuedocont $background </command>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
4 <inputs>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
5 <param name="input" type="data" format="txt" label="Sequence file" help="all sequences should be the same length"/>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
6 <param name="motifName" size="20" type="text" value="motif1" label="Motif name (no space allowed)"/>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
7 <param name="psuedocont" size="10" type="float" value="1.0" label="Psuedocount"/>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
8 <param name="background" size="40" type="text" value="A,0.25,C,0.25,G,0.25,T,0.25" label="Background frequency"/>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
9 </inputs>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
10 <outputs>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
11 <data format="txt" name="output" label="$motifName-meme"/>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
12 </outputs>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
13 <help>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
14
8147a2451531 Uploaded
xuebing
parents:
diff changeset
15 **Description**
8147a2451531 Uploaded
xuebing
parents:
diff changeset
16
8147a2451531 Uploaded
xuebing
parents:
diff changeset
17 Generate a MEME motif format file from a set of sequences. Input could be raw sequences (one sequence per line) or fasta format (one identifier line and one sequence line).
8147a2451531 Uploaded
xuebing
parents:
diff changeset
18
8147a2451531 Uploaded
xuebing
parents:
diff changeset
19
8147a2451531 Uploaded
xuebing
parents:
diff changeset
20 </help>
8147a2451531 Uploaded
xuebing
parents:
diff changeset
21 </tool>