Mercurial > repos > lparsons > fastq_join
annotate fastq-join.xml @ 2:b007d9642911 draft
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 1a3c419bc0ded7c40cb2bc3e7c87bfb01ddfeba2
author | lparsons |
---|---|
date | Thu, 16 Jul 2015 17:36:11 -0400 |
parents | 593a729e5706 |
children | 8ec3dfde378b |
rev | line source |
---|---|
2
b007d9642911
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 1a3c419bc0ded7c40cb2bc3e7c87bfb01ddfeba2
lparsons
parents:
1
diff
changeset
|
1 <tool id="fastq_join" name="fastq-join" version="1.1.2-806"> |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
2 <description> - Joins two paired-end reads on the overlapping ends</description> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
3 |
0 | 4 <requirements> |
2
b007d9642911
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 1a3c419bc0ded7c40cb2bc3e7c87bfb01ddfeba2
lparsons
parents:
1
diff
changeset
|
5 <requirement type="package" version="1.1.2-806">ea-utils</requirement> |
0 | 6 </requirements> |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
7 |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
8 <stdio> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
9 <exit_code range="1:" level="fatal" description="Unknown error occurred" /> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
10 </stdio> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
11 |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
12 <command><![CDATA[ |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
13 fastq-join |
0 | 14 -v '$splitChar' |
15 -p $pctMaxDiff | |
16 -m $minOverlap | |
17 #if $stitchLengthReport: | |
18 -r $outputStitchLengthReport | |
19 #end if | |
20 $read1 | |
21 $read2 | |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
22 -o $outputUnmatched1 -o $outputUnmatched2 -o $outputJoined |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
23 ]]> |
0 | 24 </command> |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
25 |
0 | 26 <inputs> |
27 <param format="fastq, fastqillumina, fastqsanger, fastqsolexa" name="read1" type="data" label="Read 1 Fastq" /> | |
28 <param format="fastq, fastqillumina, fastqsanger, fastqsolexa" name="read2" type="data" label="Read 2 Fastq" /> | |
29 <param name="splitChar" type="text" value=" " label="Split read ids on this character" help="Default is space ' ' for Illumina reads" /> | |
30 <param name="pctMaxDiff" type="float" value="8" min="0" max="100" label="Maximum percentage difference between matching segments" /> | |
31 <param name="minOverlap" type="integer" value="6" min="1" label="Minimum length of matching segements" /> | |
32 <param name="stitchLengthReport" type="boolean" value="False" label="Output verbose stitch length report" /> | |
33 </inputs> | |
34 | |
35 <outputs> | |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
36 <data format_source="read1" name="outputJoined" label="${tool.name} on ${on_string} (joined)"/> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
37 <data format_source="read1" name="outputUnmatched1" label="${tool.name} on ${on_string} (unmatched1)"/> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
38 <data format_source="read2" name="outputUnmatched2" label="${tool.name} on ${on_string} (unmatched2)"/> |
0 | 39 <data format="tabular" name="outputStitchLengthReport" label="${tool.name} on ${on_string} (stitch length report)"> |
40 <filter>stitchLengthReport</filter> | |
41 </data> | |
42 </outputs> | |
43 | |
44 <tests> | |
45 <test> | |
46 <param name="read1" value="test_read1.fastq" /> | |
47 <param name="read2" value="test_read3.fastq" /> | |
48 <output name="outputJoined" file="testout.join.fastq" /> | |
49 <output name="outputUnmatched1" file="testout.un1.fastq" /> | |
50 <output name="outputUnmatched2" file="testout.un2.fastq" /> | |
51 </test> | |
52 </tests> | |
53 | |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
54 <help><![CDATA[ |
0 | 55 Overview |
56 -------- | |
57 fastq-join joins two paired-end reads on the overlapping ends. | |
58 | |
59 Split read ids character: Verifies that the 2 files probe id's match up to char C. Use ' ' for Illumina reads. | |
60 | |
61 Maximum difference is the maximum allowed percentage of bases that differ in the matching region. | |
62 | |
63 Minimum overlap is the minimum number of bases that must overlap (with no more than the maximum difference) for reads to be joined. | |
64 | |
65 Verbose stitch length report is a report for each joined paired of reads showing how large the overlapping section was. | |
66 | |
67 This tool uses sqr(distance)/len for anchored alignment quality algorithm. It's a good measure of anchored alignment quality, akin to squared-deviation for means. This tool uses the fastq-join program that is part of the ea-utils suite. See http://code.google.com/p/ea-utils/wiki/FastqJoin for details. | |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
68 ]]> |
0 | 69 </help> |
1
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
70 |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
71 <citations> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
72 <citation type="bibtex"> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
73 @article{aronesty_comparison_2013, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
74 title = {Comparison of {Sequencing} {Utility} {Programs}}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
75 volume = {7}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
76 issn = {18750362}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
77 url = {http://benthamopen.com/ABSTRACT/TOBIOIJ-7-1}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
78 doi = {10.2174/1875036201307010001}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
79 language = {en}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
80 number = {1}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
81 urldate = {2015-07-10}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
82 journal = {The Open Bioinformatics Journal}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
83 author = {Aronesty, Erik}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
84 month = jan, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
85 year = {2013}, |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
86 pages = {1--8} |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
87 } |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
88 </citation> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
89 </citations> |
593a729e5706
planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/fastq_join commit 394834f8f34909961cfbf6252fefbdc63342d78d
lparsons
parents:
0
diff
changeset
|
90 |
0 | 91 </tool> |