Mercurial > repos > matthias > stacks2_tsv2bam
comparison macros.xml @ 6:2626e58c493e draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks2 commit 82e7263f3e57a29362d981e36b82b82063f12ac3
author | matthias |
---|---|
date | Tue, 25 Jun 2019 10:58:48 -0400 |
parents | 852044374da1 |
children |
comparison
equal
deleted
inserted
replaced
5:852044374da1 | 6:2626e58c493e |
---|---|
105 </xml> | 105 </xml> |
106 | 106 |
107 <!-- log file handling --> | 107 <!-- log file handling --> |
108 <token name="@TEE_APPEND_LOG@"><![CDATA[ | 108 <token name="@TEE_APPEND_LOG@"><![CDATA[ |
109 #if $output_log | 109 #if $output_log |
110 2>> $output_log && | 110 2>> '$output_log' && |
111 #end if | 111 #end if |
112 ]]></token> | 112 ]]></token> |
113 <token name="@CAT_LOG_TO_STDERR@"><![CDATA[ | 113 <token name="@CAT_LOG_TO_STDERR@"><![CDATA[ |
114 #if $output_log | 114 #if $output_log |
115 cat $output_log 2>&1 | 115 cat '$output_log' 2>&1 |
116 #end if | 116 #end if |
117 ]]></token> | 117 ]]></token> |
118 <xml name="in_log"> | 118 <xml name="in_log"> |
119 <param name="add_log" type="boolean" checked="true" truevalue="yes" falsevalue="no" label="Add log output as dataset" /> | 119 <param name="add_log" type="boolean" checked="true" truevalue="yes" falsevalue="no" label="Add log output as dataset" /> |
120 </xml> | 120 </xml> |
214 <expand macro="fastq_input_bc" multiple="@MULTIPLE@" listtype="@LISTTYPE@"> | 214 <expand macro="fastq_input_bc" multiple="@MULTIPLE@" listtype="@LISTTYPE@"> |
215 <param name="barcode" argument="-b" type="data" format="tabular,txt" label="Barcode file" /> | 215 <param name="barcode" argument="-b" type="data" format="tabular,txt" label="Barcode file" /> |
216 </expand> | 216 </expand> |
217 </xml> | 217 </xml> |
218 | 218 |
219 <!-- fastq input (used in denovomap, tsv2bam, ustacks) --> | 219 <!-- fastq input (used in denovomap, tsv2bam, ustacks) |
220 <xml name="fastq_input" token_fastq_optional="false" token_help=""> | 220 - fastq_optional: makes fastq input optional (true/false) |
221 - se_option: wording for "single end" option (for tsv2bam this is the | |
222 reverse reads for the others its the forward reads) | |
223 - help: help text --> | |
224 <xml name="fastq_input" token_fastq_optional="false" token_se_option="single end or forward reads" token_help=""> | |
221 <conditional name="input_type"> | 225 <conditional name="input_type"> |
222 <param name="input_type_select" type="select" label="Short read data from individuals" help="@HELP@"> | 226 <param name="input_type_select" type="select" label="Short read data from individuals" help="@HELP@"> |
223 <option value="single" selected="true">single end or forward reads</option> | 227 <option value="single" selected="true">@SE_OPTION@</option> |
224 <option value="paired">(paired) dataset list</option> | 228 <option value="paired">(paired) dataset list</option> |
225 </param> | 229 </param> |
226 <when value="single"> | 230 <when value="single"> |
227 <param name="fqinputs" argument="-f" format="fastqsanger,fastqsanger.gz,fasta,fasta.gz" type="data" label="Reads" multiple="true" optional="@FASTQ_OPTIONAL@"/> | 231 <param name="fqinputs" argument="-f" format="fastqsanger,fastqsanger.gz,fasta,fasta.gz" type="data" label="Reads" multiple="true" optional="@FASTQ_OPTIONAL@"/> |
228 </when> | 232 </when> |