annotate raven.xml @ 5:5c55448d0f33 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
author iuc
date Sat, 18 May 2024 21:31:16 +0000
parents 3edba9afc9bc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
1 <tool id="raven" name="Raven" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@">
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
2 <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
3 <macros>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
4 <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
5 </macros>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
7 <expand macro="version_command"/>
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
8 <!--TODO in future version : enable CUDA support for racon polishing-->
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
9 <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
10 #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
11 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
12 #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
13 #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
14 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
15 #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
16 #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
17 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
18 #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
19 #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
20 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
21 #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
22 #end if
2
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
23 raven
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
24 --kmer-len '$kmer_len'
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
25 --window-len '$window_len'
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
26 --frequency '$frequency'
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
27 --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
28 --match '$match'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
29 --mismatch '$mismatch'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
30 --gap '$gap'
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
31 --kMaxNumOverlaps '$kMaxNumOverlaps'
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
32 --identity $identity
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
33 --min-unitig-size $min_unitig_size
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
34 --use-micromizers $use_micromizers
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
35 $graphical_fragment_assembly
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
36 --disable-checkpoints
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
37 -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
38 '$input'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
39 > '$out_fasta'
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
40 ]]></command>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
41 <inputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
42 <param name="input_reads" type="data" format="fasta,fastq,fasta.gz,fastq.gz"/>
2
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
43 <param argument="--kmer-len" type="integer" value="15" label="Length of minimizers used to find overlaps"/>
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
44 <param argument="--window-len" type="integer" value="5" label="Length of sliding window from which minimizers are sampled"/>
3edba9afc9bc "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents: 1
diff changeset
45 <param argument="--frequency" type="float" value="0.001" label="Threshold for ignoring most frequent minimizers"/>
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
46 <param argument="--identity" type="float" value="0" label="Threshold for overlap between two reads in order to construct an edge between them" help="If set to zero, this functionality is disabled"/>
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
47 <param argument="--kMaxNumOverlaps" type="integer" value="32" label="Maximum number of overlaps that will be taken during FindOverlapsAndCreatePiles stage"/>
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
48 <param argument="--min-unitig-size" type="integer" value="9999" label="Minimal unitig size"/>
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
49
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
50 <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
51 <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
52 <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
53 <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
54 <param argument="--graphical-fragment-assembly" type="boolean" truevalue="--graphical-fragment-assembly out.gfa" falsevalue="" label="output graphical fragment assembly file?" checked="true"/>
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
55 <param argument="--use-micromizers" type="boolean" truevalue="--use-micromizers" falsevalue="" label="Use micromizers instead of mimizers in graph construction" help="Performance will increase slightly and memory consumption will decrease but results could be slightly worse"/>
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
56 </inputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
57 <outputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
58 <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
59 <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
60 </data>
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
61 <data name="out_fasta" format="fasta" label="${tool.name} on ${on_string} (FASTA)"/>
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
62 </outputs>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
63 <tests>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
64 <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
65 <param name="input_reads" ftype="fastq.gz" value="ERA476754.fastq.gz"/>
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
66 <output name="out_gfa">
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
67 <assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
68 <has_n_lines n="2"/>
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
69 <has_text_matching expression="^S\tUtg52\t[ATCG]{30000,40000}\tLN:i:36[0-9]{3}\tRC:i:22\tdp:f:8\nS\tCtg54\t[ATCG]{9000,10000}\tLN:i:9361\tRC:i:4"/>
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
70 </assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
71 </output>
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
72 <output name="out_fasta">
0
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"/>
5
5c55448d0f33 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 7bd5e845f7f0a531d619f66193470127a2a7a7ea
iuc
parents: 2
diff changeset
75 <has_text_matching expression="^&gt;Utg52 LN:i:36[0-9]{3} RC:i:22 XO:i:0\n[ATCG]{30000,40000}$"/>
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
76 </assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
77 </output>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
78 </test>
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
79 <!-- <test expect_num_outputs="1">
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
80 <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
81 <param name="graphical_fragment_assembly" value="false"/>
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
82 <output name="out_fasta">
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
83 <assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
84 <has_n_lines n="2"/>
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
85 <has_text_matching expression="^>Utg52 LN:i:36[0-9]{3} RC:i:22 XO:i:0\n[ATCG]{30000,40000}$"/>
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
86 </assert_contents>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
87 </output>
1
f8564b2d7f63 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents: 0
diff changeset
88 </test> -->
0
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
89 </tests>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
90 <help><![CDATA[
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
91 .. class:: infomark
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
92
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
93 **What it does**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
94
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
95 @WID@
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
96
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
97 **Input**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
98 - 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
99
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
100 **Output**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
101
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
102 - Assembled genome (FASTA)
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
103 - 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
104
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
105 **References**
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
106
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
107 @REFERENCES@
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
108 ]]></help>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
109 <expand macro="citations"/>
33b7d8481a76 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff changeset
110 </tool>