Mercurial > repos > bgruening > blobtoolkit
annotate blobtoolkit.xml @ 4:392811378515 draft default tip
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit c25f0422af4155a6ed5a456ebf6181b869ccefe9
author | bgruening |
---|---|
date | Tue, 19 Nov 2024 17:08:56 +0000 |
parents | 8c2167481e72 |
children |
rev | line source |
---|---|
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
1 <tool id="blobtoolkit" name="BlobToolKit" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
2 <description>Genome Assembly QC</description> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
3 <macros> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
4 <import>macros.xml</import> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
5 </macros> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
6 <expand macro='requirements' /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
8 #if $mode_conditional.selector == 'create' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
9 mkdir -p './Blobdir' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
10 mkdir -p './taxdump' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
11 ln -s '${mode_conditional.taxdump}' 'taxdump.tar' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
12 tar -xf 'taxdump.tar' -C './taxdump' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
13 ln -s '${mode_conditional.fasta}' 'assembly.fasta' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
14 #if $mode_conditional.meta |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
15 ln -s '${mode_conditional.meta}' 'assembly.yaml' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
16 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
17 blobtools create |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
18 --fasta 'assembly.fasta' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
19 #if $mode_conditional.meta |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
20 --meta 'assembly.yaml' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
21 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
22 --taxid $mode_conditional.taxid |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
23 --taxdump './taxdump' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
24 './Blobdir' |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
25 |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
26 && tar -C ./Blobdir -zcvf Blobdir.tgz . |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
27 |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
28 #else if $mode_conditional.selector == 'plot' |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
29 mkdir -p blobtk_files && |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
30 tar -xvf '$blobdir_input' -C blobtk_files && |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
31 blobtk plot --blobdir blobtk_files --view '$plot_view' |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
32 |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
33 #else if $mode_conditional.selector == 'add' |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
34 mkdir -p './Blobdir' && |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
35 mkdir -p './taxdump' && |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
36 ln -s '${mode_conditional.taxdump}' 'taxdump.tar' && |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
37 tar -xf 'taxdump.tar' -C './taxdump' && |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
38 #if $mode_conditional.blobdir.is_of_type("tgz") |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
39 tar -zxf '${mode_conditional.blobdir}' -C './Blobdir' && |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
40 #else |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
41 tar -xf '${mode_conditional.blobdir}' -C './Blobdir' && |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
42 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
43 #if $mode_conditional.busco |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
44 ln -s '${mode_conditional.busco}' './busco_results.tab' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
45 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
46 #if $mode_conditional.blast_input.selector == 'enabled' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
47 ln -s '$mode_conditional.blast_input.hits' './blast_results.tab' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
48 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
49 #if $mode_conditional.cov |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
50 ln -s '$mode_conditional.cov' './input.bam' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
51 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
52 #if $mode_conditional.bed |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
53 mkdir -p './bed_files' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
54 #import re |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
55 #for $i, $input in enumerate($mode_conditional.bed): |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
56 #set $safename = re.sub('[^\w\-_]', '_', $input.element_identifier) + "." + str($i) |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
57 ln -sf '${input}' './bed_files/${safename}.bed' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
58 #end for |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
59 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
60 blobtools add |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
61 --threads \${GALAXY_SLOTS:-8} |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
62 --taxdump './taxdump' |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
63 #if $mode_conditional.busco |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
64 --busco './busco_results.tab' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
65 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
66 #if $mode_conditional.blast_input.selector == 'enabled' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
67 --hits './blast_results.tab' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
68 #if $mode_conditional.blast_input.hits_cols |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
69 --hits-cols '${$mode_conditional.blast_input.hits_cols}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
70 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
71 --taxrule $mode_conditional.blast_input.taxrule |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
72 --evalue $mode_conditional.blast_input.evalue |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
73 --hit-count $mode_conditional.blast_input.hit_count |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
74 --bitscore $mode_conditional.blast_input.bitscore |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
75 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
76 #if $mode_conditional.bed |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
77 --beddir './bed_files' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
78 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
79 #if $mode_conditional.cov |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
80 --cov './input.bam' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
81 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
82 #if $mode_conditional.fasta |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
83 --fasta '${mode_conditional.fasta}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
84 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
85 #if $mode_conditional.trnascan |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
86 --trnascan '${mode_conditional.trnascan}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
87 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
88 #if $mode_conditional.text_input.selector == 'enabled' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
89 --text '${mode_conditional.text_input.text}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
90 --text-cols '${mode_conditional.text_input.text_cols}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
91 $mode_conditional.text_input.text_header |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
92 $mode_conditional.text_input.text_no_array |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
93 --text-delimiter $mode_conditional.text_input.text_delimiter |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
94 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
95 #if $mode_conditional.advanced_options.blobdb |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
96 --blobdb '${mode_conditional.advanced_options.blobdb}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
97 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
98 #if $mode_conditional.advanced_options.synonyms |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
99 --synonyms '${mode_conditional.advanced_options.synonyms}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
100 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
101 $mode_conditional.advanced_options.update_plot |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
102 #if $mode_conditional.advanced_options.pileup_args |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
103 --pileup-args '${mode_conditional.advanced_options.pileup_args}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
104 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
105 $mode_conditional.advanced_options.replace |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
106 './Blobdir' |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
107 |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
108 #if $mode_conditional.blobtk_plot_options.blobtk_plot == 'yes' |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
109 && blobtk plot --blobdir './Blobdir' --view $blobtk_plot_options.plot_view |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
110 #end if |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
111 |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
112 && tar -C ./Blobdir -zcvf Blobdir.tgz . |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
113 |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
114 #else if $mode_conditional.selector == 'filter' |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
115 mkdir -p './Blobdir' && |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
116 #if $mode_conditional.blobdir.is_of_type("tgz") |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
117 tar -zxf '${mode_conditional.blobdir}' -C './Blobdir' && |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
118 #else |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
119 tar -xf '${mode_conditional.blobdir}' -C './Blobdir' && |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
120 #end if |
1
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
121 #if $mode_conditional.filter_options.list |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
122 echo $mode_conditional.filter_options.list > id_list.txt && |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
123 #end if |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
124 #if $mode_conditional.blobdir.is_of_type("tgz") |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
125 tar -zxf '${mode_conditional.blobdir}' -C './' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
126 #else |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
127 tar -xf '${mode_conditional.blobdir}' -C './' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
128 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
129 #if $mode_conditional.filter_options.fasta |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
130 ln -s '${mode_conditional.filter_options.fasta}' './input.fasta' && |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
131 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
132 #if $mode_conditional.filter_options.fastq_filter.selector == 'enabled' |
1
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
133 ln -s '${mode_conditional.filter_options.fastq_filter.fastq}' './input.fastq' && |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
134 ln -s '$mode_conditional.filter_options.fastq_filter.cov' './input.bam' && |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
135 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
136 blobtools filter |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
137 #if $mode_conditional.filter_options.param |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
138 --param $mode_conditional.filter_options.param |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
139 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
140 #if $mode_conditional.filter_options.json |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
141 --json $mode_conditional.filter_options.json |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
142 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
143 #if $mode_conditional.filter_options.list |
1
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
144 --list id_list.txt |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
145 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
146 $mode_conditional.filter_options.invert |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
147 #if $mode_conditional.filter_options.fasta |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
148 --fasta './input.fasta' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
149 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
150 #if $mode_conditional.filter_options.fastq_filter.selector == 'enabled' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
151 --fastq './input.fastq' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
152 --cov './input.bam' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
153 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
154 #if $mode_conditional.filter_options.text_input.selector == 'enabled' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
155 --text '${mode_conditional.filter_options.text_input.text}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
156 --text-cols '${mode_conditional.filter_options.text_input.text_cols}' |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
157 $mode_conditional.filter_options.text_input.text_header |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
158 --text-delimiter $mode_conditional.filter_options.text_input.text_delimiter |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
159 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
160 ./Blobdir |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
161 #if $mode_conditional.remove_options.remove_selector or $mode_conditional.remove_options.field |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
162 && blobtools remove |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
163 #for $param in $mode_conditional.remove_options.remove_selector |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
164 $param |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
165 #end for |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
166 #if $mode_conditional.remove_options.field |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
167 --field $mode_conditional.remove_options.field |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
168 #end if |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
169 ./Blobdir |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
170 #end if |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
171 |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
172 #if $mode_conditional.blobtk_plot_options.blobtk_plot == 'yes' |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
173 && blobtk plot --blobdir ./Blobdir --view $blobtk_plot_options.plot_view |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
174 #end if |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
175 |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
176 && tar -C ./Blobdir -zcvf Blobdir.tgz . |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
177 #end if |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
178 |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
179 ]]></command> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
180 <inputs> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
181 <conditional name="mode_conditional"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
182 <param name="selector" type="select" label="Select mode" help="Select a BlobToolKit module"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
183 <option value="create">Create a BlobToolKit dataset</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
184 <option value="add">Add data to a BlobToolKit dataset</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
185 <option value="filter">Edit a BlobToolKit dataset</option> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
186 <option value="plot">Plot a BlobToolKit dataset</option> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
187 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
188 <when value="create"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
189 <param argument="--fasta" type="data" format="fasta" label="Genome assembly file" help="FASTA sequence file" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
190 <param argument="--meta" type="data" format="yaml" label="Metadata file" optional="true" help="Optional metadata dataset"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
191 <param argument="--taxid" type="integer" value="" label="NCBI taxonomy ID" help="Add ranks to metadata for a taxid"/> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
192 <expand macro="macro_taxdump"/> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
193 </when> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
194 <when value="add"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
195 <param name="blobdir" type="data" format="tgz" label="Blobdir.tgz file" help="This file should be generated by Blobtool create" /> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
196 <expand macro="macro_taxdump"/> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
197 <param argument="--busco" type="data" format="tsv,tabular,txt" optional="true" label="BUSCO full table file"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
198 <conditional name="blast_input"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
199 <param name="selector" type="select" label="BLAST/Diamond hits"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
200 <option value="enabled">Enabled</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
201 <option value="disabled" selected="true">Disabled</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
202 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
203 <when value="enabled"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
204 <param argument="--hits" type="data" format="tsv,tabular" optional="true" label="BLAST/Diamond hits dataset" help="Tabular BLAST/Diamond output file"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
205 <param argument="--taxrule" type="select" label="BLAST hits to taxa rule" help="Rule to use when assigning BLAST hits to taxa"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
206 <option value="bestsum">Bestsum</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
207 <option value="bestsumorder">Bestsumorder</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
208 <option value="bestdistsum">Bestdistsum</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
209 <option value="bestdistsumorder">Bestdistsumorder</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
210 <option value="blastp">Blastp</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
211 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
212 <param argument="--evalue" type="float" min="0" value="1" label="E-value cutoff" |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
213 help="The smaller the E-value, the better the match. Any hits with an evalue weaker than the value specified will be excluded"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
214 <param argument="--bitscore" type="float" min="0" value="1" label="Bitscore cutoff" |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
215 help="The higher the bit-score, the better the sequence similarity. Any hits with an bitscore lower the value specified will be excluded"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
216 <param argument="--hit-count" type="integer" min="1" value="10" label="Hits to a given taxon" optional="true" |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
217 help="By default the 10 highest scoring hits to a given taxon will be used when applying the --taxrule"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
218 <param argument="--hits-cols" type="text" value="1=qseqid,2=staxids,3=bitscore,5=sseqid,10=qstart,11=qend,14=evalue" optional="true" |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
219 label="BLAST/Diamond file column order" help="More information in the help section"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
220 <sanitizer invalid_char=""> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
221 <valid initial="string.letters,string.digits"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
222 <add value="=" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
223 <add value="," /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
224 </valid> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
225 </sanitizer> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
226 <validator type="regex">[0-9a-z=,]+</validator> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
227 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
228 </when> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
229 <when value="disabled"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
230 </conditional> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
231 <param argument="--bed" type="data" format="bed" multiple="true" optional="true" label="BED file of coverages per scaffold"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
232 <param argument="--cov" type="data" format="bam,sam,cram" optional="true" label="BAM/SAM/CRAM read alignment file"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
233 <param argument="--fasta" type="data" format="fasta" optional="true" label="FASTA sequence" help="FASTA sequence file" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
234 <param argument="--trnascan" type="data" format="tsv,tabular" optional="true" label="tRNAscan2-SE" help="tRNAscan-SE is employed for identifying and annotating tRNA genes in genomes"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
235 <expand macro="macro_text_input"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
236 <param argument="--text-no-array" type="boolean" truevalue="--text-no-array" falsevalue="" checked="false" label="Prevent duplicated identifiers" |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
237 help="Prevent fields in files with duplicate identifiers being loaded as array fields" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
238 </expand> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
239 <expand macro="blobtk_plotting"></expand> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
240 <section name="advanced_options" title="Advanced options"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
241 <param argument="--blobdb" type="data" format="json" optional="true" label="Blobtools v1 database" help="This file should have been generated with the previous Blobtools tool version"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
242 <param argument="--synonyms" type="data" format="tsv" optional="true" label="Identifier and sinonyms" help="TSV file containing current identifiers and synonyms"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
243 <param argument="--update-plot" type="boolean" truevalue="--update-plot" falsevalue="" checked="false" label="Update plot" help="Flag to use new taxrule as default category" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
244 <param argument="--pileup-args" type="text" value="" optional="true" label="Samtools Pileup" help="Key/value pairs to pass to samtools pileup"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
245 <sanitizer invalid_char=""> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
246 <valid initial="string.letters,string.digits"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
247 <add value="=" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
248 <add value="," /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
249 <add value="-" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
250 </valid> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
251 </sanitizer> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
252 <validator type="regex">[0-9a-zA-Z=,-]+</validator> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
253 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
254 <param argument="--replace" type="boolean" truevalue="--replace" falsevalue="" checked="false" label="Replace fields" help="Allow existing fields to be overwritten" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
255 </section> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
256 </when> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
257 <when value="filter"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
258 <param name="blobdir" type="data" format="tgz" label="Blobdir file" help="This file should be generated by the moudule create" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
259 <section name="filter_options" title="Filter mode options" expanded="true"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
260 <param argument="--param" type="text" value="" optional="true" label="Parameter value" help="String of type param=value. Individual param=value pairs can be specified to |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
261 filter based on Variable or Category fields"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
262 <sanitizer invalid_char=""> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
263 <valid initial="string.letters,string.digits"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
264 <add value="=" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
265 <add value="," /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
266 <add value="-" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
267 </valid> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
268 </sanitizer> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
269 <validator type="regex">[0-9a-zA-Z=,-]+</validator> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
270 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
271 <param argument="--list" type="text" value="" optional="true" label="List of identifiers" help="Space separated list of identifiers"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
272 <sanitizer invalid_char=""> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
273 <valid initial="string.letters,string.digits"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
274 <add value=" " /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
275 <add value="-" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
276 <add value="_" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
277 </valid> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
278 </sanitizer> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
279 <validator type="regex">[0-9a-zA-Z _-]+</validator> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
280 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
281 <param argument="--json" type="data" format="json" optional="true" label="JSON format list file" help="JSON format list file as generated by BlobtoolKit Viewer"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
282 <param argument="--fasta" type="data" format="fasta" multiple="true" optional="true" label="Assembly to be filtered" help="FASTA format assembly file to be filtered"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
283 <conditional name="fastq_filter"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
284 <param name="selector" type="select" label="Filter FASTQ reads"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
285 <option value="disabled">Disabled</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
286 <option value="enabled">Enabled</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
287 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
288 <when value="disabled"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
289 <when value="enabled"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
290 <param argument="--fastq" type="data" format="fastq" optional="true" label="Reads to be filtered" help="FASTQ format read file to be filtered"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
291 <param argument="--cov" type="data" format="bam,sam,cram" optional="true" label="BAM/SAM/CRAM read alignment file" /> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
292 </when> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
293 </conditional> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
294 <expand macro="macro_text_input"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
295 <param argument="--summary-rank" type="text" value="phylum" label="Sumamry rank" help="Taxonomic level for summary"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
296 <sanitizer invalid_char=""> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
297 <valid initial="string.letters"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
298 </sanitizer> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
299 <validator type="regex">[a-zA-Z]+</validator> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
300 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
301 <param argument="--invert" type="boolean" truevalue="--invert" falsevalue="" checked="false" label="Invert filter" help="Invert the filter (exclude matching records)"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
302 </section> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
303 <section name="remove_options" title="Remove mode options" expanded="true"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
304 <param name="remove_selector" type="select" multiple="true" display="checkboxes" label="Fields to remove"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
305 <option value="--all">Remove all fields except identifiers (--all)</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
306 <option value="--busco">Remove all BUSCO fields (--busco)</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
307 <option value="--cov">Remove all cov and read_cov fields (--cov)</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
308 <option value="--fasta">Remove gc, length and ncount fields (--fasta)</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
309 <option value="--hits">Remove all taxonomy fields (--hits)</option> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
310 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
311 <param argument="--field" type="text" value="" optional="true" label="Remove fields by ID"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
312 <sanitizer invalid_char=""> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
313 <valid initial="string.letters,string.digits"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
314 </sanitizer> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
315 <validator type="regex">[0-9a-zA-Z]+</validator> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
316 </param> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
317 </section> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
318 <expand macro="blobtk_plotting"></expand> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
319 </when> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
320 <when value="plot"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
321 <param name="blobdir_input" type="data" format="tgz" label="Select the blobdir tar.gz file generated from blobtools"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
322 <param name="plot_view" type="select" label="Select the view type for the plot"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
323 <option value="blob" selected="true">Blob view</option> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
324 <option value="cumulative">Cumulative view</option> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
325 <option value="legend">Legend view</option> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
326 <option value="snail">Snail view</option> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
327 </param> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
328 </when> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
329 </conditional> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
330 </inputs> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
331 <outputs> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
332 <data name="blobdir" format="tgz" from_work_dir="./Blobdir.tgz" label="${tool.name} on ${on_string}: Blobdir.tgz"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
333 <filter>mode_conditional['selector'] == 'create' or mode_conditional['selector'] == 'add' or mode_conditional['selector'] == 'filter'</filter> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
334 </data> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
335 <data name="output_svg" format="svg" from_work_dir="output.svg" label="${tool.name} on ${on_string}: Output Plot"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
336 <filter> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
337 (( |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
338 (mode_conditional['selector'] == 'add' and mode_conditional['blobtk_plot_options']['blobtk_plot'] == 'yes') or |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
339 (mode_conditional['selector'] == 'filter' and mode_conditional['blobtk_plot_options']['blobtk_plot'] == 'yes') or |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
340 (mode_conditional['selector'] == 'plot') |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
341 )) |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
342 </filter> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
343 </data> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
344 </outputs> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
345 <tests> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
346 <!-- Test 01: Testing blobtoolkit with create with no plotting enabled --> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
347 <test expect_num_outputs="1"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
348 <conditional name="mode_conditional"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
349 <param name="selector" value="create"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
350 <param name="fasta" value="assembly.fasta.gz"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
351 <param name="meta" value="assembly.yaml"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
352 <param name="taxid" value="801"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
353 <param name="taxdump" value="small_taxdump.tar.gz"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
354 </conditional> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
355 <output name="blobdir" file="test01_blobdir.tar.gz" compare="sim_size" delta="100"/> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
356 </test> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
357 <!-- Test 02: Testing blobtoolkit with add with plotting enabled --> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
358 <test expect_num_outputs="2"> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
359 <conditional name="mode_conditional"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
360 <param name="selector" value="add"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
361 <param name="blobdir" value="test01_blobdir.tar.gz"/> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
362 <param name="taxdump" value="small_taxdump.tar.gz"/> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
363 <param name="busco" value="busco_full_table.tabular"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
364 <param name="cov" value="bam_file.bam"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
365 <param name="fasta" value="contig.fasta"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
366 <section name="advanced_options"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
367 <param name="update_plot" value="false"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
368 </section> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
369 <conditional name="blast_input"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
370 <param name="selector" value="enabled"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
371 <param name="hits" value="blast_results.tabular"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
372 <param name="taxrule" value="bestsum"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
373 <param name="evalue" value="1"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
374 <param name="bitscore" value="1"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
375 <param name="hit_count" value="10"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
376 <param name="hits_cols" value="1=qseqid,2=staxids,3=bitscore,5=sseqid,10=qstart,11=qend,14=evalue"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
377 </conditional> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
378 <conditional name="blobtk_plot_options"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
379 <param name="blobtk_plot" value="yes"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
380 <param name="plot_view" value="blob"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
381 </conditional> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
382 </conditional> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
383 <output name="blobdir" file="test02_blobdir.tar.gz" compare="sim_size" delta="100"/> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
384 <output name="output_svg" file="test02_blob.svg" compare="sim_size" delta="100"/> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
385 </test> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
386 <!-- Test 03: Testing blobtoolkit with filtering and plotting disabled --> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
387 <test expect_num_outputs="1"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
388 <conditional name="mode_conditional"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
389 <param name="selector" value="filter"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
390 <param name="blobdir" value="test02_blobdir.tar.gz"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
391 <section name="filter_options"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
392 <param name="fasta" value="contig.fasta"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
393 <param name="summary_rank" value="phylum"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
394 <param name="invert" value="false"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
395 </section> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
396 <section name="remove_options"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
397 <param name="remove_selector" value="--all"/> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
398 </section> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
399 </conditional> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
400 <conditional name="blobtk_plot_options"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
401 <param name="blobtk_plot" value="no"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
402 </conditional> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
403 <output name="blobdir"> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
404 <assert_contents> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
405 <has_size value="620" delta="50"/> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
406 </assert_contents> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
407 </output> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
408 </test> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
409 <!-- Test 04: Testing blobtoolkit with filter with list and fasta filtering --> |
1
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
410 <test expect_num_outputs="1"> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
411 <conditional name="mode_conditional"> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
412 <param name="selector" value="filter"/> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
413 <param name="blobdir" value="test02_blobdir.tar.gz"/> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
414 <section name="filter_options"> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
415 <param name="list" value="801 802"/> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
416 <param name="fasta" value="contig.fasta"/> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
417 </section> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
418 <section name="remove_options"> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
419 <param name="remove_selector" value="--all"/> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
420 </section> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
421 </conditional> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
422 <conditional name="blobtk_plot_options"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
423 <param name="blobtk_plot" value="no"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
424 </conditional> |
1
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
425 <output name="blobdir"> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
426 <assert_contents> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
427 <has_size value="620" delta="50"/> |
1
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
428 </assert_contents> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
429 </output> |
840822c1e84a
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 797eb67eae4dfe502325c53f78824c5ba4033955
bgruening
parents:
0
diff
changeset
|
430 </test> |
3
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
431 <!-- Test 05: Testing blobtoolkit blob plot --> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
432 <test expect_num_outputs="1"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
433 <conditional name="mode_conditional"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
434 <param name="selector" value="plot"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
435 <param name="blobdir_input" value="blobdir.tgz"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
436 <param name="plot_view" value="blob"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
437 </conditional> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
438 <output name="output_svg" ftype="svg" file="output.svg" compare="sim_size"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
439 </test> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
440 <!-- Test 06 :Testing blobtoolkit Snail plot --> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
441 <test expect_num_outputs="1"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
442 <conditional name="mode_conditional"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
443 <param name="selector" value="plot"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
444 <param name="blobdir_input" value="blobdir.tgz"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
445 <param name="plot_view" value="snail"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
446 </conditional> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
447 <output name="output_svg" ftype="svg"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
448 <assert_contents> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
449 <has_text text="Log10 scaffold count (total 242)"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
450 </assert_contents> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
451 </output> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
452 </test> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
453 <!-- Test 07: Testing blobtoolkit legend plot --> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
454 <test expect_num_outputs="1"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
455 <conditional name="mode_conditional"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
456 <param name="selector" value="plot"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
457 <param name="blobdir_input" value="blobdir.tgz"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
458 <param name="plot_view" value="legend"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
459 </conditional> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
460 <output name="output_svg" ftype="svg" file="output_legend.svg" compare="sim_size"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
461 </test> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
462 <!-- Test 08: Testing blobtoolkit Cumulative plot --> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
463 <test expect_num_outputs="1"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
464 <conditional name="mode_conditional"> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
465 <param name="selector" value="plot"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
466 <param name="blobdir_input" value="blobdir.tgz"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
467 <param name="plot_view" value="cumulative"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
468 </conditional> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
469 <output name="output_svg" ftype="svg" file="output_cumulative.svg" compare="sim_size"/> |
8c2167481e72
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit d4e8bcb01de330e345970d3df6b75392c7fe2275
bgruening
parents:
2
diff
changeset
|
470 </test> |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
471 </tests> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
472 <help><![CDATA[ |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
473 BlobToolKit is a software suite to aid researchers in identifying and isolating non-target data in draft and publicly available genome assemblies. It can be used to process assembly, |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
474 read and analysis files for fully reproducible interactive exploration in the browser-based Viewer. BlobToolKit can be used during assembly to filter non-target DNA, helping researchers produce assemblies with high biological credibility. |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
475 |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
476 .. class:: infomark |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
477 |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
478 **NCBI taxdump directory** |
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
479 |
4
392811378515
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit c25f0422af4155a6ed5a456ebf6181b869ccefe9
bgruening
parents:
3
diff
changeset
|
480 The taxdump database, provided by NCBI, includes the taxonomic lineage of taxa, information on type strains and material, and host information. The file **new_taxdump.tar.gz** can be downloaded from the taxonomy directory on the `FTP site <https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/>`_. |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
481 |
0
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
482 ]]></help> |
7d9ee8cd14b8
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff
changeset
|
483 <expand macro="citations"/> |
2
53dd00a4ab68
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 5078c7010ec46fd01fec2057dd4486781c958c37
bgruening
parents:
1
diff
changeset
|
484 </tool> |