comparison rg_rnaStarSolo.xml @ 12:79b885ce78d7 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar commit 798abf3172360e7e09d2036b04ee2090d28123bb
author iuc
date Tue, 01 Nov 2022 16:57:42 +0000
parents a6fba3d92531
children 9ee34ba73ebf
comparison
equal deleted inserted replaced
11:eec9494fdafa 12:79b885ce78d7
1 <tool id="rna_starsolo" name="RNA STARSolo" version="@VERSION@" profile="20.01" license="MIT"> 1 <tool id="rna_starsolo" name="RNA STARSolo" version="@VERSION@" profile="20.01" license="MIT">
2 <description>mapping, demultiplexing and gene quantification for single cell RNA-seq</description> 2 <description>mapping, demultiplexing and gene quantification for single cell RNA-seq</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="edam"/>
3 <xrefs> 7 <xrefs>
4 <xref type="bio.tools">star</xref> 8 <xref type="bio.tools">star</xref>
5 </xrefs> 9 </xrefs>
6 <macros>
7 <import>macros.xml</import>
8 </macros>
9 <expand macro="requirements"/> 10 <expand macro="requirements"/>
10 <expand macro="edam"/>
11 <expand macro="stdio" > 11 <expand macro="stdio" >
12 <regex match="Segmentation fault" source="both" level="fatal" /> 12 <regex match="Segmentation fault" source="both" level="fatal" />
13 </expand> 13 </expand>
14 14
15 <command><![CDATA[ 15 <command><![CDATA[
158 <option value="history">Use reference genome from history and create temporary index</option> 158 <option value="history">Use reference genome from history and create temporary index</option>
159 </param> 159 </param>
160 <when value="indexed"> 160 <when value="indexed">
161 <conditional name="GTFconditional"> 161 <conditional name="GTFconditional">
162 <param name="GTFselect" type="select" 162 <param name="GTFselect" type="select"
163 label="Reference genome with or without an annotation" 163 label="Reference genome with annotation"
164 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 provide your own splice junction annonations."> 164 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 provide your own splice junction annonations.">
165 <option value="without-gtf" selected='true'>use genome reference without builtin gene-model</option> 165 <option value="without-gtf" selected='true'>use genome reference without builtin gene-model</option>
166 <option value="with-gtf">use genome reference with builtin gene-model</option> 166 <option value="with-gtf">use genome reference with builtin gene-model</option>
167 </param> 167 </param>
168 <when value="with-gtf"> 168 <when value="with-gtf">
271 </param> 271 </param>
272 </when> 272 </when>
273 </conditional> 273 </conditional>
274 <section name="solo" title="Advanced Settings" expanded="true"> 274 <section name="solo" title="Advanced Settings" expanded="true">
275 <param argument="--soloStrand" type="select" label="Strandedness of Library" help="Unstranded has no strand information, Forward has the read strand the same as the original RNA molecule, Reverse has the read strand opposite to the original RNA molecule"> 275 <param argument="--soloStrand" type="select" label="Strandedness of Library" help="Unstranded has no strand information, Forward has the read strand the same as the original RNA molecule, Reverse has the read strand opposite to the original RNA molecule">
276 <option value="Unstranded" /> 276 <option value="Unstranded" >No strand information</option>
277 <option value="Forward" selected="true" /> 277 <option value="Forward" selected="true" >Read strand same as the original RNA molecule</option>
278 <option value="Reverse" /> 278 <option value="Reverse" >Read strand opposite to the original RNA molecule</option>
279 </param> 279 </param>
280 <param argument="--soloFeatures" type="select" label="Collect UMI counts for these genomic features" > 280 <param argument="--soloFeatures" type="select" label="Collect UMI counts for these genomic features" >
281 <option value="Gene" selected="true">Gene: Count reads matching the Gene Transcript</option> 281 <option value="Gene" selected="true">Gene: Count reads matching the Gene Transcript</option>
282 <option value="SJ" >Splice Junctions: Count reads at exon-intron junctions</option> 282 <option value="SJ" >Splice Junctions: Count reads at exon-intron junctions</option>
283 <option value="GeneFull" >Full: Count all reads overlapping genes' exons and introns</option> 283 <option value="GeneFull" >Full: Count all reads overlapping genes' exons and introns</option>