annotate raven.xml @ 0:33b7d8481a76 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
author iuc
date Wed, 18 Nov 2020 19:42:15 +0000
parents
children f8564b2d7f63
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
1 <?xml version="1.0"?>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
2 <tool id="raven" name="Raven" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
3 <description>De novo assembly of Oxford Nanopore Technologies data</description>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
4 <macros>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
5 <import>macros.xml</import>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
6 </macros>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
7
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
8 <expand macro="requirements"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
9
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
10 <expand macro="version_command"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
11
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
12 <!--TODO in future version : enable CUDA support for racon polishing-->
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
13
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
15 #if $input_reads.is_of_type("fasta")
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
16 ln -s '$input_reads' ./input.fa &&
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
17 #set input = "input.fa"
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
18 #elif $input_reads.is_of_type("fasta.gz")
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
19 ln -s '$input_reads' ./input.fa.gz &&
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
20 #set input = "input.fa.gz"
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
21 #elif $input_reads.is_of_type("fastq")
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
22 ln -s '$input_reads' ./input.fq &&
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
23 #set input = "input.fq"
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
24 #elif $input_reads.is_of_type("fastq.gz")
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
25 ln -s '$input_reads' ./input.fq.gz &&
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
26 #set input = "input.fq.gz"
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
27 #end if
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
28 raven
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
29 $weaken
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
30 --polishing-rounds '$polishing_rounds'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
31 --match '$match'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
32 --mismatch '$mismatch'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
33 --gap '$gap'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
34 $graphical_fragment_assembly
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
35 --disable-checkpoints
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
36 -t \${GALAXY_SLOTS:-4}
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
37 '$input'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
38 > '$out_fasta'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
39 ]]></command>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
40 <inputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
41 <param name="input_reads" type="data" format="fasta,fastq,fasta.gz,fastq.gz"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
42 <param argument="--weaken" type="boolean" truevalue="--weaken" falsevalue="" label="use larger (k, w); (for use in assembling highly accurate sequences)" checked="false"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
43 <param argument="--polishing-rounds" type="integer" value="2" min="0" label="Number of times racon polishing is invoked"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
44 <param argument="--match" type="integer" value="3"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
45 <param argument="--mismatch" type="integer" value="-5"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
46 <param argument="--gap" type="integer" value="-4" max="-1"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
47 <param argument="--graphical-fragment-assembly" type="boolean" truevalue="--graphical-fragment-assembly out.gfa" falsevalue="" label="output graphical fragment assembly file?" checked="true"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
48 </inputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
49 <outputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
50 <data name="out_gfa" format="gfa1" label="${tool.name} on ${on_string} (Graphical Fragment Assembly)" from_work_dir="out.gfa">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
51 <filter>graphical_fragment_assembly</filter>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
52 </data>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
53 <data name="out_fasta" format="fasta" label="${tool.name} on ${on_string} (FASTA)" />
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
54 </outputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
55 <tests>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
56 <test expect_num_outputs="2">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
57 <param name="input_reads" ftype="fastq.gz" value="ERA476754.fastq.gz"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
58 <output name="out_gfa" file="raven_gfa_assembly.txt">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
59 <assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
60 <has_n_lines n="2"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
61 </assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
62 </output>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
63 <output name="out_fasta" file="raven_assembly.fasta">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
64 <assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
65 <has_n_lines n="2"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
66 </assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
67 </output>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
68 </test>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
69 <test expect_num_outputs="1">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
70 <param name="input_reads" ftype="fastq.gz" value="ERA476754.fastq.gz"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
71 <param name="graphical_fragment_assembly" value="false"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
72 <output name="out_fasta" file="raven_assembly.fasta">
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
73 <assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
74 <has_n_lines n="2"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
75 </assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
76 </output>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
77 </test>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
78 </tests>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
79 <help><![CDATA[
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
80 .. class:: infomark
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
81
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
82 **What it does**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
83
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
84 @WID@
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
85
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
86 **Input**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
87 - fasta / fastq / fasta.gz / fastq.gz data
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
88
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
89 **Output**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
90
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
91 - Assembled genome (FASTA)
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
92 - Graphical fragment assembly (optional) (.txt)
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
93
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
94 **References**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
95
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
96 @REFERENCES@
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
97 ]]></help>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
98 <expand macro="citations"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
99 </tool>