|
2
|
1 <tool id="usearch_fastq_mergepairs" name="usearch fastq_mergepairs" version="0.0.1">
|
|
|
2 <description>merging of paired reads</description>
|
|
|
3 <version_command>usearch -version</version_command>
|
|
4
|
4 <command>usearch
|
|
6
|
5 -quiet
|
|
2
|
6 -fastq_mergepairs '$input_forward'
|
|
|
7 -reverse '$input_reverse'
|
|
5
|
8 -fastq_qmax $qmax
|
|
2
|
9 -fastqout '$output'
|
|
|
10 </command>
|
|
|
11 <inputs>
|
|
|
12 <param name='input_forward' type='data' format='fastq,fastqsanger,fastqcssanger' label='The FASTQ filename for the forward reads' />
|
|
|
13 <param name='input_reverse' type='data' format='fastq,fastqsanger,fastqcssanger' label='The FASTQ filename for the reverse reads' />
|
|
5
|
14 <param name='qmax' type='integer' value='41' label='Maximum Q score (input files).' />
|
|
2
|
15 </inputs>
|
|
|
16 <outputs>
|
|
|
17 <data name='output' format='fastq' label="Merge result" />
|
|
|
18 </outputs>
|
|
|
19 <tests>
|
|
|
20 <test>
|
|
|
21 <param name="input_forward" value="fastq_mergepairs_input1.fq" ftype="fastqsanger" />
|
|
|
22 <param name="input_reverse" value="fastq_mergepairs_input2.fq" ftype="fastqsanger" />
|
|
5
|
23 <param name="qmax" value="65" />
|
|
2
|
24 <output name="output" file="fastq_mergepairs_output.fq" />
|
|
|
25 </test>
|
|
|
26 </tests>
|
|
|
27 <help>
|
|
|
28 **What it Does**
|
|
|
29
|
|
|
30 Performs merging of paired reads.
|
|
|
31
|
|
|
32 The FASTQ filename for the forward reads is specified by the -fastq_mergepairs option, and the reverse read filename is specified by the -reverse option. Output files are specified by -fastqout (for FASTQ) and / or -fastaout (for FASTA).
|
|
|
33
|
|
|
34 Forward and reverse must be in 1:1 correspondence and must appear in the same order in both files. The labels for the forward and reverse read in a given pair must be identical except for a single position where a '1' appears in the forward read label and a '2' appears in the reverse read label.
|
|
|
35
|
|
|
36 -----
|
|
|
37
|
|
|
38 **Input formats**
|
|
|
39
|
|
|
40 Forward read::
|
|
|
41
|
|
|
42 @IRIS:7:1:29:952#0/1
|
|
|
43 TGAGAAGCAAGAAGAAGGTTGGTTAGTGTTTTGGAG
|
|
|
44 +IRIS:7:1:29:952#0/1
|
|
|
45 aaabaaaaaaaaaaa`aaY`aa^aaa^a_a_`aa``
|
|
|
46
|
|
|
47 Reverse read::
|
|
|
48
|
|
|
49 @IRIS:7:1:29:952#0/2
|
|
|
50 GACTCCAAAACACTAACCAACCTTCTTCTTGCTTCT
|
|
|
51 +IRIS:7:1:29:952#0/2
|
|
|
52 aaaabaaaabaaaabbaaaa````__`__^__``__
|
|
|
53
|
|
|
54 -----
|
|
|
55
|
|
|
56 **Output**
|
|
|
57
|
|
|
58 A multiple-fastq file, for example::
|
|
|
59
|
|
|
60 @IRIS:7:1:29:952#0/1
|
|
|
61 TGAGAAGCAAGAAGAAGGTTGGTTAGTGTTTTGGAGTC
|
|
|
62 +
|
|
|
63 aaJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJaa
|
|
|
64
|
|
|
65 ------
|
|
|
66
|
|
|
67 **Author**
|
|
|
68
|
|
|
69 Robert C. Edgar (robert@drive5.com)
|
|
|
70
|
|
|
71 **Manual**
|
|
|
72
|
|
|
73 http://drive5.com/usearch/manual/fastq_mergepairs.html
|
|
|
74
|
|
|
75 **Citation**
|
|
|
76
|
|
|
77 Please cite one of these papers if you use USEARCH in published work.
|
|
|
78
|
|
|
79 Edgar,RC (2010) Search and clustering orders of magnitude faster than BLAST, Bioinformatics 26(19), 2460-2461.
|
|
|
80 doi: 10.1093/bioinformatics/btq461
|
|
|
81 </help>
|
|
|
82 </tool>
|