annotate tools/ilmn_pacbio/quake_pe.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_pe" name="Quake PE" version="1.0.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>Quality-aware error correction for paired-end reads</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 quake_wrapper.py --default_cutoff=$cutoff --headers -k $k -f $fofnfile -p 12 --output=$output1,$output2
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="FASTQ file for forward reads" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <param name="input2" format="fastq" type="data" label="FASTQ file for reverse reads" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <param name="k" type="integer" value="16" label="Size of k-mers to correct" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <param name="cutoff" type="integer" value="0" label="Default coverage cutoff if estimation fails"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <configfiles>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 <configfile name="fofnfile">${input1.file_name} ${input2.file_name}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 </configfile>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 </configfiles>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <data format="fastq" name="output1" label="Error-corrected forward reads from ${on_string}" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <data format="fastq" name="output2" label="Error-corrected reverse reads from ${on_string}" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 Applies the Quake_ algorithm for quality-aware correction of
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 substitution error in short reads. This form of the tool is customized
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 for correcting paired-end reads.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 Kelley DR, Schatz MC, Salzberg SL.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 "Quake: quality-aware detection and correction of sequencing errors."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 *Genome Biol.* 2010;11(11):R116.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 .. _Quake: http://www.cbcb.umd.edu/software/quake
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 **Parameter list**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 K-mer size
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 k-mer size for detecting spurious k-mers versus true k-mers from
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 the genome. Recommendations for choosing a value of k can be found
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 here_.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 Default coverage cutoff
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 If the appropriate coverage cutoff can not be found then Quake can be
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 forced to proceed anyways with the supplied cutoff. In this case,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 the optimal cutoff can be estimated by examining
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 the k-mer coverage histogram by eye.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 .. _here: http://www.cbcb.umd.edu/software/quake/faq.html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 **Output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 A FASTQ file of corrected and trimmed reads.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 </tool>