Mercurial > repos > bgruening > salmon
comparison salmon.xml @ 7:20007d82ae2d draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/salmon commit 3103ebed1a420c7d3415b67ef532ea579edf9faa
author | bgruening |
---|---|
date | Wed, 12 Jul 2017 14:05:45 -0400 |
parents | aa4332ee7d1d |
children | 8c23f01f10ae |
comparison
equal
deleted
inserted
replaced
6:aa4332ee7d1d | 7:20007d82ae2d |
---|---|
130 --fldSD $adv.fldSD | 130 --fldSD $adv.fldSD |
131 #end if | 131 #end if |
132 #if $adv.forgettingFactor: | 132 #if $adv.forgettingFactor: |
133 --forgettingFactor $adv.forgettingFactor | 133 --forgettingFactor $adv.forgettingFactor |
134 #end if | 134 #end if |
135 $adv.writeMappings | |
136 #if str($adv.maxOcc): | 135 #if str($adv.maxOcc): |
137 --maxOcc $adv.maxOcc | 136 --maxOcc $adv.maxOcc |
138 #end if | 137 #end if |
139 $adv.initUniform | 138 $adv.initUniform |
140 $adv.noFragLengthDist | 139 $adv.noFragLengthDist |
165 $adv.perTranscriptPrior | 164 $adv.perTranscriptPrior |
166 #if $adv.vbPrior: | 165 #if $adv.vbPrior: |
167 --vbPrior $adv.vbPrior | 166 --vbPrior $adv.vbPrior |
168 #end if | 167 #end if |
169 $adv.writeUnmappedNames | 168 $adv.writeUnmappedNames |
169 #if str($adv.writeMappings): | |
170 $adv.writeMappings > ${output_sam} | |
171 #end if | |
170 ]]> | 172 ]]> |
171 </command> | 173 </command> |
172 | 174 |
173 <inputs> | 175 <inputs> |
174 <conditional name="refTranscriptSource"> | 176 <conditional name="refTranscriptSource"> |
237 label="File containing a mapping of transcripts to genes" | 239 label="File containing a mapping of transcripts to genes" |
238 help="If this file is provided Salmon will output both quant.sf and quant.genes.sf files, where the latter contains aggregated gene-level abundance estimates. The transcript to gene mapping should be provided as either a GTF file, or a in a simple tab-delimited format where each line contains the name of a transcript and the gene to which it belongs separated by a tab." /> | 240 help="If this file is provided Salmon will output both quant.sf and quant.genes.sf files, where the latter contains aggregated gene-level abundance estimates. The transcript to gene mapping should be provided as either a GTF file, or a in a simple tab-delimited format where each line contains the name of a transcript and the gene to which it belongs separated by a tab." /> |
239 <section name="adv" title="Additional Options"> | 241 <section name="adv" title="Additional Options"> |
240 <param argument="--writeMappings" type="boolean" truevalue="--writeMappings" falsevalue="" checked="False" | 242 <param argument="--writeMappings" type="boolean" truevalue="--writeMappings" falsevalue="" checked="False" |
241 label="Write Mappings" | 243 label="Write Mappings" |
242 help=" Setting this option then the quasi-mapping results will be written out in SAM-cpmpatible format. By default, output will be directed to stdout, but an alternative file name can be provided instead." /> | 244 help="If this option is set to 'Yes', then the quasi-mapping results will be written out in SAM-compatible format. By default, output is directed to stdout." /> |
243 <param argument="--incompatPrior" type="float" optional="True" value="9.9999999999999995e-21" | 245 <param argument="--incompatPrior" type="float" optional="True" value="9.9999999999999995e-21" |
244 label="Incompatible Prior" | 246 label="Incompatible Prior" |
245 help="This option sets the prior probability that an alignment that disagrees with the specified library type (--libType) results from the true fragment origin. Setting this to 0 specifies that alignments that disagree with the library type should be 'impossible', while setting it to 1 says that alignments that disagree with the library type are no less likely than those that do" /> | 247 help="This option sets the prior probability that an alignment that disagrees with the specified library type (--libType) results from the true fragment origin. Setting this to 0 specifies that alignments that disagree with the library type should be 'impossible', while setting it to 1 says that alignments that disagree with the library type are no less likely than those that do" /> |
246 <param argument="--dumpEq" type="boolean" truevalue="--dumpEq" falsevalue="" checked="False" | 248 <param argument="--dumpEq" type="boolean" truevalue="--dumpEq" falsevalue="" checked="False" |
247 label="Dump the equivalence class counts that were computed during quasi-mapping." help=""/> | 249 label="Dump the equivalence class counts that were computed during quasi-mapping." help=""/> |
334 <outputs> | 336 <outputs> |
335 <data name="output_quant" format="tabular" from_work_dir="output/quant.sf" label="${tool.name} on ${on_string} (Quantification)" /> | 337 <data name="output_quant" format="tabular" from_work_dir="output/quant.sf" label="${tool.name} on ${on_string} (Quantification)" /> |
336 <data name="output_gene_quant" format="tabular" from_work_dir="output/quant.genes.sf" label="${tool.name} on ${on_string} (Gene Quantification)"> | 338 <data name="output_gene_quant" format="tabular" from_work_dir="output/quant.genes.sf" label="${tool.name} on ${on_string} (Gene Quantification)"> |
337 <filter>geneMap</filter> | 339 <filter>geneMap</filter> |
338 </data> | 340 </data> |
341 <data name="output_sam" format="sam" label="${tool.name} on ${on_string} (SAM format)"> | |
342 <filter>adv['writeMappings']</filter> | |
343 </data> | |
339 </outputs> | 344 </outputs> |
340 | 345 |
341 <tests> | 346 <tests> |
342 <test> | 347 <test> |
343 <param name="single_or_paired_opts" value="paired" /> | 348 <param name="single_or_paired_opts" value="paired" /> |