annotate fastq_paired_end_splitter.xml @ 0:5943afe0f24d draft

Imported from capsule None
author devteam
date Thu, 23 Jan 2014 12:32:16 -0500
parents
children d2920111eeee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
1 <tool id="fastq_paired_end_splitter" name="FASTQ splitter" version="1.0.0">
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
2 <description>on joined paired end reads</description>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
3 <requirements>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
4 <requirement type="package" version="1.0.0">galaxy_sequence_utils</requirement>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
5 </requirements>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
6 <command interpreter="python">fastq_paired_end_splitter.py '$input1_file' '${input1_file.extension[len( 'fastq' ):]}' '$output1_file' '$output2_file'</command>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
7 <inputs>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
8 <param name="input1_file" type="data" format="fastqsanger,fastqcssanger" label="FASTQ reads" />
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
9 </inputs>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
10 <outputs>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
11 <data name="output1_file" format="input" />
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
12 <data name="output2_file" format="input" />
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
13 </outputs>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
14 <tests>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
15 <test>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
16 <param name="input1_file" value="3.fastqsanger" ftype="fastqsanger" />
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
17 <output name="output1_file" file="split_pair_reads_1.fastqsanger" />
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
18 <output name="output2_file" file="split_pair_reads_2.fastqsanger" />
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
19 </test>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
20 </tests>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
21 <help>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
22 **What it does**
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
23
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
24 Splits a single fastq dataset representing paired-end run into two datasets (one for each end). This tool works only for datasets where both ends have **the same** length.
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
25
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
26 Sequence identifiers will have /1 or /2 appended for the split left-hand and right-hand reads, respectively.
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
27
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
28 -----
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
29
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
30 **Input format**
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
31
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
32 A multiple-fastq file, for example::
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
33
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
34 @HWI-EAS91_1_30788AAXX:7:21:1542:1758
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
35 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATCGCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
36 +HWI-EAS91_1_30788AAXX:7:21:1542:1758
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
37 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
38
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
39
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
40 -----
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
41
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
42 **Outputs**
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
43
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
44 Left-hand Read::
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
45
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
46 @HWI-EAS91_1_30788AAXX:7:21:1542:1758/1
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
47 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATC
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
48 +HWI-EAS91_1_30788AAXX:7:21:1542:1758/1
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
49 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
50
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
51 Right-hand Read::
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
52
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
53 @HWI-EAS91_1_30788AAXX:7:21:1542:1758/2
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
54 GCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
55 +HWI-EAS91_1_30788AAXX:7:21:1542:1758/2
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
56 hhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
57
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
58 ------
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
59
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
60 **Citation**
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
61
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
62 If you use this tool, please cite `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;`_
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
63
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
64
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
65 </help>
5943afe0f24d Imported from capsule None
devteam
parents:
diff changeset
66 </tool>