annotate malt_run.xml @ 1:87a1202c03e8 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 6bde7c9985265b3086f1e1a6df814c20d02ee092"
author iuc
date Mon, 09 May 2022 15:08:00 +0000
parents d505990b8c89
children
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 #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
11 ## 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
12 #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
13 #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
14 #else:
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
15 #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
16 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
17 #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
18 #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
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 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
21
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
22 malt-run
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
23 --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
24
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
25 #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
26 --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
27 --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
28 --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
29 --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
30 $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
31 $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
32 #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
33 --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
34 #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
35 --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
36 $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
37 $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
38 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
39
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
40 --alignmentType '$alignmentType'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
41 --inFile '$input_identifier'
1
87a1202c03e8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 6bde7c9985265b3086f1e1a6df814c20d02ee092"
iuc
parents: 0
diff changeset
42 --index '$reference.fields.path'
0
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
43 ## 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
44 --output './output.rma6'
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
45 --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
46
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
47 --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
48 --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
49 $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
50
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
51 --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
52 --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
53 --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
54 --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
55 --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
56
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
57 --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
58 --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
59 --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
60 --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
61 $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
62 $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
63 $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
64
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
65 --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
66 --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
67 --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
68
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
69 --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
70 --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
71 --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
72
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
73 #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
74 $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
75 #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
76 ## 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
77 #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
78 ## 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
79 --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
80 --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
81 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
82 #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
83 ## 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
84 #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
85 ## 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
86 --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
87 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
88 #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
89 ## 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
90 ## 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
91 --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
92 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
93 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
94
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
95 && 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
96
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
97 #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
98 #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
99 ## 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
100 && 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
101 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
102 #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
103 ## 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
104 && 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
105 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
106 #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
107 ## 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
108 && 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
109 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
110 #end if
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
111 ]]></command>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
112 <inputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
113 <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
114 <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
115 <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
116 <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
117 <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
118 </options>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
119 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
120 <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
121 <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
122 <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
123 <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
124 <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
125 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
126 <when value="BlastN">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
127 <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
128 <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
129 <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
130 <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
131 <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
132 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
133 <when value="BlastP">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
134 <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
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="BlastX">
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 <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
139 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
140 </conditional>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
141 <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
142 <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
143 <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
144 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
145 <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
146 <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
147 <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
148 <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
149 <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
150 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
151 <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
152 <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
153 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
154 <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
155 <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
156 <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
157 <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
158 <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
159 <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
160 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
161 <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
162 <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
163 <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
164 <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
165 <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
166 <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
167 <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
168 <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
169 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
170 <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
171 <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
172 <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
173 <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
174 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
175 <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
176 <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
177 <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
178 <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
179 </section>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
180 <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
181 <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
182 <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
183 <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
184 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
185 <when value="no"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
186 <when value="yes">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
187 <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
188 <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
189 <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
190 <when value="false"/>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
191 <when value="true">
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
192 <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
193 <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
194 <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
195 <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
196 </param>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
197 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
198 </conditional>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
199 <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
200 <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
201 </when>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
202 </conditional>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
203 </inputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
204 <outputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
205 <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
206 <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
207 <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
208 <change_format>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
209 <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
210 <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
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 </data>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
213 <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
214 <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
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="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
217 <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
218 </data>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
219 </outputs>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
220 <tests>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
221 <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
222 <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
223 <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
224 <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
225 <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
226 <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
227 <assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
228 <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
229 </assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
230 <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
231 </output>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
232 <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
233 </test>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
234 <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
235 <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
236 <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
237 <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
238 <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
239 <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
240 <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
241 <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
242 <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
243 <assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
244 <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
245 </assert_contents>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
246 <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
247 </output>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
248 <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
249 <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
250 </test>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
251 </tests>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
252 <help>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
253 **What it does**
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
254
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
255 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
256 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
257 or BLASTX mode.
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
258
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
259 **Options**
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
260
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
261 **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
262 **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
263 **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
264 **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
265 **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
266 </help>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
267 <citations>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
268 <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
269 </citations>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
270 </tool>
d505990b8c89 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt commit 04aaa266f5b2e557f42c7feca4e081c7e9c1dae6"
iuc
parents:
diff changeset
271