Mercurial > repos > iuc > obi_illumina_pairend
comparison illuminapairedend.xml @ 0:7275ce016923 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools commit e1031e4c94b25d1ed535bf221764ab801b710ab2
author | iuc |
---|---|
date | Wed, 12 Apr 2017 17:38:52 -0400 |
parents | |
children | 0c9296704212 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7275ce016923 |
---|---|
1 <tool id="obi_illumina_pairend" name="Illuminapairedend - Assembling pair-end reads" version="@WRAPPER_VERSION@"> | |
2 <description>Construct consensus reads from Illumina pair-end reads</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements"/> | |
7 <expand macro="stdio"/> | |
8 <command> | |
9 | |
10 <![CDATA[ | |
11 illuminapairedend | |
12 | |
13 --score-min='$score' | |
14 -r '$inputfastq3p' | |
15 '$inputfastq5p' > '$output' | |
16 | |
17 ]]> | |
18 | |
19 </command> | |
20 | |
21 <inputs> | |
22 <param name="inputfastq3p" type="data" format="fastq" label="Read from file" help="file of 3p (1:) Illumina pair-end reads to assemble in sanger fastq nucleic format (standard fastq)" /> | |
23 <param name="inputfastq5p" type="data" format="fastq" label="Read from file" help="file of 5p (2:) Illumina pair-end reads to assemble in sanger fastq nucleic format (standard fastq)" /> | |
24 <param name="score" type="float" value="40.0" label="minimum score for keeping aligment"/> | |
25 </inputs> | |
26 <outputs> | |
27 <data format="fastq" name="output" label="${tool.name} on ${on_string}: assembly results" /> | |
28 </outputs> | |
29 | |
30 <tests> | |
31 <test> | |
32 <param name="inputfastq3p" value="wolf_small.F.fastq" /> | |
33 <param name="inputfastq5p" value="wolf_small.R.fastq" /> | |
34 <param name="score" value="40.0" /> | |
35 <output name="output" file="illuminapairedend.output.fastq" ftype="fastq"/> | |
36 </test> | |
37 </tests> | |
38 | |
39 <help><![CDATA[ | |
40 | |
41 .. class:: warning | |
42 | |
43 **Warning:** | |
44 Sequence records corresponding to the same read pair must be in the same order in the two files | |
45 | |
46 -------- | |
47 | |
48 .. class:: infomark | |
49 | |
50 **What it does** | |
51 | |
52 illuminapairedend aims at aligning the two reads of a pair-end library sequenced using an Illumina platform : | |
53 | |
54 \* If the two reads overlap, it returns the consensus sequence together with its quality | |
55 \* Otherwise, it concatenates sequence merging the forward read and the reversed-complemented reverse read. | |
56 | |
57 The program uses as input one or two fastq sequences reads files. | |
58 | |
59 \* If two files are used one of them must be specified using the -r option. Sequence records corresponding to the same read pair must be in the same order in the two files. | |
60 \* If just one file is provided, sequence records are supposed to be all of the same length. The first half of th e sequence is used as forward read, the second half is used as the reverse read. | |
61 | |
62 illuminapairedend align the forward sequence record with the reverse complement of the reverse sequence record. The alignment algorithm takes into account the base qualities. | |
63 | |
64 @OBITOOLS_LINK@ | |
65 | |
66 ]]> | |
67 </help> | |
68 <expand macro="citation" /> | |
69 | |
70 </tool> |