annotate fastq_paired_end_splitter.xml @ 1:c80bce242eec draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author devteam
date Wed, 11 Nov 2015 12:42:17 -0500
parents c549e99026db
children 9bbe5b7ffa12
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
1 <tool id="fastq_paired_end_splitter" name="FASTQ splitter" version="1.0.0">
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
2 <description>on joined paired end reads</description>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
3 <requirements>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
4 <requirement type="package" version="1.0.0">galaxy_sequence_utils</requirement>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
5 </requirements>
c549e99026db 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>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
7 <inputs>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
8 <param name="input1_file" type="data" format="fastqsanger,fastqcssanger" label="FASTQ reads" />
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
9 </inputs>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
10 <outputs>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
11 <data name="output1_file" format="input" />
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
12 <data name="output2_file" format="input" />
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
13 </outputs>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
14 <tests>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
15 <test>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
16 <param name="input1_file" value="3.fastqsanger" ftype="fastqsanger" />
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
17 <output name="output1_file" file="split_pair_reads_1.fastqsanger" />
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
18 <output name="output2_file" file="split_pair_reads_2.fastqsanger" />
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
19 </test>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
20 </tests>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
21 <help>
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
22 **What it does**
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
23
c549e99026db 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.
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
25
c549e99026db 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.
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
27
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
28 -----
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
29
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
30 **Input format**
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
31
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
32 A multiple-fastq file, for example::
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
33
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
34 @HWI-EAS91_1_30788AAXX:7:21:1542:1758
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
35 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATCGCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
36 +HWI-EAS91_1_30788AAXX:7:21:1542:1758
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
37 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
38
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
39
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
40 -----
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
41
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
42 **Outputs**
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
43
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
44 Left-hand Read::
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
45
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
46 @HWI-EAS91_1_30788AAXX:7:21:1542:1758/1
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
47 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATC
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
48 +HWI-EAS91_1_30788AAXX:7:21:1542:1758/1
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
49 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
50
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
51 Right-hand Read::
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
52
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
53 @HWI-EAS91_1_30788AAXX:7:21:1542:1758/2
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
54 GCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
55 +HWI-EAS91_1_30788AAXX:7:21:1542:1758/2
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
56 hhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
57
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
58 ------
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
59
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
60
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
61 </help>
1
c80bce242eec planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
62
c80bce242eec planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
63 <citations>
c80bce242eec planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
64 <citation type="doi">10.1093/bioinformatics/btq281</citation>
c80bce242eec planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
65 </citations>
c80bce242eec planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
66
0
c549e99026db Imported from capsule None
devteam
parents:
diff changeset
67 </tool>