annotate malt_run.xml @ 0:d505990b8c89 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
author iuc
date Fri, 12 Nov 2021 18:39:23 +0000
parents
children 87a1202c03e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
1 <tool id="malt_run" name="MALT analyzer" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
2 <description></description>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
3 <macros>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
5 </macros>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
8 #import re
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
9
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
10 ## This will point to a directory.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
11 #set ref = str($reference.fields.path)
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
12
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
13 #set input_identifier = re.sub('[^\s\w\-]', '_', str($input.element_identifier))
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
14 ## malt-run uses the file extension to determine the input format.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
15 #if $input.is_of_type('fasta', 'fasta.gz'):
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
16 #set input_identifier = $input_identifier + '.fasta'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
17 #else:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
18 #set input_identifier = $input_identifier + '.fastq'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
19 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
20 #if $input.ext.endswith('.gz'):
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
21 #set input_identifier = $input_identifier + '.gz'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
22 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
23 ln -s '${input}' '${input_identifier}' &&
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
24
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
25 malt-run
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
26 --mode '$mode_cond.mode'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
27
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
28 #if str($mode_cond.mode) == 'BlastN':
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
29 --matchScore '$mode_cond.matchScore'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
30 --mismatchScore '$mode_cond.mismatchScore'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
31 --setLambda '$mode_cond.setLambda'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
32 --setK '$mode_cond.setK'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
33 $mode_cond.forward_only
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
34 $mode_cond.reverse_only
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
35 #else if str($mode_cond.mode) == 'BlastP':
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
36 --subMatrix '$mode_cond.sub_matrix'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
37 #else if str($mode_cond.mode) == 'BlastX':
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
38 --subMatrix '$mode_cond.sub_matrix'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
39 $mode_cond.forward_only
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
40 $mode_cond.reverse_only
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
41 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
42
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
43 --alignmentType '$alignmentType'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
44 --inFile '$input_identifier'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
45 --index '$ref'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
46 ## malt-run requires correct output file extensions.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
47 --output './output.rma6'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
48 --numThreads \${GALAXY_SLOTS:-12}
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
49
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
50 --memoryMode '$advanced_options_performance.memoryMode'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
51 --maxTables '$advanced_options_performance.maxTables'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
52 $advanced_options_performance.replicateQueryCache
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
53
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
54 --minBitScore '$advanced_options_filter.minBitScore'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
55 --maxExpected '$advanced_options_filter.maxExpected'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
56 --minPercentIdentity '$advanced_options_filter.minPercentIdentity'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
57 --maxAlignmentsPerQuery '$advanced_options_filter.maxAlignmentsPerQuery'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
58 --maxAlignmentsPerRef '$advanced_options_filter.maxAlignmentsPerRef'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
59
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
60 --topPercent '$advanced_options_lca.topPercent'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
61 --minSupportPercent '$advanced_options_lca.minSupportPercent'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
62 --minSupport '$advanced_options_lca.minSupport'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
63 --minPercentIdentityLCA '$advanced_options_lca.minPercentIdentityLCA'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
64 $advanced_options_lca.useMinPercentIdentityFilterLCA
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
65 $advanced_options_lca.weightedLCA
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
66 $advanced_options_lca.magnitudes
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
67
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
68 --maxSeedsPerFrame '$advanced_options_heuristics.maxSeedsPerFrame'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
69 --maxSeedsPerRef '$advanced_options_heuristics.maxSeedsPerRef'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
70 --seedShift '$advanced_options_heuristics.seedShift'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
71
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
72 --gapOpen '$advanced_options_alignment.gapOpen'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
73 --gapExtend '$advanced_options_alignment.gapExtend'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
74 --band '$advanced_options_alignment.band'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
75
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
76 #if str($additional_outputs_cond.additional_outputs) == 'yes':
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
77 $additional_outputs_cond.includeUnaligned
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
78 #if $additional_outputs_cond.output_alignments_cond.output_alignments:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
79 ## malt-run requires correct output file extensions.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
80 #set alignments_ext = $additional_outputs_cond.output_alignments_cond.format + '.gz'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
81 ## This param value must be a path, not a file name so we'll use the ./ approach.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
82 --alignments './alignments_output.${alignments_ext}'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
83 --format '$additional_outputs_cond.output_alignments_cond.format'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
84 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
85 #if $additional_outputs_cond.output_aligned:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
86 ## malt-run requires correct output file extensions.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
87 #set aligned_ext = 'fna.gz'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
88 ## This param value must be a path, not a file name so we'll use the ./ approach.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
89 --outAligned './aligned_output.${aligned_ext}'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
90 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
91 #if $additional_outputs_cond.output_unaligned:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
92 ## malt-run requires correct output file extensions.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
93 ## This param value must be a path, not a file name so we'll use the ./ approach.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
94 --outUnaligned './unaligned_output.fna.gz'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
95 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
96 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
97
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
98 && mv 'output.rma6' '$rma6_output'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
99
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
100 #if str($additional_outputs_cond.additional_outputs) == 'yes':
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
101 #if $additional_outputs_cond.output_alignments_cond.output_alignments:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
102 ## malt-run always compresses these outputs.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
103 && gunzip -c 'alignments_output.${alignments_ext}' > '$alignments_output'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
104 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
105 #if $additional_outputs_cond.output_aligned:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
106 ## malt-run always compresses these outputs.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
107 && gunzip -c 'aligned_output.${aligned_ext}' > '$aligned_output'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
108 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
109 #if $additional_outputs_cond.output_unaligned:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
110 ## malt-run always compresses these outputs.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
111 && gunzip -c 'unaligned_output.fna.gz' > '$unaligned_output'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
112 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
113 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
114 ]]></command>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
115 <inputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
116 <param name="input" type="data" format="fasta,fasta.gz,fastqsanger.gz,fastqsanger" label="Input file containing DNA or protein sequences"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
117 <param name="reference" type="select" label="Reference genome">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
118 <options from_data_table="malt_indices">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
119 <filter type="sort_by" column="2"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
120 <validator type="no_options" message="A cached reference genome is not available"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
121 </options>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
122 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
123 <conditional name="mode_cond" label="Select alignment mode">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
124 <param argument="--mode" type="select" label="Alignment mode">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
125 <option value="BlastN" selected="True">BlastN</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
126 <option value="BlastP">BlastP</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
127 <option value="BlastX">Blastx</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
128 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
129 <when value="BlastN">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
130 <param argument="--matchScore" type="integer" value="2" label="Alignment match disjointScore"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
131 <param argument="--mismatchScore" type="integer" value="-3" label="Alignment mis-match disjointScore"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
132 <param argument="--setLambda" type="float" value="0.625" label="Parameter Lambda for BLASTN statistics"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
133 <param argument="--setK" type="float" value="0.41" label="Parameter K for BLASTN statistics"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
134 <expand macro="forward_reverse_only"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
135 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
136 <when value="BlastP">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
137 <expand macro="sub_matrix"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
138 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
139 <when value="BlastX">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
140 <expand macro="sub_matrix"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
141 <expand macro="forward_reverse_only"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
142 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
143 </conditional>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
144 <param argument="--alignmentType" type="select" label="Alignment type">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
145 <option value="Local" selected="True">Local</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
146 <option value="SemiGlobal">SemiGlobal</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
147 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
148 <section name="advanced_options_performance" title="Advanced options for performance" expanded="false">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
149 <param argument="--memoryMode" type="select" display="radio" label="Memory mode">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
150 <option value="load" selected="True">Load all indices into memory</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
151 <option value="page">Load indices page by page when needed</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
152 <option value="map">Use memory mapping</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
153 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
154 <param argument="--maxTables" type="integer" value="0" min="0" label="Maximum number of seed tables to use" help="Zero value uses all tables"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
155 <param argument="--replicateQueryCache" type="boolean" truevalue="--replicateQueryCache" falsevalue="" checked="false" label="Cache results for replicated queries?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
156 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
157 <section name="advanced_options_filter" title="Advanced options for filter" expanded="false">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
158 <param argument="--minBitScore" type="float" value="50.0" label="Minimum bit disjointScore"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
159 <param argument="--maxExpected" type="float" value="1.0" label="Maximum expected disjointScore"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
160 <param argument="--minPercentIdentity" type="float" value="0.0" label="Minimum percent identity"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
161 <param argument="--maxAlignmentsPerQuery" type="integer" value="25" label="Maximum number of alignments per query"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
162 <param argument="--maxAlignmentsPerRef" type="integer" value="1" label="Maximum number of (non-overlapping) alignments per reference" help="MALT reports up to this many best scoring matches for each hit reference sequence"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
163 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
164 <section name="advanced_options_lca" title="Advanced options for LCA" expanded="false">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
165 <param argument="--topPercent" type="float" value="10.0" label="Top percent value for LCA algorithm" help="For each read, matches are used for taxonomic placement whose bit disjointScore is within this percentage of the best disjointScore"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
166 <param argument="--minSupportPercent" type="float" value="0.001" min="0" label="Minimum support value for LCA algorithm as a percent of assigned reads" help="Zero value ignores this option"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
167 <param argument="--minSupport" type="integer" value="0" min="0" label="Minimum support value for LCA algorithm" help="Overrides the above parameter"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
168 <param argument="--minPercentIdentityLCA" type="float" value="0.0" min="0" label="Minimum percent identity used by the LCA algorithm"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
169 <param argument="--useMinPercentIdentityFilterLCA" type="boolean" truevalue="--useMinPercentIdentityFilterLCA" falsevalue="" checked="false" label="Use percent identity assignment filter?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
170 <param argument="--weightedLCA" type="boolean" truevalue="--weightedLCA" falsevalue="" checked="false" label="Use the weighted LCA for taxonomic assignment?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
171 <param argument="--magnitudes" type="boolean" truevalue="--magnitudes" falsevalue="" checked="false" label="Reads have magnitudes (to be used in taxonomic or functional analysis)?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
172 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
173 <section name="advanced_options_heuristics" title="Advanced options for heuristics" expanded="false">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
174 <param argument="--maxSeedsPerFrame" type="integer" value="100" label="Maximum number of seed matches per offset per read frame"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
175 <param argument="--maxSeedsPerRef" type="integer" value="20" label="Maximum number of seed matches per read and reference"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
176 <param argument="--seedShift" type="integer" value="1" label="Seed shift"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
177 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
178 <section name="advanced_options_alignment" title="Advanced options for alignment" expanded="false">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
179 <param argument="--gapOpen" type="integer" value="11" label="Gap open penalty"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
180 <param argument="--gapExtend" type="integer" value="1" label="Gap extension penalty"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
181 <param argument="band" type="integer" value="4" label="Band width/2 for banded alignment"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
182 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
183 <conditional name="additional_outputs_cond">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
184 <param name="additional_outputs" type="select" label="Specify additional outputs?">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
185 <option value="no" selected="True">No</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
186 <option value="yes">Yes</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
187 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
188 <when value="no"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
189 <when value="yes">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
190 <param argument="--includeUnaligned" type="boolean" truevalue="--includeUnaligned" falsevalue="" checked="false" label="Include unaligned queries in RMA output file?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
191 <conditional name="output_alignments_cond">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
192 <param name="output_alignments" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Output alignments?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
193 <when value="false"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
194 <when value="true">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
195 <param argument="format" type="select" label="Alignment format">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
196 <option value="SAM" selected="True">SAM</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
197 <option value="Tab">Tab (tabulated BLAST format)</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
198 <option value="Text">Text (full text BLAST matches)</option>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
199 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
200 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
201 </conditional>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
202 <param name="output_aligned" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Output all reads that have at least one significant alignment to the reference?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
203 <param name="output_unaligned" type="boolean" truevalue="true" falsevalue="false" checked="false" label="Output all reads that do not have any significant alignment to the reference?"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
204 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
205 </conditional>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
206 </inputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
207 <outputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
208 <data name="rma6_output" format="rma6" label="${tool.name} on ${on_string} (RMA6)"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
209 <data name="alignments_output" format="sam" label="${tool.name} on ${on_string} (alignments)">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
210 <filter>additional_outputs_cond['additional_outputs'] == 'yes' and additional_outputs_cond['output_alignments_cond']['output_alignments']</filter>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
211 <change_format>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
212 <when input="additional_outputs_cond.output_alignments_cond.format" value="Tab" format="tabular"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
213 <when input="additional_outputs_cond.output_alignments_cond.format" value="Text" format="txt"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
214 </change_format>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
215 </data>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
216 <data name="aligned_output" format="fasta" label="${tool.name} on ${on_string} (aligned)">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
217 <filter>additional_outputs_cond['additional_outputs'] == 'yes' and additional_outputs_cond['output_aligned']</filter>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
218 </data>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
219 <data name="unaligned_output" format="fasta" label="${tool.name} on ${on_string} (unaligned)">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
220 <filter>additional_outputs_cond['additional_outputs'] == 'yes' and additional_outputs_cond['output_unaligned']</filter>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
221 </data>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
222 </outputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
223 <tests>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
224 <test expect_num_outputs="2">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
225 <param name="input" value="input.fastq.gz" ftype="fastqsanger.gz" dbkey="phiX"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
226 <param name="additional_outputs" value="yes"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
227 <param name="includeUnaligned" value="--includeUnaligned"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
228 <param name="output_alignments" value="true"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
229 <output name="rma6_output" ftype="rma6">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
230 <assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
231 <has_size value="76465"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
232 </assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
233 <metadata name="dbkey" value="phiX"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
234 </output>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
235 <output name="alignments_output" file="alignments_output1.sam" ftype="sam" compare="contains"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
236 </test>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
237 <test expect_num_outputs="3">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
238 <param name="input" value="viral.1.protein.fasta.gz" ftype="fasta.gz" dbkey="phiX"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
239 <param name="alignmentType" value="SemiGlobal"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
240 <param name="additional_outputs" value="yes"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
241 <param name="includeUnaligned" value="--includeUnaligned"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
242 <param name="output_alignments" value="true"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
243 <param name="format" value="Text"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
244 <param name="output_unaligned" value="true"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
245 <output name="rma6_output" ftype="rma6">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
246 <assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
247 <has_size value="29338"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
248 </assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
249 <metadata name="dbkey" value="phiX"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
250 </output>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
251 <output name="alignments_output" file="alignments_output2.txt" ftype="txt" compare="contains"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
252 <output name="unaligned_output" file="unaligned_output2.fasta" ftype="fasta" compare="contains"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
253 </test>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
254 </tests>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
255 <help>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
256 **What it does**
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
257
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
258 Align one or more files of input sequences (DNA or proteins) against an index representing a collection of reference DNA
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
259 or protein sequences. Depending on the type of input and reference sequences, the program can be be run in BLASTN, BLASTP
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
260 or BLASTX mode.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
261
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
262 **Options**
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
263
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
264 **Input file** - specify all input files which must be in FastA or FastQ format and may be gzipped.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
265 **Referencegenome ** - select the index built by the **MALT index builder** tool.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
266 **Alignment mode** - run the program in BlastN mode, BlastP mode or BlastX mode. that is, to align DNA and DNA, protein and protein, or DNA reads against protein references, respectively. BlastN mode can only be used if the employed index contains DNA sequences, whereas the BlastP and BlastX modes are only applicable to an index based on protein reference sequences.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
267 **Alignmentment type - specify the type of alignments to be performed. By default, this is set to Local and the program performs local alignment just like BLAST programs do. Alternatively, this can be set to SemiGlobal and the program will perform semi global alignment in which reads are aligned end-to-end.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
268 **Include unaligned queries in RMA output file** - ensure that all unaligned queries are placed into the output RMA file. By default, only queries that have an alignment are included.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
269 </help>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
270 <citations>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
271 <citation type="doi">https://doi.org/10.1101/050559</citation>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
272 </citations>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
273 </tool>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
274