comparison msconvert_macros.xml @ 13:9b61227976d6 draft

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert commit 298cdc1df4609ae9353107dc803af0cf190ded7c"
author galaxyp
date Sat, 25 Jul 2020 18:13:58 -0400
parents cc5ccfa8ee28
children 3cf310697624
comparison
equal deleted inserted replaced
12:9ec469ff191a 13:9b61227976d6
139 139
140 #if str($data_processing.ms2deisotope) == "true" 140 #if str($data_processing.ms2deisotope) == "true"
141 --filter "MS2Deisotope" 141 --filter "MS2Deisotope"
142 #end if 142 #end if
143 143
144 #if $data_processing.demultiplex.demultiplex_on
145 --filter "demultiplex massError=$data_processing.demultiplex.massError$data_processing.demultiplex.massErrorUnits nnlsMaxIter=$data_processing.demultiplex.nnlsMaxIter nnlsEps=$data_processing.demultiplex.nnlsEps noWeighting=$data_processing.demultiplex.noWeighting demuxBlockExtra=$data_processing.demultiplex.demuxBlockExtra variableFill=$data_processing.demultiplex.variableFill noSumNormalize=$data_processing.demultiplex.noSumNormalize optimization=$data_processing.demultiplex.optimization interpolateRT=$data_processing.demultiplex.interpolateRT minWindowSize=$data_processing.demultiplex.minWindowSize"
146 #end if
144 147
145 ## SCAN INCLUSION/EXCLUSION FILTERS 148 ## SCAN INCLUSION/EXCLUSION FILTERS
146 #if str($filtering.activation) != "false" 149 #if str($filtering.activation) != "false"
147 --filter "activation $filtering.activation" 150 --filter "activation $filtering.activation"
148 #end if 151 #end if
373 </when> 376 </when>
374 <when value="false" /> 377 <when value="false" />
375 </conditional> 378 </conditional>
376 379
377 <param name="ms2deisotope" type="boolean" label="Deisotope MS2 using Markey method" help="" truevalue="true" falsevalue="false" /> 380 <param name="ms2deisotope" type="boolean" label="Deisotope MS2 using Markey method" help="" truevalue="true" falsevalue="false" />
381
382 <conditional name="demultiplex">
383 <param name="demultiplex_on" type="boolean" label="Demultiplex overlapping or MSX spectra" help="Separates overlapping or MSX multiplexed spectra into several demultiplexed spectra by inferring from adjacent multiplexed spectra. Optionally handles variable fill times (for Thermo)" />
384 <when value="true">
385 <param name="massError" type="float" label="Demultiplex Mass Tolerance" value="10" />
386 <param name="massErrorUnits" type="select" label="Units for Demultiplex Mass Tolerance">
387 <option value="MZ">mz</option>
388 <option value="PPM" selected="true">ppm</option>
389 </param>
390 <param name="nnlsMaxIter" type="integer" label="Maximum iterations for NNLS solve" value="50"/>
391 <param name="nnlsEps" type="float" label="Epsilon value for convergence criterion of NNLS solver" value="1e-10"/>
392 <param name="demuxBlockExtra" type="float" label="DemuxBlockExtra" help="Multiplier to expand or reduce the # of spectra considered when demultiplexing. If 0, a fully determined system of equations is built. If > 1.0, the number of rows included in the system is extended DemuxBlockExtra * (# scans in 1 duty cycle)" value="0"/>
393 <param name="variableFill" type="boolean" truevalue="true" falsevalue="false" label="Allow fill times to vary for each scan window"/>
394 <param name="noSumNormalize" type="boolean" truevalue="false" falsevalue="true" checked="True" label="Normalize sums" help="After demultiplex solve, scale the sum of the intensities contributed from each of the input windows to match the non-demultiplexed intensity"/>
395 <param name="optimization" type="select" label="Optimization" help="Optimizations can be applied when experimental design is known">
396 <option value="none" selected="true">None</option>
397 <option value="overlap_only">Overlap only</option>
398 </param>
399 <param name="interpolateRT" type="boolean" truevalue="true" falsevalue="false" checked="True" label="Interpolate scan time"/>
400 <param name="noWeighting" type="boolean" truevalue="false" falsevalue="true" checked="True" label="Weight nearby spectra higher" help="If true, weight the spectra nearby to the input spectrum more heavily in the solve than the outer ones. Weighting is only applied if interpolateRetentionTime is false"/>
401 <param name="minWindowSize" type="float" label="Minimum window size" value="0.2"/>
402 </when>
403 <when value="false" />
404 </conditional>
378 405
379 </section> 406 </section>
380 407
381 408
382 <section name="filtering" title="Scan Inclusion/Exclusion Filters"> 409 <section name="filtering" title="Scan Inclusion/Exclusion Filters">