comparison idba_hybrid.xml @ 2:5c5806e23338 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud commit 9c0a7395ca18043ae2dd957f39f47b65c938750a
author iuc
date Thu, 21 Jul 2022 13:35:37 +0000
parents a81c5169e9fc
children
comparison
equal deleted inserted replaced
1:5ece301faf6b 2:5c5806e23338
1 <tool id="idba_hybrid" name="IDBA-HYBRID" version="@IDBA_VERSION@"> 1 <tool id="idba_hybrid" name="IDBA-HYBRID" version="@IDBA_VERSION@">
2 <description> 2 <description>
3 Iterative de Bruijn Graph Assembler for hybrid sequencing data 3 Iterative de Bruijn Graph Assembler for hybrid sequencing data
4 </description> 4 </description>
5 <expand macro="bio_tools"/>
5 <macros> 6 <macros>
6 <import>macros.xml</import> 7 <import>macros.xml</import>
7 </macros> 8 </macros>
8 <expand macro="requirements"/> 9 <expand macro="requirements"/>
9 <command detect_errors="aggressive"><![CDATA[ 10 <command detect_errors="aggressive"><![CDATA[
59 <!-- basic test + check of defaults --> 60 <!-- basic test + check of defaults -->
60 <test> 61 <test>
61 <param name="ref_source|reference" value="reference.fa" ftype="fasta"/> 62 <param name="ref_source|reference" value="reference.fa" ftype="fasta"/>
62 <param name="ref_source|ref_source_sel" value="history"/> 63 <param name="ref_source|ref_source_sel" value="history"/>
63 <param name="read" value="merged.fa" ftype="fasta"/> 64 <param name="read" value="merged.fa" ftype="fasta"/>
64 <output name="output" file="out/scaffold.fa" ftype="fasta"/> 65 <output name="output" file="out/scaffold.fa" ftype="fasta" compare="re_match"/>
65 <assert_command> 66 <assert_command>
66 <has_text text="--min_region 300" /> 67 <has_text text="--min_region 300" />
67 <has_text text="--max_gap 3" /> 68 <has_text text="--max_gap 3" />
68 </assert_command> 69 </assert_command>
69 </test> 70 </test>
70 <!-- chached reference test --> 71 <!-- chached reference test -->
71 <test> 72 <test>
72 <param name="ref_source|reference" value="test_id"/> 73 <param name="ref_source|reference" value="test_id"/>
73 <param name="ref_source|ref_source_sel" value="cached"/> 74 <param name="ref_source|ref_source_sel" value="cached"/>
74 <param name="read" value="merged.fa" ftype="fasta"/> 75 <param name="read" value="merged.fa" ftype="fasta"/>
75 <output name="output" file="out/scaffold.fa" ftype="fasta"/> 76 <output name="output" file="out/scaffold.fa" ftype="fasta" compare="re_match"/>
76 </test> 77 </test>
77 <!-- tool specific parameters --> 78 <!-- tool specific parameters -->
78 <test> 79 <test>
79 <param name="ref_source|reference" value="reference.fa" ftype="fasta"/> 80 <param name="ref_source|reference" value="reference.fa" ftype="fasta"/>
80 <param name="ref_source|ref_source_sel" value="history"/> 81 <param name="ref_source|ref_source_sel" value="history"/>
83 <param name="max_gap" value="2"/> 84 <param name="max_gap" value="2"/>
84 <assert_command> 85 <assert_command>
85 <has_text text="--min_region 299" /> 86 <has_text text="--min_region 299" />
86 <has_text text="--max_gap 2" /> 87 <has_text text="--max_gap 2" />
87 </assert_command> 88 </assert_command>
88 <output name="output" file="out/scaffold.fa" ftype="fasta"/> 89 <output name="output" file="out/scaffold.fa" ftype="fasta" compare="re_match"/>
89 </test> 90 </test>
90 </tests> 91 </tests>
91 <expand macro="help" more_help="IDBA-Hybrid is an iterative De Bruijn Graph De Novo Assembler for hybrid sequencing. It is an extension of IDBA-UD algorithm. It aims at using a closed related reference genome to help de novo assembly, especially when sequencing depth is low. IDBA-Hybrid does alignment between reads and reference first to extract similar regions in the reference genome, and then it correct the similar regions based on the alignment results and apply local assembly technique to resolve potential structure virations. Finally, it groups all the reads and the contigs got from those similar regions to do de novo assembly. The expriments showed it outperforms all existing de novo or hybrid assembly algorithms, especilly when the sequencing depth is low and the reference genome is similar to the target genome."/> 92 <expand macro="help" more_help="IDBA-Hybrid is an iterative De Bruijn Graph De Novo Assembler for hybrid sequencing. It is an extension of IDBA-UD algorithm. It aims at using a closed related reference genome to help de novo assembly, especially when sequencing depth is low. IDBA-Hybrid does alignment between reads and reference first to extract similar regions in the reference genome, and then it correct the similar regions based on the alignment results and apply local assembly technique to resolve potential structure virations. Finally, it groups all the reads and the contigs got from those similar regions to do de novo assembly. The expriments showed it outperforms all existing de novo or hybrid assembly algorithms, especilly when the sequencing depth is low and the reference genome is similar to the target genome."/>
92 <expand macro="citations"> 93 <expand macro="citations">
93 </expand> 94 </expand>