comparison kraken2.xml @ 3:4a9da2b6c2e3 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/ commit fed92935f1f0b52173d2fddbdd2bbf44e802b51e"
author iuc
date Mon, 23 Nov 2020 20:50:12 +0000
parents d4bb87ca916d
children e674066930b2
comparison
equal deleted inserted replaced
2:328c607150ff 3:4a9da2b6c2e3
33 33
34 kraken2 34 kraken2
35 --threads \${GALAXY_SLOTS:-1} 35 --threads \${GALAXY_SLOTS:-1}
36 --db '${kraken2_database.fields.path}' 36 --db '${kraken2_database.fields.path}'
37 37
38 #if $quick: 38 $quick
39 --quick
40 #end if
41 39
42 #if $single_paired.single_paired_selector == "yes" 40 #if $single_paired.single_paired_selector == "yes"
43 --paired 41 --paired
44 '${single_paired.forward_input}' '${single_paired.reverse_input}' 42 '${single_paired.forward_input}' '${single_paired.reverse_input}'
45 #elif $single_paired.single_paired_selector == "collection": 43 #elif $single_paired.single_paired_selector == "collection":
61 #end if 59 #end if
62 #end if 60 #end if
63 61
64 --confidence '${confidence}' 62 --confidence '${confidence}'
65 --minimum-base-quality '${min_base_quality}' 63 --minimum-base-quality '${min_base_quality}'
66 64 --minimum-hit-groups '${minimum_hit_groups}'
67 #if $use_names: 65
68 --use-names 66 $use_names
69 #end if
70 67
71 #if $report.create_report: 68 #if $report.create_report:
72 --report '${report_output}' 69 --report '${report_output}'
73 #if $report.use_mpa_style: 70 $report.use_mpa_style
74 --use-mpa-style 71 $report.report_zero_counts:
75 #end if 72 $report.report_minimizer_data:
76 #if $report.report_zero_counts:
77 --report-zero-counts
78 #end if
79 #end if 73 #end if
80 74
81 > '${output}' 75 > '${output}'
82 ]]></command> 76 ]]></command>
83 <inputs> 77 <inputs>
96 </when> 90 </when>
97 <when value="no"> 91 <when value="no">
98 <param format="@INTYPES@" label="Input sequences" name="input_sequences" type="data"/> 92 <param format="@INTYPES@" label="Input sequences" name="input_sequences" type="data"/>
99 </when> 93 </when>
100 </conditional> 94 </conditional>
101 <param name="use_names" type="boolean" label="Print scientific names instead of just taxids"/> 95 <param argument="--use-names" type="boolean" truevalue="--use-names" falsevalue="" label="Print scientific names instead of just taxids"/>
102 <param name="confidence" type="float" label="Confidence" value="0.0" help="Confidence score threshold. Must be in [0, 1]"> 96 <param argument="--confidence" type="float" label="Confidence" value="0.0" min="0" max="1" help="Confidence score threshold. Must be in [0, 1]"/>
103 <validator type="in_range" min="0.0" max="1.0" message="Confidence score threshold should be between 0 and 1" /> 97 <param argument="--minimum-base-quality" name="min_base_quality" type="integer" label="Minimum Base Quality" value="0" help="Minimum base quality used in classification (only effective with FASTQ input)"/>
104 </param> 98 <param argument="--minimum-hit-groups" type="integer" label="Minimum hit goups" value="2" help="Number of overlapping k-mers sharing the same minimizer needed to make a call" />
105 <param name="min_base_quality" type="integer" label="Minimum Base Quality" value="0" help="Minimum base quality used in classification (only effective with FASTQ input)"/> 99 <param argument="--quick" type="boolean" truevalue="--quick" falsevalue="" label="Enable quick operation" help="Quick operation (use first hit)"/>
106 <param name="quick" type="boolean" label="Enable quick operation" help="Quick operation (use first hit)"/>
107 <param name="split_reads" type="boolean" label="Split classified and unclassified outputs?" help="Sets --unclassified-out and --classified-out"/> 100 <param name="split_reads" type="boolean" label="Split classified and unclassified outputs?" help="Sets --unclassified-out and --classified-out"/>
108 101
109 <section name="report" title="Create Report" expanded="false"> 102 <section name="report" title="Create Report" expanded="false">
110 <param name="create_report" type="boolean" label="Print a report with aggregrate counts/clade to file" help="--report" optional="true"/> 103 <param name="create_report" type="boolean" label="Print a report with aggregrate counts/clade to file" help="--report" />
111 <param name="use_mpa_style" type="boolean" label="Format report output like Kraken 1's kraken-mpa-report" help="--use-mpa-style" optional="true"/> 104 <param argument="--use-mpa-style" type="boolean" truevalue="--use-mpa-style" falsevalue="" label="Format report output like Kraken 1's kraken-mpa-report" />
112 <param name="report_zero_counts" type="boolean" label="Report counts for ALL taxa, even if counts are zero" help="--report-zero-counts" optional="true"/> 105 <param argument="--report-zero-counts" type="boolean" truevalue="--report-zero-counts" falsevalue="" label="Report counts for ALL taxa, even if counts are zero" />
106 <param argument="--report-minimizer-data" type="boolean" truevalue="--report-minimizer-data" falsevalue="" label="Report minimizer data" help="Report minimizer and distinct minimizer count information in addition to normal Kraken report" />
113 </section> 107 </section>
114 108
115 <expand macro="input_database"/> 109 <expand macro="input_database"/>
116 </inputs> 110 </inputs>
117 <outputs> 111 <outputs>