annotate fastq_paired_end_joiner.xml @ 3:e659bd662045 draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner commit 06ff7f8972dcefaf52121c22ec82cf5d315adb3e-dirty
author devteam
date Mon, 14 Dec 2015 16:03:18 -0500
parents ab37758348d0
children bce792b8e239
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
e659bd662045 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner commit 06ff7f8972dcefaf52121c22ec82cf5d315adb3e-dirty
devteam
parents: 2
diff changeset
1 <tool id="fastq_paired_end_joiner" name="FASTQ joiner" version="2.0.1">
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
2 <description>on paired end reads</description>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
3 <requirements>
3
e659bd662045 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner commit 06ff7f8972dcefaf52121c22ec82cf5d315adb3e-dirty
devteam
parents: 2
diff changeset
4 <requirement type="package" version="1.0.1">galaxy_sequence_utils</requirement>
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
5 </requirements>
3
e659bd662045 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner commit 06ff7f8972dcefaf52121c22ec82cf5d315adb3e-dirty
devteam
parents: 2
diff changeset
6 <command interpreter="python">fastq_paired_end_joiner.py '$input1_file' '${input1_file.extension[len( 'fastq' ):]}' '$input2_file' '${input2_file.extension[len( 'fastq' ):]}' '$output_file' '$style' '${paste_sequence}'</command>
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
7 <inputs>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
8 <param name="input1_file" type="data" format="fastqsanger,fastqcssanger" label="Left-hand Reads" />
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
9 <param name="input2_file" type="data" format="fastqsanger,fastqcssanger" label="Right-hand Reads" />
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
10 <param name="style" type="select" label="FASTQ Header Style">
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
11 <option value="old" selected="true">old</option>
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
12 <option value="new">new</option>
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
13 </param>
3
e659bd662045 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner commit 06ff7f8972dcefaf52121c22ec82cf5d315adb3e-dirty
devteam
parents: 2
diff changeset
14 <param name="paste_sequence" type="text" label="Bases to insert between joined reads" value="" help="Values are in Base-space and quality scores of maximal value will be used"/>
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
15 </inputs>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
16 <outputs>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
17 <data name="output_file" format="input" />
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
18 </outputs>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
19 <tests>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
20 <test>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
21 <param name="input1_file" value="split_pair_reads_1.fastqsanger" ftype="fastqsanger" />
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
22 <param name="input2_file" value="split_pair_reads_2.fastqsanger" ftype="fastqsanger" />
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
23 <output name="output_file" file="3.fastqsanger" />
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
24 </test>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
25 </tests>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
26 <help>
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
27 **What it does**
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
28
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
29 This tool joins paired end FASTQ reads from two separate files into a
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
30 single read in one file. The join is performed using sequence
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
31 identifiers, allowing the two files to contain differing ordering. If
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
32 a sequence identifier does not appear in both files, it is excluded
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
33 from the output.
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
34
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
35 -----
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
36
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
37 **Input formats**
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
38
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
39 Both old and new (from recent Illumina software) style FASTQ headers
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
40 are supported. The following example uses the "old" style.
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
41
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
42 Left-hand Read::
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
43
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
44 @HWI-EAS91_1_30788AAXX:7:21:1542:1758/1
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
45 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATC
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
46 +HWI-EAS91_1_30788AAXX:7:21:1542:1758/1
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
47 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
48
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
49 Right-hand Read::
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
50
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
51 @HWI-EAS91_1_30788AAXX:7:21:1542:1758/2
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
52 GCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
53 +HWI-EAS91_1_30788AAXX:7:21:1542:1758/2
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
54 hhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
55
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
56 -----
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
57
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
58 **Output**
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
59
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
60 A multiple-fastq file, for example::
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
61
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
62 @HWI-EAS91_1_30788AAXX:7:21:1542:1758
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
63 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATCGCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
64 +HWI-EAS91_1_30788AAXX:7:21:1542:1758
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
65 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
66
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
67 ------
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
68
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
69 **The "new" style**
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
70
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
71 Recent Illumina FASTQ headers are structured as follows::
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
72
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
73 @COORDS FLAGS
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
74 COORDS = INSTRUMENT:RUN_#:FLOWCELL_ID:LANE:TILE:X:Y
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
75 FLAGS = READ:IS_FILTERED:CONTROL_NUMBER:INDEX_SEQUENCE
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
76
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
77 where the whitespace character between COORDS and FLAGS can be either
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
78 a space or a tab.
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
79
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
80 ------
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
81
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
82 **Credits**
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
83
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
84 This is an extended version (adds support for "new" style FASTQ headers)
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
85 of D. Blankenberg's fastq joiner:
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
86
1
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
87 `Blankenberg D, Gordon A, Von Kuster G, Coraor N, Taylor J, Nekrutenko A; Galaxy Team. Manipulation of FASTQ data with Galaxy. Bioinformatics. 2010 Jul 15;26(14):1783-5. &lt;http://www.ncbi.nlm.nih.gov/pubmed/20562416&gt;`_
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
88
ce853b881881 Uploaded version 2.0.0 of tool.
devteam
parents: 0
diff changeset
89 New style header support added by Simone Leo &lt;simone.leo@crs4.it&gt;
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
90 </help>
2
ab37758348d0 planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents: 1
diff changeset
91
ab37758348d0 planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents: 1
diff changeset
92 <citations>
ab37758348d0 planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents: 1
diff changeset
93 <citation type="doi">10.1093/bioinformatics/btq281</citation>
ab37758348d0 planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents: 1
diff changeset
94 </citations>
ab37758348d0 planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents: 1
diff changeset
95
0
d86b8db06e05 Imported from capsule None
devteam
parents:
diff changeset
96 </tool>