Mercurial > repos > iuc > das_tool
annotate das_tool.xml @ 5:b048a987dd7d draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
author | iuc |
---|---|
date | Mon, 29 Apr 2024 20:17:04 +0000 |
parents | 7d997332582e |
children |
rev | line source |
---|---|
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
1 <tool id="das_tool" name="DAS Tool" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
2 <description>for genome-resolved metagenomics</description> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
3 <macros> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
5 </macros> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
6 <expand macro="biotools"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
8 <expand macro="version"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
5
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
10 #import re |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
11 |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
12 #set $bins = [] |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
13 #set $labels = [] |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
14 #for $i, $s in enumerate($binning) |
5
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
15 #silent $bins.append(str($s.bins)) |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
16 #if $s.labels != '' |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
17 #silent $labels.append(str($s.labels)) |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
18 #else |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
19 #silent $labels.append(re.sub('[^\w\-_\.]', '_', $s.bins.element_identifier)) |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
20 #end if |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
21 #end for |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
22 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
23 #if $adv.proteins |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
24 ln -s '$adv.proteins' 'proteins' && |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
25 #end if |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
26 |
5
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
27 #set $bins = ','.join($bins) |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
28 #set $labels = ','.join($labels) |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
29 |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
30 DAS_Tool |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
31 --contigs '$contigs' |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
32 --outputbasename 'outputs' |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
33 --bins '$bins' |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
34 --labels '$labels' |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
35 --search_engine '$adv.search_engine' |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
36 #if $adv.proteins |
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
37 --proteins 'proteins' |
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
38 #end if |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
39 --score_threshold $adv.score_threshold |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
40 --duplicate_penalty $adv.duplicate_penalty |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
41 --megabin_penalty $adv.megabin_penalty |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
42 --max_iter_post_threshold $adv.max_iter_post_threshold |
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
43 |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
44 $output.write_bin_evals |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
45 $output.write_bins.write_bins |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
46 #if str($output.write_bins.write_bins) != '' |
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
47 $output.write_bins.write_unbinned |
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
48 #end if |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
49 $output.debug |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
50 --threads \${GALAXY_SLOTS:-1} |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
51 ]]></command> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
52 <inputs> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
53 <param argument="--contigs" type="data" format="fasta" label="Contig sequences"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
54 <repeat name="binning" title="Bins" min="1"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
55 <param argument="--bins" type="data" format="tabular" label="Contigs-to-bin table" help="Tabular with two columns: contig-IDs and bin-IDs. Fasta_to_Contigs2Bin can be used to Converts genome bins in fasta format to Contigs-to-bin table"/> |
5
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
56 <param argument="--labels" type="text" value="" label="Name of binning prediction name" help="If left empty the identifier of the contig-to-bin table is used. Only alphanumeric characters, dash, underscore and dor are allowed. Other characters are replaced by underscore."> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
57 <sanitizer invalid_char="_"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
58 <valid initial="string.ascii_letters,string.digits"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
59 <add value="-" /> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
60 <add value="_" /> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
61 <add value="." /> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
62 </valid> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
63 </sanitizer> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
64 </param> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
65 </repeat> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
66 <section name="adv" title="Advanced options"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
67 <param argument="--search_engine" type="select" label="Engine used for single copy gene identification"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
68 <option value="diamond" selected="true">diamond</option> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
69 <option value="blastp">blastp</option> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
70 </param> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
71 <param argument="--proteins" type="data" format="fasta" optional="true" label="Predicted proteins" help="The file should be prodigal fasta format: >contigID_geneNo"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
72 <param argument="--score_threshold" type="float" min="0" max="1" value="0.5" label="Score threshold until selection algorithm will keep selecting bins"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
73 <param argument="--duplicate_penalty" type="float" min="0" max="3" value="0.6" label="Penalty for duplicate single copy genes per bin (weight b)" help="Only change if you know what you are doing"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
74 <param argument="--megabin_penalty" type="float" min="0" max="3" value="0.5" label="Penalty for megabins (weight c)" help="Only change if you know what you are doing"/> |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
75 <param argument="--max_iter_post_threshold" type="integer" min="1" value="10" label="Maximum number of iterations after reaching score threshold"/> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
76 </section> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
77 <section name="output" title="Outputs"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
78 <param name="proteins" type="boolean" checked="false" label="Output predicted proteins?"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
79 <param argument="--write_bin_evals" type="boolean" truevalue="--write_bin_evals" falsevalue="" checked="false" label="Write evaluation of input bin sets?"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
80 <conditional name="write_bins"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
81 <param argument="--write_bins" type="select" label="Export bins as fasta files?"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
82 <option value="--write_bins" selected="true">Yes</option> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
83 <option value="">No</option> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
84 </param> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
85 <when value="--write_bins"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
86 <param argument="--write_unbinned" type="boolean" truevalue="--write_unbinned" falsevalue="" checked="false" label="Export unbinned contigs as fasta file?"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
87 </when> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
88 <when value=""/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
89 </conditional> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
90 <param argument="--debug" type="boolean" truevalue="--debug" falsevalue="" checked="false" label="Write debug information to log file?"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
91 </section> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
92 </inputs> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
93 <outputs> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
94 <data name="summary" format="tabular" from_work_dir="outputs_DASTool_summary.tsv" label="${tool.name} on ${on_string}: Summary of output bins" /> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
95 <data name="contigs2bin" format="tabular" from_work_dir="outputs_DASTool_contig2bin.tsv" label="${tool.name} on ${on_string}: Contigs to bin file for the output bins" /> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
96 <data name="log" format="txt" from_work_dir="outputs_DASTool.log" label="${tool.name} on ${on_string}: Log" /> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
97 <data name="eval" format="tabular" from_work_dir="outputs_allBins.eval" label="${tool.name} on ${on_string}: Quality and completeness estimates of input bin sets" > |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
98 <filter>output['write_bin_evals']</filter> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
99 </data> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
100 <collection name="bins" type="list" label="${tool.name} on ${on_string}: Bins"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
101 <filter>output['write_bins']['write_bins'] != ""</filter> |
3
e23e7bf8491b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 9c2eb2c9e495cad54084973587d07e8035f3fd9b
iuc
parents:
0
diff
changeset
|
102 <discover_datasets pattern="^(?!unbinned\.fa)((?P<designation>.*)\.fa)" format="fasta" directory="outputs_DASTool_bins"/> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
103 </collection> |
3
e23e7bf8491b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 9c2eb2c9e495cad54084973587d07e8035f3fd9b
iuc
parents:
0
diff
changeset
|
104 <data name="unbinned_contigs" format="fasta" from_work_dir="outputs_DASTool_bins/unbinned.fa" label="${tool.name} on ${on_string}: Unbinned contigs"> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
105 <filter>output['write_bins']['write_bins'] != "" and output['write_bins']['write_unbinned']</filter> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
106 </data> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
107 <data name="proteins" format="fasta" from_work_dir="outputs_proteins.faa" label="${tool.name} on ${on_string}: Proteins" > |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
108 <filter>output['proteins']</filter> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
109 </data> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
110 </outputs> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
111 <tests> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
112 <test expect_num_outputs="4"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
113 <param name="contigs" value="contigs.fasta"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
114 <repeat name="binning"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
115 <param name="bins" value="metabat.tabular"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
116 <param name="labels" value="metabat"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
117 </repeat> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
118 <section name="adv"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
119 <param name="search_engine" value="diamond"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
120 <param name="proteins" value="proteins.fasta"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
121 <param name="score_threshold" value="0.5"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
122 <param name="duplicate_penalty" value="0.6"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
123 <param name="megabin_penalty" value="0.5" /> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
124 </section> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
125 <section name="output"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
126 <param name="write_bin_evals" value="true"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
127 <conditional name="write_bins"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
128 <param name="write_bins" value=""/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
129 </conditional> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
130 <param name="debug" value="true"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
131 </section> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
132 <output name="summary" ftype="tabular"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
133 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
134 <has_text text="unique_SCGs"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
135 <has_text text="metabat.8"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
136 <has_text text="bacteria"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
137 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
138 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
139 <output name="contigs2bin" ftype="tabular"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
140 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
141 <has_text text="Ley3_66761_scaffold_6"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
142 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
143 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
144 <output name="log" ftype="txt"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
145 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
146 <has_text text="Skipping gene prediction"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
147 <has_text text="#Target sequences to report alignments for: 1"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
148 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
149 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
150 <output name="eval" ftype="tabular"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
151 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
152 <has_text text="unique_SCGs"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
153 <has_text text="metabat.8"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
154 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
155 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
156 </test> |
5
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
157 <!-- like the first test, but with empty label --> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
158 <test expect_num_outputs="4"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
159 <param name="contigs" value="contigs.fasta"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
160 <repeat name="binning"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
161 <param name="bins" value="metabat.tabular"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
162 <!-- <param name="labels" value="metabat"/> --> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
163 </repeat> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
164 <section name="adv"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
165 <param name="search_engine" value="diamond"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
166 <param name="proteins" value="proteins.fasta"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
167 <param name="score_threshold" value="0.5"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
168 <param name="duplicate_penalty" value="0.6"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
169 <param name="megabin_penalty" value="0.5" /> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
170 </section> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
171 <section name="output"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
172 <param name="write_bin_evals" value="true"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
173 <conditional name="write_bins"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
174 <param name="write_bins" value=""/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
175 </conditional> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
176 <param name="debug" value="true"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
177 </section> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
178 <output name="summary" ftype="tabular"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
179 <assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
180 <has_text text="unique_SCGs"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
181 <has_text text="metabat.8"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
182 <has_text text="bacteria"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
183 </assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
184 </output> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
185 <output name="contigs2bin" ftype="tabular"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
186 <assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
187 <has_text text="Ley3_66761_scaffold_6"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
188 </assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
189 </output> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
190 <output name="log" ftype="txt"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
191 <assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
192 <has_text text="Skipping gene prediction"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
193 <has_text text="#Target sequences to report alignments for: 1"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
194 </assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
195 </output> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
196 <output name="eval" ftype="tabular"> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
197 <assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
198 <has_text text="unique_SCGs"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
199 <has_text text="metabat.8"/> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
200 </assert_contents> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
201 </output> |
b048a987dd7d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b50985039ff11e1779f9f48f13e3b74fa1c0e955
iuc
parents:
4
diff
changeset
|
202 </test> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
203 <test expect_num_outputs="6"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
204 <param name="contigs" value="contigs.fasta"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
205 <repeat name="binning"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
206 <param name="bins" value="metabat.tabular"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
207 <param name="labels" value="metabat"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
208 </repeat> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
209 <section name="adv"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
210 <param name="search_engine" value="diamond"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
211 <param name="score_threshold" value="0.5"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
212 <param name="duplicate_penalty" value="0.6"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
213 <param name="megabin_penalty" value="0.5" /> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
214 </section> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
215 <section name="output"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
216 <param name="proteins" value="true"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
217 <param name="write_bin_evals" value="false"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
218 <conditional name="write_bins"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
219 <param name="write_bins" value="--write_bins"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
220 <param name="write_unbinned" value="true"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
221 </conditional> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
222 <param name="debug" value="true"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
223 </section> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
224 <output name="summary" ftype="tabular"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
225 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
226 <has_text text="unique_SCGs"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
227 <has_text text="metabat.8"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
228 <has_text text="bacteria"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
229 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
230 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
231 <output name="contigs2bin" ftype="tabular"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
232 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
233 <has_text text="Ley3_66761_scaffold_6"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
234 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
235 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
236 <output name="log" ftype="txt"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
237 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
238 <has_text text="Parameters"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
239 <has_text text="Predicting genes"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
240 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
241 </output> |
3
e23e7bf8491b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 9c2eb2c9e495cad54084973587d07e8035f3fd9b
iuc
parents:
0
diff
changeset
|
242 <output_collection name="bins" count="1"> <!--unbinned.fa must not appear in bins collection. unbinned.fa appears as additional output below.--> |
e23e7bf8491b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 9c2eb2c9e495cad54084973587d07e8035f3fd9b
iuc
parents:
0
diff
changeset
|
243 <element name="metabat.8" ftype="fasta"> |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
244 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
245 <has_text text=">Ley3_66761_scaffold_6"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
246 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
247 </element> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
248 </output_collection> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
249 <output name="unbinned_contigs" ftype="fasta"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
250 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
251 <has_text text=">Ley3_66761_scaffold_505"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
252 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
253 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
254 <output name="proteins" ftype="fasta"> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
255 <assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
256 <has_text text="Ley3_66761_scaffold_6_1 # 1 # 786 # 1 #"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
257 </assert_contents> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
258 </output> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
259 </test> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
260 </tests> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
261 <help><![CDATA[ |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
262 @HELP_HEADER@ |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
263 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
264 Inputs |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
265 ====== |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
266 |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
267 - Bins: Tab-separated files of contig-IDs and bin-IDs. Contigs to bin file example: :: |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
268 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
269 Contig_1 bin.01 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
270 Contig_8 bin.01 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
271 Contig_42 bin.02 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
272 Contig_49 bin.03 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
273 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
274 - Contigs: Assembled contigs in fasta format: :: |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
275 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
276 >Contig_1 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
277 ATCATCGTCCGCATCGACGAATTCGGCGAACGAGTACCCCTGACCATCTCCGATTA... |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
278 >Contig_2 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
279 GATCGTCACGCAGGCTATCGGAGCCTCGACCCGCAAGCTCTGCGCCTTGGAGCAGG... |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
280 |
4
7d997332582e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit b32e3a4bfaf7e014097eeb0b850b61bac218802d
iuc
parents:
3
diff
changeset
|
281 - [Optional] Proteins: Predicted proteins in prodigal fasta format. The header contains contig-ID and gene number: :: |
0
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
282 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
283 >Contig_1_1 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
284 MPRKNKKLPRHLLVIRTSAMGDVAMLPHALRALKEAYPEVKVTVATKSLFHPFFEG... |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
285 >Contig_1_2 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
286 MANKIPRVPVREQDPKVRATNFEEVCYGYNVEEATLEASRCLNCKNPRCVAACPVN... |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
287 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
288 Outputs |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
289 ======= |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
290 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
291 - Summary of output bins including quality and completeness estimates |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
292 - Contigs to bin file of output bins |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
293 - [Optional] Quality and completeness estimates of input bin sets |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
294 - [Optional] Bins in fasta format |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
295 - [Optional] Unbinned contigs |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
296 |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
297 ]]></help> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
298 <expand macro="citations"/> |
a8e434ebe961
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool commit 151c0e625ce20fb3ea75aa5043486e41b1da48de
iuc
parents:
diff
changeset
|
299 </tool> |