Mercurial > repos > iuc > raven
annotate raven.xml @ 5:2025c7c40396 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
| author | iuc |
|---|---|
| date | Mon, 10 Feb 2025 19:16:14 +0000 |
| parents | fe48e5bca42d |
| children |
| rev | line source |
|---|---|
|
1
7d17a2e43156
"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
837fd4b0b3fb
"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> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
3 <macros> |
|
837fd4b0b3fb
"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> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
5 </macros> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
6 <expand macro="xrefs"/> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
8 <expand macro="version_command"/> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
9 <!--TODO in future version : enable CUDA support for racon polishing--> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
10 <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
|
11 #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
|
12 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
|
13 #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
|
14 #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
|
15 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
|
16 #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
|
17 #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
|
18 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
|
19 #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
|
20 #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
|
21 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
|
22 #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
|
23 #end if |
|
2
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
24 raven |
|
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
25 --kmer-len '$kmer_len' |
|
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
26 --window-len '$window_len' |
|
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
27 --frequency '$frequency' |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
28 --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
|
29 --match '$match' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
30 --mismatch '$mismatch' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
31 --gap '$gap' |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
32 --kMaxNumOverlaps '$kMaxNumOverlaps' |
|
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
33 --identity $identity |
|
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
34 --min-unitig-size $min_unitig_size |
|
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
35 --use-micromizers $use_micromizers |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
36 $graphical_fragment_assembly |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
37 --disable-checkpoints |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
38 -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
|
39 '$input' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
40 > '$out_fasta' |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
41 ]]></command> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
42 <inputs> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
43 <param name="input_reads" type="data" format="fasta,fastq,fasta.gz,fastq.gz"/> |
|
2
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
44 <param argument="--kmer-len" type="integer" value="15" label="Length of minimizers used to find overlaps"/> |
|
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
45 <param argument="--window-len" type="integer" value="5" label="Length of sliding window from which minimizers are sampled"/> |
|
fe48e5bca42d
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit a64e791889cae72cf8cf029de8c65fa35d91b16d"
iuc
parents:
1
diff
changeset
|
46 <param argument="--frequency" type="float" value="0.001" label="Threshold for ignoring most frequent minimizers"/> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
47 <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"/> |
|
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
48 <param argument="--kMaxNumOverlaps" type="integer" value="32" label="Maximum number of overlaps that will be taken during FindOverlapsAndCreatePiles stage"/> |
|
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
49 <param argument="--min-unitig-size" type="integer" value="9999" label="Minimal unitig size"/> |
|
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
50 |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
51 <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
|
52 <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
|
53 <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
|
54 <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
|
55 <param argument="--graphical-fragment-assembly" type="boolean" truevalue="--graphical-fragment-assembly out.gfa" falsevalue="" label="output graphical fragment assembly file?" checked="true"/> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
56 <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
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
57 </inputs> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
58 <outputs> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
59 <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
|
60 <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
|
61 </data> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
62 <data name="out_fasta" format="fasta" label="${tool.name} on ${on_string} (FASTA)"/> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
63 </outputs> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
64 <tests> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
65 <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
|
66 <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
|
67 <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
|
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 <has_n_lines n="2"/> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
70 <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
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
71 </assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
72 </output> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
73 <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
|
74 <assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
75 <has_n_lines n="2"/> |
|
5
2025c7c40396
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit d6846cd9a2228b677e7bc171e67e85e3f3426a00
iuc
parents:
2
diff
changeset
|
76 <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
|
77 </assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
78 </output> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
79 </test> |
|
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 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
|
81 <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
|
82 <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
|
83 <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
|
84 <assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
85 <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
|
86 <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
|
87 </assert_contents> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
88 </output> |
|
1
7d17a2e43156
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit cb3f04d604f2ce99f66b3d6e142d970063f9fd78"
iuc
parents:
0
diff
changeset
|
89 </test> --> |
|
0
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
90 </tests> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
91 <help><![CDATA[ |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
92 .. class:: infomark |
|
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 **What it does** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
95 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
96 @WID@ |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
97 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
98 **Input** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
99 - 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
|
100 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
101 **Output** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
102 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
103 - Assembled genome (FASTA) |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
104 - 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
|
105 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
106 **References** |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
107 |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
108 @REFERENCES@ |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
109 ]]></help> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
110 <expand macro="citations"/> |
|
837fd4b0b3fb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven commit 0a6ad31f5095ddf859a4d1819fce5d347f13c462"
iuc
parents:
diff
changeset
|
111 </tool> |
