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