annotate tools/ilmn_pacbio/quake.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="quake" name="Quake" version="1.0.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>Quality-aware error correction</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 quake_wrapper.py --default_cutoff=10 --headers -k $k -f $fofnfile -p 12 > $output1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <param name="input1" format="fastq" type="data" label="Select FASTQ file to correct" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <param name="k" type="integer" value="16" label="Size of k-mers to correct" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <configfiles>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <configfile name="fofnfile">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 ${input1.file_name}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 </configfile>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 </configfiles>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 <data format="fastq" name="output1" label="Error-corrected reads from ${on_string}" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 Applies the Quake_ algorithm for quality-aware correction of
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 substitution error in short reads.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 Kelley DR, Schatz MC, Salzberg SL.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 "Quake: quality-aware detection and correction of sequencing errors."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 *Genome Biol.* 2010;11(11):R116.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 .. _Quake: http://www.cbcb.umd.edu/software/quake
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 **Parameter list**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 k
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 k-mer size for detecting spurious k-mers versus true k-mers from
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 the genome. Recommendations for choosing a value of k can be found
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 here_.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 .. _here: http://www.cbcb.umd.edu/software/quake/faq.html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 **Output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 A FASTQ file of corrected and trimmed reads.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 </tool>