comparison idba_tran.xml @ 0:a30d991a3fdd draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud commit 61e1699e65d6fd9f4f73650ed8463b37cd701344
author iuc
date Mon, 05 Aug 2019 15:58:44 -0400
parents
children 33f00ff1cb22
comparison
equal deleted inserted replaced
-1:000000000000 0:a30d991a3fdd
1 <tool id="idba_tran" name="IDBA-TRAN" version="@IDBA_VERSION@">
2 <description>
3 Iterative de Bruijn Graph Assembler for transcriptome data
4 </description>
5 <macros>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="requirements"/>
9 <command detect_errors="aggressive"><![CDATA[
10 idba_tran
11
12 @MAIN_INPUT@
13 @KMER_OPTIONS@
14 @FILTER_OPTIONS@
15 --min_transcript $min_transcript
16 --max_isoforms $max_isoforms
17 --max_component_size $max_component_size
18 @OTHER_OPTIONS@
19 @THREADS@
20 ]]></command>
21 <inputs>
22 <expand macro="main_input"/>
23 <expand macro="kmer_options" maxk_default="60" step_default="10"/>
24 <expand macro="filter_options"/>
25 <param argument="--min_transcript" type="integer" value="300" label="Minimum size of transcript"/>
26 <param argument="--max_isoforms" type="integer" value="3" label="Maximum number of isoforms"/>
27 <param argument="--max_component_size" type="integer" value="30" label="Maximum size of component"/>
28 <expand macro="other_options"/>
29 </inputs>
30 <outputs>
31 <data name="output" from_work_dir="out/scaffold.fa" format="fasta"/>
32 </outputs>
33 <tests>
34 <!-- basic test + tool specific defaults -->
35 <test>
36 <param name="read" value="merged.fa" ftype="fasta"/>
37 <assert_command>
38 <has_text text="--maxk 60" />
39 <has_text text="--step 10" />
40 <has_text text="--min_transcript 300" />
41 <has_text text="--max_isoforms 3" />
42 <has_text text="--max_component_size 30" />
43 </assert_command>
44 <output name="output" file="out/scaffold.fa" ftype="fasta" compare="sim_size"/>
45 </test>
46 <!-- tool specific parameters -->
47 <test>
48 <param name="read" value="merged.fa" ftype="fasta"/>
49 <param name="min_transcript" value="299"/>
50 <param name="max_isoforms" value="2"/>
51 <param name="max_component_size" value="29"/>
52 <assert_command>
53 <has_text text="--min_transcript 299" />
54 <has_text text="--max_isoforms 2" />
55 <has_text text="--max_component_size 29" />
56 </assert_command>
57 <output name="output" file="out/scaffold.fa" ftype="fasta" compare="sim_size"/>
58 </test>
59 </tests>
60 <expand macro="help" more_help="IDBA-Tran is an iterative De Bruijn Graph De Novo short read assembler for transcriptome. It is purely de novo assembler based on only RNA sequencing reads. IDBA-Tran uses local assembly to reconstructing missing k-mers in low-expressed transcripts and then employs progressive cutoff on contigs to seperate the graph into components. Each component corresponds to one gene in most cases and contains not many transcripts. A heuristic algorithm based on pair-end reads is then used to find the isoforms."/>
61 <expand macro="citations">
62 <citation type="doi">10.1093/bioinformatics/btt219</citation>
63 </expand>
64 </tool>