annotate blobtoolkit.xml @ 0:7d9ee8cd14b8 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
author bgruening
date Mon, 30 Jan 2023 12:39:40 +0000
parents
children 840822c1e84a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
2 <description>genome assembly QC</description>
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'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
25 && cp -r './taxdump' './Blobdir/'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
26 && tar -zcf './Blobdir.tgz' './Blobdir'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
27
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
28 #else if $mode_conditional.selector == 'add'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
29 #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
30 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
31 #else
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
32 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
33 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
34 #if $mode_conditional.busco
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
35 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
36 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
37 #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
38 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
39 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
40 #if $mode_conditional.cov
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
41 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
42 ln -s '$mode_conditional.cov.metadata.bam_index' './input.bam.bai' &&
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
43 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
44 #if $mode_conditional.bed
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
45 mkdir -p './bed_files' &&
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
46 #import re
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
47 #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
48 #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
49 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
50 #end for
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 blobtools add
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
53 --threads \${GALAXY_SLOTS:-8}
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
54 --taxdump './Blobdir/taxdump'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
55 #if $mode_conditional.busco
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
56 --busco './busco_results.tab'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
57 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
58 #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
59 --hits './blast_results.tab'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
60 #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
61 --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
62 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
63 --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
64 --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
65 --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
66 --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
67 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
68 #if $mode_conditional.bed
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
69 --beddir './bed_files'
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 #if $mode_conditional.cov
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
72 --cov './input.bam'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
73 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
74 #if $mode_conditional.fasta
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
75 --fasta '${mode_conditional.fasta}'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
76 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
77 #if $mode_conditional.trnascan
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
78 --trnascan '${mode_conditional.trnascan}'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
79 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
80 #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
81 --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
82 --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
83 $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
84 $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
85 --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
86 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
87 #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
88 --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
89 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
90 #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
91 --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
92 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
93 $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
94 #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
95 --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
96 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
97 $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
98 './Blobdir'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
99 && tar -zcf './Blobdir.tgz' './Blobdir'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
100
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
101 #else if $mode_conditional.selector == 'filter'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
102 #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
103 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
104 #else
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
105 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
106 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
107 #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
108 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
109 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
110 #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
111 ln -s '${mode_conditional.filter_options.fastq}' './input.fastq' &&
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
112 ln -s '$mode_conditional.filter_options.cov' './input.bam' &&
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
113 ln -s '$mode_conditional.filter_options.cov.metadata.bam_index' './input.bam.csi' &&
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
114 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
115 blobtools filter
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
116 #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
117 --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
118 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
119 #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
120 --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
121 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
122 #if $mode_conditional.filter_options.list
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
123 --list $mode_conditional.filter_options.list
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
124 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
125 $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
126 #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
127 --fasta './input.fasta'
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.fastq_filter.selector == 'enabled'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
130 --fastq './input.fastq'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
131 --cov './input.bam'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
132 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
133 #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
134 --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
135 --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
136 $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
137 --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
138 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
139 ./Blobdir
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
140 #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
141 && blobtools remove
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
142 #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
143 $param
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
144 #end for
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
145 #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
146 --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
147 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
148 ./Blobdir
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 && tar -zcf './Blobdir.tgz' './Blobdir'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
151
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
152 #else if $mode_conditional.selector == 'plots'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
153 #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
154 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
155 #else
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
156 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
157 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
158 blobtools view
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
159 --format $mode_conditional.format
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
160 --view 'blob'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
161 ./Blobdir
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
162 && mv ./Blobdir.blob.circle* ./Blobdir.blob.circle
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
163 && blobtools view
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
164 --format $mode_conditional.format
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
165 --view 'cumulative'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
166 ./Blobdir
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
167 && mv ./Blobdir.cumulative* Blobdir.cumulative
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
168 && blobtools view
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
169 --format $mode_conditional.format
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
170 --view 'snail'
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
171 ./Blobdir
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
172 && mv ./Blobdir.snail* Blobdir.snail
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
173 #end if
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
174 ]]></command>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
175 <inputs>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
176 <conditional name="mode_conditional">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
177 <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
178 <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
179 <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
180 <option value="filter">Edit a BlobToolKit dataset</option>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
181 <option value="plots">Generate plots</option>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
182 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
183 <when value="create">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
184 <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
185 <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
186 <param argument="--taxid" type="integer" value="" label="NCBI taxonomy ID" help="Add ranks to metadata for a taxid"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
187 <param argument="--taxdump" type="data" format="tar,tgz,gz" label="NCBI taxdump directory" help="It should be compressed in tar.gz format"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
188 </when>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
189 <when value="add">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
190 <param name="blobdir" type="data" format="tgz" label="Blobdir.tgz file" help="This file should be generated by Blobtool create" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
191 <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
192 <conditional name="blast_input">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
193 <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
194 <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
195 <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
196 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
197 <when value="enabled">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
198 <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
199 <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
200 <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
201 <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
202 <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
203 <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
204 <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
205 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
206 <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
207 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
208 <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
209 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
210 <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
211 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
212 <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
213 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
214 <sanitizer invalid_char="">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
215 <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
216 <add value="=" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
217 <add value="," />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
218 </valid>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
219 </sanitizer>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
220 <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
221 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
222 </when>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
223 <when value="disabled"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
224 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
225 <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
226 <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
227 <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
228 <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
229 <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
230 <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
231 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
232 </expand>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
233 <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
234 <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
235 <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
236 <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
237 <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
238 <sanitizer invalid_char="">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
239 <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
240 <add value="=" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
241 <add value="," />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
242 <add value="-" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
243 </valid>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
244 </sanitizer>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
245 <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
246 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
247 <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
248 </section>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
249 </when>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
250 <when value="filter">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
251 <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
252 <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
253 <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
254 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
255 <sanitizer invalid_char="">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
256 <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
257 <add value="=" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
258 <add value="," />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
259 <add value="-" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
260 </valid>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
261 </sanitizer>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
262 <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
263 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
264 <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
265 <sanitizer invalid_char="">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
266 <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
267 <add value=" " />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
268 <add value="-" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
269 <add value="_" />
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
270 </valid>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
271 </sanitizer>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
272 <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
273 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
274 <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
275 <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
276 <conditional name="fastq_filter">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
277 <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
278 <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
279 <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
280 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
281 <when value="disabled"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
282 <when value="enabled">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
283 <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
284 <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
285 </when>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
286 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
287 <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
288 <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
289 <sanitizer invalid_char="">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
290 <valid initial="string.letters"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
291 </sanitizer>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
292 <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
293 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
294 <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
295 </section>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
296 <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
297 <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
298 <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
299 <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
300 <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
301 <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
302 <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
303 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
304 <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
305 <sanitizer invalid_char="">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
306 <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
307 </sanitizer>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
308 <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
309 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
310 </section>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
311 </when>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
312 <when value="plots">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
313 <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
314 <param argument="--format" type="select" label="Image format">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
315 <option value="png">PNG</option>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
316 <option value="svg">SVG</option>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
317 </param>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
318 <param argument="--param" type="text" optional="true" label="Query parameter" help="Query string parameter."/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
319 </when>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
320 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
321 </inputs>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
322 <outputs>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
323 <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
324 <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
325 </data>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
326 <data name="plot_circle" format="png" from_work_dir="./Blobdir.blob.circle" label="${tool.name} on ${on_string}: blob plot">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
327 <filter>mode_conditional['selector'] == 'plots'</filter>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
328 <change_format>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
329 <when input="$mode_conditional.format" value="svg" format="svg"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
330 </change_format>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
331 </data>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
332 <data name="plot_cumulative" format="png" from_work_dir="./Blobdir.cumulative" label="${tool.name} on ${on_string}: cumulative plot">
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'] == 'plots'</filter>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
334 <change_format>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
335 <when input="$mode_conditional.format" value="svg" format="svg"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
336 </change_format>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
337 </data>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
338 <data name="plot_snail" format="png" from_work_dir="./Blobdir.snail" label="${tool.name} on ${on_string}: snail plot">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
339 <filter>mode_conditional['selector'] == 'plots'</filter>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
340 <change_format>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
341 <when input="$mode_conditional.format" value="svg" format="svg"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
342 </change_format>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
343 </data>
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>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
346 <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
347 <conditional name="mode_conditional">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
348 <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
349 <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
350 <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
351 <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
352 <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
353 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
354 <output name="blobdir" file="test01_blobdir.tar.gz" compare="sim_size" delta="1000"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
355 </test>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
356 <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
357 <conditional name="mode_conditional">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
358 <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
359 <param name="blobdir" value="test01_blobdir.tar.gz"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
360 <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
361 <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
362 <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
363 <section name="advanced_options">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
364 <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
365 </section>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
366 <conditional name="blast_input">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
367 <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
368 <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
369 <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
370 <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
371 <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
372 <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
373 <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
374 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
375 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
376 <output name="blobdir" file="test02_blobdir.tar.gz" compare="sim_size" delta="1000"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
377 </test>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
378 <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
379 <conditional name="mode_conditional">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
380 <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
381 <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
382 <section name="filter_options">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
383 <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
384 <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
385 <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
386 </section>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
387 <section name="remove_options">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
388 <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
389 </section>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
390 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
391 <output name="blobdir">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
392 <assert_contents>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
393 <has_size value="672428" delta="1000"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
394 </assert_contents>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
395 </output>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
396 </test>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
397 <test expect_num_outputs="3">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
398 <conditional name="mode_conditional">
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
399 <param name="selector" value="plots"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
400 <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
401 <param name="format" value="png"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
402 </conditional>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
403 <output name="plot_circle" file="test04_circle.png" ftype="png"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
404 <output name="plot_cumulative" file="test04_cumulative.png" ftype="png"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
405 <output name="plot_snail" file="test04_snail.png" ftype="png"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
406 </test>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
407 </tests>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
408 <help><![CDATA[
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
409 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
410 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.
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
411 ]]></help>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
412 <expand macro="citations"/>
7d9ee8cd14b8 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit commit 7c0db48ffd4dbee68fb2320fc5a064bc9c3219d9
bgruening
parents:
diff changeset
413 </tool>