Mercurial > repos > iuc > raven
annotate raven.xml @ 1:7d17a2e43156 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
| author | iuc |
|---|---|
| date | Mon, 13 Sep 2021 19:41:52 +0000 |
| parents | 837fd4b0b3fb |
| children | fe48e5bca42d |
| rev | line source |
|---|---|
|
0
837fd4b0b3fb
"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"?> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
2 <tool id="raven" name="Raven" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@"> |
|
0
837fd4b0b3fb
"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> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
4 <macros> |
|
837fd4b0b3fb
"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> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
6 </macros> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
7 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
8 <expand macro="requirements"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
9 |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
11 |
|
837fd4b0b3fb
"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--> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
13 |
|
837fd4b0b3fb
"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[ |
|
837fd4b0b3fb
"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") |
|
837fd4b0b3fb
"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 && |
|
837fd4b0b3fb
"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" |
|
837fd4b0b3fb
"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") |
|
837fd4b0b3fb
"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 && |
|
837fd4b0b3fb
"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" |
|
837fd4b0b3fb
"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") |
|
837fd4b0b3fb
"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 && |
|
837fd4b0b3fb
"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" |
|
837fd4b0b3fb
"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") |
|
837fd4b0b3fb
"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 && |
|
837fd4b0b3fb
"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" |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
27 #end if |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
28 raven |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
29 $weaken |
|
837fd4b0b3fb
"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' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
31 --match '$match' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
32 --mismatch '$mismatch' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
33 --gap '$gap' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
34 $graphical_fragment_assembly |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
35 --disable-checkpoints |
|
837fd4b0b3fb
"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} |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
37 '$input' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
38 > '$out_fasta' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
39 ]]></command> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
40 <inputs> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"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"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
48 </inputs> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
49 <outputs> |
|
837fd4b0b3fb
"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"> |
|
837fd4b0b3fb
"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> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
52 </data> |
|
837fd4b0b3fb
"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)" /> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
54 </outputs> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
55 <tests> |
|
837fd4b0b3fb
"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"> |
|
837fd4b0b3fb
"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"/> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
58 <output name="out_gfa"> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
59 <assert_contents> |
|
837fd4b0b3fb
"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"/> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
61 <has_text_matching expression="^S\tUtg52\t[ATCG]{30000,40000}\tLN:i:36[0-9]{3}\tRC:i:22\nS\tCtg54\t[ATCG]{9000,10000}\tLN:i:9361\tRC:i:4"/> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
62 </assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
63 </output> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
64 <output name="out_fasta"> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
65 <assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
66 <has_n_lines n="2"/> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
67 <has_text_matching expression="^>Utg52 LN:i:36[0-9]{3} RC:i:22 XO:i:0\n[ATCG]{30000,40000}$"/> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
68 </assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
69 </output> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
70 </test> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
71 <!-- <test expect_num_outputs="1"> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
72 <param name="input_reads" ftype="fastq.gz" value="ERA476754.fastq.gz"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
73 <param name="graphical_fragment_assembly" value="false"/> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
74 <output name="out_fasta"> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
75 <assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
76 <has_n_lines n="2"/> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
77 <has_text_matching expression="^>Utg52 LN:i:36[0-9]{3} RC:i:22 XO:i:0\n[ATCG]{30000,40000}$"/> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
78 </assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
79 </output> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
80 </test> --> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
81 </tests> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
82 <help><![CDATA[ |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
83 .. class:: infomark |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
84 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
85 **What it does** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
86 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
87 @WID@ |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
88 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
89 **Input** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
90 - fasta / fastq / fasta.gz / fastq.gz data |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
91 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
92 **Output** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
93 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
94 - Assembled genome (FASTA) |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
95 - Graphical fragment assembly (optional) (.txt) |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
96 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
97 **References** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
98 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
99 @REFERENCES@ |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
100 ]]></help> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
101 <expand macro="citations"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
102 </tool> |
