comparison rg_rnaStar.xml @ 15:5ec75f5dae3c draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar commit a8e319862d723654c372a6d71e5de76e052586a9"
author iuc
date Wed, 05 Aug 2020 09:40:33 -0400
parents 41929aa1e7f3
children e132e7d02a3e
comparison
equal deleted inserted replaced
14:b9e04854e2bb 15:5ec75f5dae3c
244 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input" type="data_collection" collection_type="paired" label="RNA-Seq FASTQ/FASTA paired reads"/> 244 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input" type="data_collection" collection_type="paired" label="RNA-Seq FASTQ/FASTA paired reads"/>
245 </when> 245 </when>
246 </conditional> 246 </conditional>
247 247
248 <!-- Genome source. --> 248 <!-- Genome source. -->
249 <expand macro="refgenomehandling" /> 249 <conditional name="refGenomeSource">
250 <param name="geneSource" type="select" label="Custom or built-in reference genome" help="Built-ins were indexed using default options">
251 <option value="indexed" selected="true">Use a built-in index</option>
252 <option value="history">Use reference genome from history and create temporary index</option>
253 </param>
254 <when value="indexed">
255 <conditional name="GTFconditional">
256 <param name="GTFselect" type="select"
257 label="Reference genome with or without an annotation"
258 help="Select the '... with builtin gene-model' option to select from the list of available indexes that were built with splice junction information. Select the '... without builtin gene-model' option to select from the list of available indexes without annotated splice junctions, and, optionally, provide your own splice-junction annonations.">
259 <option value="without-gtf" selected='true'>use genome reference without builtin gene-model</option>
260 <option value="with-gtf">use genome reference with builtin gene-model</option>
261 </param>
262 <when value="with-gtf">
263 <expand macro="index_selection" with_gene_model="1" />
264 </when>
265 <when value="without-gtf">
266 <expand macro="index_selection" with_gene_model="0" />
267 <expand macro="@SJDBOPTIONS@" />
268 </when>
269 </conditional>
270 </when>
271 <when value="history">
272 <expand macro="ref_selection" />
273 <conditional name="GTFconditional">
274 <param name="GTFselect" type="select"
275 label="Build index with or without known splice junctions annotation"
276 help="To build an index with known splice junctions annotated, you will have to provide a GTF or GFF3 dataset that describes the gene models (the location of genes, transcripts and exons) known for the reference genome.">
277 <option value="without-gtf">build index without gene-model</option>
278 <option value="with-gtf">build index with gene-model</option>
279 </param>
280 <when value="with-gtf">
281 <expand macro="@SJDBOPTIONS@" optional="false"/>
282 </when>
283 <when value="without-gtf" />
284 </conditional>
285 </when>
286 </conditional>
250 287
251 <conditional name="twopass"> 288 <conditional name="twopass">
252 <param argument="--twopassMode" type="select" 289 <param argument="--twopassMode" type="select"
253 label="Use 2-pass mapping for more sensitive novel splice junction discovery" 290 label="Use 2-pass mapping for more sensitive novel splice junction discovery"
254 help="For a study with multiple samples, multisample 2-pass mapping is the most sensitive approach. It involves two separate runs of STAR for each sample, where, in the second run of each sample, the splice junctions found in any sample in the first runs are treated as additional known junctions. If you plan to use the mapping results as input for STAR-Fusion it is recommended that you use at least single-sample 2-pass mapping of all reads."> 291 help="For a study with multiple samples, multisample 2-pass mapping is the most sensitive approach. It involves two separate runs of STAR for each sample, where, in the second run of each sample, the splice junctions found in any sample in the first runs are treated as additional known junctions. If you plan to use the mapping results as input for STAR-Fusion it is recommended that you use at least single-sample 2-pass mapping of all reads.">