Mercurial > repos > galaxyp > msconvert
comparison msconvert_macros.xml @ 7:e638f7fad66a draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert commit d595e3cfe190a61d81005f9be7c2652aa5f91292
| author | galaxyp |
|---|---|
| date | Sat, 23 Feb 2019 06:21:27 -0500 |
| parents | 6b6bba73eadb |
| children | dff86cbe69f2 |
comparison
equal
deleted
inserted
replaced
| 6:6b6bba73eadb | 7:e638f7fad66a |
|---|---|
| 1 <macros> | 1 <macros> |
| 2 <xml name="generic_requirements"> | 2 <token name="@VERSION@">3.0.19052</token> |
| 3 <requirements> | 3 <token name="@FULL_VERSION@">@VERSION@-089e81090</token> |
| 4 <requirement type="package" version="3.0.9992">proteowizard</requirement> | |
| 5 </requirements> | |
| 6 </xml> | |
| 7 <token name="@VERSION@">3.0.9992</token> | |
| 8 | 4 |
| 9 <xml name="msconvertCommand"> | 5 <xml name="msconvertCommand"> |
| 10 <command interpreter="python"> | 6 <command detect_errors="exit_code"> |
| 11 <![CDATA[ | 7 <![CDATA[ |
| 12 #import re | 8 #import re |
| 13 #set $ext = $input.ext | 9 #set $ext = $input.ext |
| 14 | 10 |
| 15 ## sanitize display name for use as temp filename | 11 ## sanitize display name for use as temp filename |
| 16 #set basename = 'pwiz_in' | 12 #set basename = $re.sub(r'[^\w\.\-\+]','_',$input.element_identifier) |
| 13 | |
| 14 #if $ext == 'wiff': | |
| 15 ln -s '${input.extra_files_path}/wiff' '${basename}.wiff' && | |
| 16 ln -s '${input.extra_files_path}/wiff_scan' '${basename}.wiff.scan' && | |
| 17 #elif $ext.endswith('tar'): | |
| 18 ln -s '$input' '${basename}' && | |
| 19 tar xf '${basename}' && | |
| 20 #set basename = $os.path.splitext($basename)[0] | |
| 21 #else | |
| 22 ln -s '$input' '${basename}' && | |
| 23 #end if | |
| 17 | 24 |
| 18 #if hasattr($input, 'display_name') | 25 #if $data_processing.precursor_refinement.use_mzrefinement |
| 19 ## explicit inclusion or exclusion ?? | 26 #set input_ident_name = ".".join((os.path.splitext($basename)[0], $data_processing.precursor_refinement.input_ident.ext)) |
| 20 #set basename = $re.sub(r'[^\w\.\-\+]','_',$input.display_name) | 27 #set output_refinement_name = os.path.splitext($basename)[0] + '.mzRefinement.tsv' |
| 21 ##set basename = $re.sub(r'[\/\\\;\|\&\>\<]','_',$input.display_name) | 28 ln -s '$data_processing.precursor_refinement.input_ident' '$input_ident_name' && |
| 22 #end if | 29 #end if |
| 23 | 30 |
| 24 msconvert_wrapper.py | 31 uid=`id -u` && |
| 25 | 32 gid=`id -g` && |
| 26 #if $ext == 'wiff': | 33 |
| 27 --input='${input.extra_files_path}/wiff' | 34 wine64_anyuser msconvert '${basename}' |
| 28 --input_name='${basename}.wiff' | 35 --outdir outputs |
| 29 --implicit='${input.extra_files_path}/wiff_scan' | 36 --${output_type} |
| 30 --input='${input.extra_files_path}/wiff_scan' | 37 |
| 31 --input_name='${basename}.wiff.scan' | 38 #if $general_options.combineIonMobilitySpectra: |
| 39 --combineIonMobilitySpectra | |
| 40 #end if | |
| 41 | |
| 42 #if $general_options.simAsSpectra: | |
| 43 --simAsSpectra | |
| 44 #end if | |
| 45 | |
| 46 #if $general_options.srmAsSpectra: | |
| 47 --srmAsSpectra | |
| 48 #end if | |
| 49 | |
| 50 #if $general_options.acceptZeroLengthSpectra: | |
| 51 --acceptZeroLengthSpectra | |
| 52 #end if | |
| 53 | |
| 54 #if $general_options.ignoreUnknownInstrumentError: | |
| 55 --ignoreUnknownInstrumentError | |
| 56 #end if | |
| 57 | |
| 58 #if $general_options.scan_summing.do_scan_summing: | |
| 59 --filter "scanSumming precursorTol=$general_options.scan_summing.precursorTol scanTimeTol=$general_options.scan_summing.scanTimeTol ionMobilityTol=$general_options.scan_summing.ionMobilityTol" | |
| 60 #end if | |
| 61 | |
| 62 #if $general_options.multi_run_output.do_multi_run_output: | |
| 63 #if len($general_options.multi_run_output.run_index_set) > 0 | |
| 64 --runIndexSet " | |
| 65 #for $index in $general_options.multi_run_output.run_index_set | |
| 66 [${index.from},${index.to}] | |
| 67 #end for | |
| 68 " | |
| 69 #end if | |
| 32 #else | 70 #else |
| 33 --input='${input}' | 71 --runIndexSet $general_options.multi_run_output.runIndexSet |
| 34 --input_name='$basename' | |
| 35 #end if | 72 #end if |
| 36 --output='${output}' | 73 |
| 37 ## BEGIN_VERSION_DEFAULT | 74 ## Strip sourceFile location since it is meaningless on HPC systems and causes problems with functional tests |
| 38 --fromextension=$ext | 75 --stripLocationFromSourceFiles |
| 39 ## END_VERSION_DEFAULT | |
| 40 --toextension=${output_type} | |
| 41 | 76 |
| 42 ## DATA PROCESSING FILTERS (NOTE: FOR VENDOR METHOD TO WORK, PEAK PICKING MUST BE THE FIRST FILTER!) | 77 ## DATA PROCESSING FILTERS (NOTE: FOR VENDOR METHOD TO WORK, PEAK PICKING MUST BE THE FIRST FILTER!) |
| 78 #if $data_processing.peak_picking.pick_peaks | |
| 79 --filter "peakPicking $data_processing.peak_picking.pick_peaks_algorithm msLevel=$data_processing.peak_picking.pick_peaks_ms_levels" | |
| 80 #end if | |
| 81 | |
| 43 #if $data_processing.precursor_refinement.use_mzrefinement | 82 #if $data_processing.precursor_refinement.use_mzrefinement |
| 44 #set input_ident_name = ".".join(($basename, $data_processing.precursor_refinement.input_ident.ext)) | |
| 45 --ident='$data_processing.precursor_refinement.input_ident' | |
| 46 --ident_name='$input_ident_name' | |
| 47 --refinement='$output_refinement' | |
| 48 --filter "mzRefiner $input_ident_name | 83 --filter "mzRefiner $input_ident_name |
| 49 msLevels=$data_processing.precursor_refinement.precursor_refinement_ms_levels | 84 msLevels=$data_processing.precursor_refinement.precursor_refinement_ms_levels |
| 50 thresholdScore=$data_processing.precursor_refinement.thresholdScore | 85 thresholdScore=$data_processing.precursor_refinement.thresholdScore |
| 51 thresholdValue=$data_processing.precursor_refinement.thresholdValue | 86 thresholdValue=$data_processing.precursor_refinement.thresholdValue |
| 52 thresholdStep=$data_processing.precursor_refinement.thresholdStep | 87 thresholdStep=$data_processing.precursor_refinement.thresholdStep |
| 53 maxSteps=$data_processing.precursor_refinement.thresholdMaxSteps" | 88 maxSteps=$data_processing.precursor_refinement.thresholdMaxSteps assumeHighRes=1" |
| 54 #end if | |
| 55 | |
| 56 #if $data_processing.peak_picking.pick_peaks | |
| 57 --filter "peakPicking $data_processing.peak_picking.pick_peaks_algorithm msLevel=$data_processing.peak_picking.pick_peaks_ms_levels" | |
| 58 #end if | 89 #end if |
| 59 | 90 |
| 60 #if str($data_processing.charge_state_calculation.charge_state_calculation_method) == "predictor" | 91 #if str($data_processing.charge_state_calculation.charge_state_calculation_method) == "predictor" |
| 61 --filter "chargeStatePredictor | 92 --filter "chargeStatePredictor |
| 62 overrideExistingCharge=$data_processing.charge_state_calculation.predictor_overrideExistingCharge | 93 overrideExistingCharge=$data_processing.charge_state_calculation.predictor_overrideExistingCharge |
| 86 #if $data_processing.etd_filtering.do_etd_filtering | 117 #if $data_processing.etd_filtering.do_etd_filtering |
| 87 --filter "ETDFilter $data_processing.etd_filtering.remove_precursor | 118 --filter "ETDFilter $data_processing.etd_filtering.remove_precursor |
| 88 $data_processing.etd_filtering.remove_charge_reduced | 119 $data_processing.etd_filtering.remove_charge_reduced |
| 89 $data_processing.etd_filtering.remove_neutral_loss | 120 $data_processing.etd_filtering.remove_neutral_loss |
| 90 $data_processing.etd_filtering.blanket_removal | 121 $data_processing.etd_filtering.blanket_removal |
| 91 $data_processing.etd_filtering.matching_tolerance $data_processing.etd_filtering.matching_tolerance_units" | 122 $data_processing.etd_filtering.matching_tolerance$data_processing.etd_filtering.matching_tolerance_units" |
| 92 #end if | 123 #end if |
| 93 | 124 |
| 94 #if $data_processing.ms2denoise.denoise | 125 #if $data_processing.ms2denoise.denoise |
| 95 --filter "MS2Denoise $data_processing.ms2denoise.num_peaks $data_processing.ms2denoise.window_width $data_processing.ms2denoise.relax" | 126 --filter "MS2Denoise $data_processing.ms2denoise.num_peaks $data_processing.ms2denoise.window_width $data_processing.ms2denoise.relax" |
| 96 #end if | 127 #end if |
| 136 #if str($filtering.analyzer) != "false" | 167 #if str($filtering.analyzer) != "false" |
| 137 --filter "analyzer $filtering.analyzer" | 168 --filter "analyzer $filtering.analyzer" |
| 138 #end if | 169 #end if |
| 139 | 170 |
| 140 ## OUTPUT ENCODING | 171 ## OUTPUT ENCODING |
| 141 -- | |
| 142 #set $mz_encoding = str($settings.mz_encoding) | 172 #set $mz_encoding = str($settings.mz_encoding) |
| 143 #set $intensity_encoding = str($settings.intensity_encoding) | 173 #set $intensity_encoding = str($settings.intensity_encoding) |
| 144 #if $mz_encoding == $intensity_encoding | 174 #if $mz_encoding == $intensity_encoding |
| 145 #if $mz_encoding == "64" | 175 #if $mz_encoding == "64" |
| 146 --64 | 176 --64 |
| 169 | 199 |
| 170 #if $settings.gzip_compression | 200 #if $settings.gzip_compression |
| 171 --gzip | 201 --gzip |
| 172 #end if | 202 #end if |
| 173 | 203 |
| 204 #if $general_options.multi_run_output.do_multi_run_output == 'false': | |
| 205 --outfile '${os.path.splitext($basename)[0]}' | |
| 206 && sudo mv 'outputs/${os.path.splitext($basename)[0]}.${output_type}' '${output}' && sudo chown \$uid:\$gid '${output}' | |
| 207 #else | |
| 208 && sudo chown \$uid:\$gid 'outputs' -R | |
| 209 && ls -la outputs/ | |
| 210 #end if | |
| 211 | |
| 212 #if $data_processing.precursor_refinement.use_mzrefinement | |
| 213 && sudo mv '$output_refinement_name' '$output_refinement' && sudo chown \$uid:\$gid '$output_refinement' | |
| 214 #end if | |
| 174 ]]> | 215 ]]> |
| 175 </command> | 216 </command> |
| 176 </xml> | 217 </xml> |
| 177 | 218 |
| 178 <xml name="msconvertInputParameters"> | 219 <xml name="msconvertInputParameters"> |
| 220 <param name="license_agreement" type="boolean" label="Do you agree to the vendor licenses?" help="This tool uses proprietary vendor libraries; to run it you must agree to the vendor licenses. Read them at http://www.proteowizard.org/licenses.html"> | |
| 221 <validator type="expression" message="You must agree to the vendor licenses to run msconvert.">True == value</validator> | |
| 222 </param> | |
| 223 | |
| 179 <param name="output_type" type="select" label="Output Type"> | 224 <param name="output_type" type="select" label="Output Type"> |
| 180 <option value="mz5" selected="true">mz5</option> | 225 <option value="mz5" selected="true">mz5</option> |
| 181 <option value="mzML">mzML</option> | 226 <option value="mzML">mzML</option> |
| 182 <option value="mzXML">mzXML</option> | 227 <option value="mzXML">mzXML</option> |
| 183 <option value="mgf">mgf</option> | 228 <option value="mgf">mgf</option> |
| 184 <option value="ms2">ms2</option> | 229 <option value="ms2">ms2</option> |
| 185 </param> | 230 </param> |
| 186 | 231 |
| 187 <section name="data_processing" title="Data Processing Filters"> | 232 <section name="data_processing" title="Data Processing Filters"> |
| 188 | 233 <conditional name="peak_picking"> |
| 189 <conditional name="peak_picking"> | 234 <param type="boolean" name="pick_peaks" label="Apply peak picking?" truevalue="true" falsevalue="false" /> |
| 190 <param type="boolean" name="pick_peaks" label="Apply peak picking?" truevalue="true" falsevalue="false" /> | 235 <when value="false" /> |
| 191 <when value="false" /> | 236 <when value="true"> |
| 192 <when value="true"> | 237 <param name="pick_peaks_ms_levels" type="select" label="Peak Peaking - Apply to MS Levels"> |
| 193 <param name="pick_peaks_ms_levels" type="select" label="Peak Peaking - Apply to MS Levels"> | 238 <option value="1">MS1 Only (1)</option> |
| 194 <option value="1">MS1 Only (1)</option> | 239 <option value="2">MS2 Only (2)</option> |
| 195 <option value="2">MS2 Only (2)</option> | 240 <option value="2-">MS2 and on (2-)</option> |
| 196 <option value="2-">MS2 and on (2-)</option> | 241 <option value="1-" selected="true">All Levels (1-)</option> |
| 197 <option value="1-" selected="true">All Levels (1-)</option> | 242 </param> |
| 198 </param> | 243 <param type="select" name="pick_peaks_algorithm" label="Peak Picking - Algorithm" help="The vendor method only works on Agilent, Bruker, Sciex, Thermo data, and only on Windows (although some vendors work on Wine)"> |
| 199 <param type="select" name="pick_peaks_algorithm" label="Peak Picking - Algorithm" help="The vendor method only works on Agilent, Bruker, Sciex, Thermo data, and only on Windows (although some vendors work on Wine)"> | 244 <option value="vendor" selected="true">Prefer vendor algorithm, fallback to local-maximum</option> |
| 200 <option value="vendor" selected="true">Prefer vendor algorithm, fallback to local-maximum</option> | 245 <option value="cwt">CantWaiT - continuous wavelet transform</option> |
| 201 <option value="cwt">CantWaiT - continuous wavelet transform</option> | 246 </param> |
| 202 </param> | 247 </when> |
| 203 </when> | |
| 204 </conditional> | 248 </conditional> |
| 205 | 249 |
| 206 <conditional name="precursor_refinement"> | 250 <conditional name="precursor_refinement"> |
| 207 <param type="boolean" name="use_mzrefinement" label="Apply m/z refinement with identification data?" truevalue="true" falsevalue="false" checked="False" /> | 251 <param type="boolean" name="use_mzrefinement" label="Apply m/z refinement with identification data?" truevalue="true" falsevalue="false" checked="False" /> |
| 208 <when value="false"></when> | 252 <when value="false"></when> |
| 377 <option value="IT">Ion trap</option> | 421 <option value="IT">Ion trap</option> |
| 378 <option value="TOF">Time of flight</option> | 422 <option value="TOF">Time of flight</option> |
| 379 </param> | 423 </param> |
| 380 </section> | 424 </section> |
| 381 | 425 |
| 426 <section name="general_options" title="General Options"> | |
| 427 <param argument="--combineIonMobilitySpectra" type="boolean" label="Combine ion mobility spectra" help="When false, each mobility scan is written as a separate spectrum. When true, each retention time point will have a single merged scan. For Bruker TIMS spectra, the ion mobilities will be preserved in a separate binaryDataArray, and for TIMS PASEF MS2s, each precursor will be merged separately." /> | |
| 428 | |
| 429 <conditional name="scan_summing"> | |
| 430 <param name="do_scan_summing" type="boolean" truevalue="true" falsevalue="false" label="Sum adjacent scans" help="Sums MS2 sub-scans whose precursors are similar in the m/z, scan time, and/or ion mobility dimensions. It is useful for some Waters DDA data and Bruker PASEF data, where sub-scans should be summed together to increase the SNR" /> | |
| 431 <when value="false" /> | |
| 432 <when value="true"> | |
| 433 <param name="precursorTol" type="float" label="Precursor m/z tolerance" value="0.05" min="0" optional="true" help="Spectra with precursor m/z values with a difference less than this tolerance are summed together." /> | |
| 434 <param name="scanTimeTol" type="float" label="Scan time tolerance" value="10.0" min="0" optional="true" help="Spectra with scan times with a difference less than this tolerance (in seconds) are summed together." /> | |
| 435 <param name="ionMobilityTol" type="float" label="Ion mobility tolerance" value="0.01" min="0" optional="true" help="Spectra with ion mobility values with a difference less than this tolerance are summed together. Only relevant for ion mobility spectra." /> | |
| 436 </when> | |
| 437 </conditional> | |
| 438 | |
| 439 <param argument="--simAsSpectra" type="boolean" label="SIM as Spectra" help="Write selected ion monitoring as spectra, not chromatograms" /> | |
| 440 <param argument="--srmAsSpectra" type="boolean" label="SRM as Spectra" help="Write selected reaction monitoring as spectra, not chromatograms" /> | |
| 441 <param argument="--acceptZeroLengthSpectra" type="boolean" label="Accept zero-length spectra" help="Some vendor readers have an efficient way of filtering out empty spectra, but it takes more time to open the file" /> | |
| 442 <param argument="--ignoreUnknownInstrumentError" type="boolean" label="Ignore unknown instrument error" help="If true, if an instrument cannot be determined from a vendor file, it will not be an error" /> | |
| 443 | |
| 444 <conditional name="multi_run_output"> | |
| 445 <param name="do_multi_run_output" type="boolean" truevalue="true" falsevalue="false" label="Output multiple runs per file" help="Some input types can store multiple runs (samples) in a single file (e.g. WIFF). Each run must be written to a separate output file, so check this option if you want to output all runs for a file (each file will create a dataset collection)" /> | |
| 446 <when value="false"> | |
| 447 <param argument="--runIndexSet" type="integer" label="Select a single run for multi-run sources" value="0" min="0" help="For multi-run sources (e.g. WIFF), select only the specified run index (first run is index 0)" /> | |
| 448 </when> | |
| 449 <when value="true"> | |
| 450 <repeat name="run_index_set" title="Select runs for multi-run sources" help="For multi-run sources (e.g. WIFF), select only the specified run indices"> | |
| 451 <param name="from" type="integer" label="Run Index From" value="0" min="0" optional="false" /> | |
| 452 <param name="to" type="integer" label="Run Index To" value="0" min="0" optional="true" /> | |
| 453 </repeat> | |
| 454 </when> | |
| 455 </conditional> | |
| 456 </section> | |
| 382 | 457 |
| 383 <section name="settings" title="Output Encoding Settings"> | 458 <section name="settings" title="Output Encoding Settings"> |
| 384 <param type="select" name="mz_encoding" label="m/z Encoding Precision"> | 459 <param type="select" name="mz_encoding" label="m/z Encoding Precision"> |
| 385 <option value="64" selected="true">64</option> | 460 <option value="64" selected="true">64</option> |
| 386 <option value="32">32</option> | 461 <option value="32">32</option> |
| 402 </section> | 477 </section> |
| 403 </xml> | 478 </xml> |
| 404 | 479 |
| 405 <xml name="msconvertOutput"> | 480 <xml name="msconvertOutput"> |
| 406 <outputs> | 481 <outputs> |
| 407 <data format="mzml" name="output" label="${input.name.rsplit('.',1)[0]}.${output_type}" > | 482 <data format="mzml" name="output" label="${($input.name[:-4] if $input.name.endswith('.tar') else $input.name).rsplit('.',1)[0]}.${output_type}" > |
| 483 <filter>general_options['multi_run_output']['do_multi_run_output'] == False</filter> | |
| 408 <change_format> | 484 <change_format> |
| 409 <when input="output_type" value="mz5" format="mz5" /> | 485 <when input="output_type" value="mz5" format="mz5" /> |
| 410 <when input="output_type" value="mzXML" format="mzxml" /> | 486 <when input="output_type" value="mzXML" format="mzxml" /> |
| 411 <when input="output_type" value="ms2" format="ms2" /> | 487 <when input="output_type" value="ms2" format="ms2" /> |
| 412 <when input="output_type" value="mgf" format="mgf" /> | 488 <when input="output_type" value="mgf" format="mgf" /> |
| 413 </change_format> | 489 </change_format> |
| 414 </data> | 490 </data> |
| 415 <data format="csv" name="output_refinement" label="${input.name.rsplit('.',1)[0]}.mzRefinement.tsv"> | 491 <data format="tsv" name="output_refinement" label="${($input.name[:-4] if $input.name.endswith('.tar') else $input.name).rsplit('.',1)[0]}.mzRefinement.tsv"> |
| 416 <filter>data_processing['precursor_refinement']['use_mzrefinement'] == True</filter> | 492 <filter>data_processing['precursor_refinement']['use_mzrefinement'] == True</filter> |
| 417 </data> | 493 </data> |
| 494 <collection name="multi_run_output_list" type="list" label="${($input.name[:-4] if $input.name.endswith('.tar') else $input.name).rsplit('.',1)[0]}.${output_type}"> | |
| 495 <filter>general_options['multi_run_output']['do_multi_run_output'] == True</filter> | |
| 496 <discover_datasets pattern="__name_and_ext__" directory="outputs" /> | |
| 497 </collection> | |
| 418 </outputs> | 498 </outputs> |
| 419 </xml> | 499 </xml> |
| 420 | 500 |
| 421 | 501 |
| 422 <xml name="msconvert_tests"> | 502 <xml name="msconvert_tests"> |
| 423 <test> | 503 <test> |
| 424 <param name="input" value="small.mzML" /> | 504 <param name="input" value="small.mzML" /> |
| 505 <param name="license_agreement" value="true" /> | |
| 425 <param name="output_type" value="mzML" /> | 506 <param name="output_type" value="mzML" /> |
| 426 <param name="pick_peaks" value="true" /> | 507 <param name="pick_peaks" value="true" /> |
| 427 <param name="pick_peaks_algorithm" value="cwt" /> | 508 <param name="pick_peaks_algorithm" value="cwt" /> |
| 428 <param name="pick_peaks_ms_levels" value="1-" /> | 509 <param name="pick_peaks_ms_levels" value="1-" /> |
| 429 <output name="output" file="small-peakpicking-cwt-allMS.mzML" /> | 510 <output name="output" file="small-peakpicking-cwt-allMS.mzML" lines_diff="8" /> |
| 511 </test> | |
| 512 <test> | |
| 513 <param name="input" value="small.RAW" ftype="thermo.raw" /> | |
| 514 <param name="license_agreement" value="true" /> | |
| 515 <param name="output_type" value="mzML" /> | |
| 516 <param name="pick_peaks" value="true" /> | |
| 517 <param name="pick_peaks_algorithm" value="vendor" /> | |
| 518 <param name="pick_peaks_ms_levels" value="1-" /> | |
| 519 <output name="output" file="small-peakpicking-vendor-allMS.mzML" lines_diff="4" /> | |
| 520 </test> | |
| 521 <test> | |
| 522 <param name="input" value="ThyroglobMRM000003.d.tar" /> | |
| 523 <param name="license_agreement" value="true" /> | |
| 524 <param name="output_type" value="mzML" /> | |
| 525 <param name="combineIonMobilitySpectra" value="true" /> | |
| 526 <param name="do_scan_summing" value="true" /> | |
| 527 <output name="output" file="ThyroglobMRM000003.mzML" lines_diff="4" /> | |
| 528 </test> | |
| 529 <test> | |
| 530 <param name="input" value="MassLynxTest.raw.tar" /> | |
| 531 <param name="license_agreement" value="true" /> | |
| 532 <param name="output_type" value="mzML" /> | |
| 533 <output name="output" file="MassLynxTest.mzML" lines_diff="4" /> | |
| 534 </test> | |
| 535 <test> | |
| 536 <param name="input" value="AgilentMassHunterTest.d.tar" /> | |
| 537 <param name="license_agreement" value="true" /> | |
| 538 <param name="output_type" value="mzXML" /> | |
| 539 <output name="output" file="AgilentMassHunterTest.mzXML" lines_diff="4" /> | |
| 540 </test> | |
| 541 <test> | |
| 542 <param name="input" value="BrukerBafTest.d.tar" /> | |
| 543 <param name="license_agreement" value="true" /> | |
| 544 <param name="output_type" value="mzML" /> | |
| 545 <param name="pick_peaks" value="true" /> | |
| 546 <param name="pick_peaks_algorithm" value="vendor" /> | |
| 547 <param name="pick_peaks_ms_levels" value="1-" /> | |
| 548 <output name="output" file="BrukerBafTest.mzML" lines_diff="4" /> | |
| 549 </test> | |
| 550 <test> | |
| 551 <param name="input" value="SciexTest.wiff.tar" /> | |
| 552 <param name="license_agreement" value="true" /> | |
| 553 <param name="output_type" value="mzML" /> | |
| 554 <param name="do_multi_run_output" value="false" /> | |
| 555 <param name="runIndexSet" value="0" /> | |
| 556 <output name="output" file="SciexTest-HPINalone.mzML" lines_diff="4" /> | |
| 557 </test> | |
| 558 <test> | |
| 559 <param name="input" value="SciexTest.wiff.tar" /> | |
| 560 <param name="license_agreement" value="true" /> | |
| 561 <param name="output_type" value="mzXML" /> | |
| 562 <param name="do_multi_run_output" value="false" /> | |
| 563 <param name="runIndexSet" value="0" /> | |
| 564 <param name="indices_0|from" value="0" /> | |
| 565 <param name="indices_0|to" value="499" /> | |
| 566 <param name="srmAsSpectra" value="true" /> | |
| 567 <output name="output" file="SciexTest-HPINalone-srmAsSpectra.mzXML" lines_diff="4" /> | |
| 568 </test> | |
| 569 <test> | |
| 570 <param name="input" value="SciexTest.wiff.tar" /> | |
| 571 <param name="license_agreement" value="true" /> | |
| 572 <param name="output_type" value="mzXML" /> | |
| 573 <param name="do_multi_run_output" value="false" /> | |
| 574 <param name="runIndexSet" value="1" /> | |
| 575 <param name="indices_0|from" value="0" /> | |
| 576 <param name="indices_0|to" value="499" /> | |
| 577 <param name="srmAsSpectra" value="true" /> | |
| 578 <output name="output" file="SciexTest-HPINalone-NE-srmAsSpectra.mzXML" lines_diff="4" /> | |
| 579 </test> | |
| 580 <test> | |
| 581 <param name="input" value="SciexTest.wiff.tar" /> | |
| 582 <param name="license_agreement" value="true" /> | |
| 583 <param name="output_type" value="mzML" /> | |
| 584 <param name="do_multi_run_output" value="true" /> | |
| 585 <param name="run_index_set_0|from" value="0" /> | |
| 586 <param name="run_index_set_0|to" value="1" /> | |
| 587 <output_collection name="multi_run_output_list" type="list"> | |
| 588 <element name="SciexTest-HPINalone" file="SciexTest-HPINalone.mzML" lines_diff="4" /> | |
| 589 <element name="SciexTest-HPINalone+NE" file="SciexTest-HPINalone-NE.mzML" lines_diff="4" /> | |
| 590 </output_collection> | |
| 591 </test> | |
| 592 <test> | |
| 593 <param name="input" value="SciexTest.wiff.tar" /> | |
| 594 <param name="license_agreement" value="true" /> | |
| 595 <param name="output_type" value="mzML" /> | |
| 596 <param name="do_multi_run_output" value="true" /> | |
| 597 <output_collection name="multi_run_output_list" type="list"> | |
| 598 <element name="SciexTest-HPINalone" file="SciexTest-HPINalone.mzML" lines_diff="4" /> | |
| 599 <element name="SciexTest-HPINalone+NE" file="SciexTest-HPINalone-NE.mzML" lines_diff="4" /> | |
| 600 </output_collection> | |
| 430 </test> | 601 </test> |
| 431 | 602 |
| 432 <!-- this data file only has profile MS1, so the result is the same --> | 603 <!-- this data file only has profile MS1, so the result is the same --> |
| 433 <test> | 604 <test> |
| 434 <param name="input" value="small.mzML" /> | 605 <param name="input" value="small.mzML" /> |
| 606 <param name="license_agreement" value="true" /> | |
| 435 <param name="output_type" value="mzML" /> | 607 <param name="output_type" value="mzML" /> |
| 436 <param name="pick_peaks" value="true" /> | 608 <param name="pick_peaks" value="true" /> |
| 437 <param name="pick_peaks_algorithm" value="cwt" /> | 609 <param name="pick_peaks_algorithm" value="cwt" /> |
| 438 <param name="pick_peaks_ms_levels" value="1" /> | 610 <param name="pick_peaks_ms_levels" value="1" /> |
| 439 <output name="output" file="small-peakpicking-cwt-allMS.mzML" /> | 611 <output name="output" file="small-peakpicking-cwt-allMS.mzML" lines_diff="8" /> |
| 440 </test> | 612 </test> |
| 441 <test> | 613 <test> |
| 442 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 614 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 615 <param name="license_agreement" value="true" /> | |
| 443 <param name="output_type" value="mz5" /> | 616 <param name="output_type" value="mz5" /> |
| 444 <param name="mz_encoding" value="64" /> | 617 <param name="mz_encoding" value="64" /> |
| 445 <param name="intensity_encoding" value="64" /> | 618 <param name="intensity_encoding" value="64" /> |
| 446 <output name="output" file="small-zlib-64.mz5" compare="sim_size" delta="150000" /> | 619 <output name="output" file="small-zlib-64.mz5" compare="sim_size" delta="150000" /> |
| 447 </test> | 620 </test> |
| 448 <test> | 621 <test> |
| 449 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 622 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 623 <param name="license_agreement" value="true" /> | |
| 450 <param name="output_type" value="mzXML" /> | 624 <param name="output_type" value="mzXML" /> |
| 451 <param name="mz_encoding" value="32" /> | 625 <param name="mz_encoding" value="32" /> |
| 452 <param name="intensity_encoding" value="32" /> | 626 <param name="intensity_encoding" value="32" /> |
| 453 <output name="output" file="small-zlib-32.mzXML" /> | 627 <output name="output" file="small-zlib-32.mzXML" lines_diff="6" /> |
| 454 </test> | 628 </test> |
| 455 <!-- TODO: how to test gzipped output? | 629 <!-- TODO: how to test gzipped output? |
| 456 <test> | 630 <test> |
| 457 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 631 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 458 <param name="output_type" value="mzXML" /> | 632 <param name="output_type" value="mzXML" /> |
| 472 <output name="output" file="small-off-32.mzML.gz" compare="sim_size" delta="100" /> | 646 <output name="output" file="small-off-32.mzML.gz" compare="sim_size" delta="100" /> |
| 473 </test>--> | 647 </test>--> |
| 474 | 648 |
| 475 <test> | 649 <test> |
| 476 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 650 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 477 <param name="output_type" value="mzML" /> | 651 <param name="license_agreement" value="true" /> |
| 478 <param name="binary_compression" value="numpressLinearPic" /> | 652 <param name="output_type" value="mzML" /> |
| 479 <output name="output" file="small-numpressLP.mzML" /> | 653 <param name="binary_compression" value="numpressLinearPic" /> |
| 480 </test> | 654 <output name="output" file="small-numpressLP.mzML" lines_diff="114" /> |
| 481 | 655 </test> |
| 482 <test> | 656 |
| 483 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 657 <test> |
| 658 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | |
| 659 <param name="license_agreement" value="true" /> | |
| 484 <param name="output_type" value="mzML" /> | 660 <param name="output_type" value="mzML" /> |
| 485 <param name="binary_compression" value="numpressLinearSlof" /> | 661 <param name="binary_compression" value="numpressLinearSlof" /> |
| 486 <output name="output" file="small-numpressLS.mzML" /> | 662 <output name="output" file="small-numpressLS.mzML" lines_diff="114" /> |
| 487 </test> | 663 </test> |
| 488 | 664 |
| 489 <test> | 665 <test> |
| 490 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 666 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 667 <param name="license_agreement" value="true" /> | |
| 491 <param name="output_type" value="mzML" /> | 668 <param name="output_type" value="mzML" /> |
| 492 <param name="binary_compression" value="numpressLinear" /> | 669 <param name="binary_compression" value="numpressLinear" /> |
| 493 <output name="output" file="small-numpressL.mzML" /> | 670 <output name="output" file="small-numpressL.mzML" lines_diff="114" /> |
| 494 </test> | 671 </test> |
| 495 | 672 |
| 496 <test> | 673 <test> |
| 497 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 674 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 675 <param name="license_agreement" value="true" /> | |
| 498 <param name="output_type" value="mzML" /> | 676 <param name="output_type" value="mzML" /> |
| 499 <param name="binary_compression" value="numpressPic" /> | 677 <param name="binary_compression" value="numpressPic" /> |
| 500 <output name="output" file="small-numpressP.mzML" /> | 678 <output name="output" file="small-numpressP.mzML" lines_diff="114" /> |
| 501 </test> | 679 </test> |
| 502 | 680 |
| 503 <test> | 681 <test> |
| 504 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 682 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 683 <param name="license_agreement" value="true" /> | |
| 505 <param name="output_type" value="mzML" /> | 684 <param name="output_type" value="mzML" /> |
| 506 <param name="binary_compression" value="numpressSlof" /> | 685 <param name="binary_compression" value="numpressSlof" /> |
| 507 <output name="output" file="small-numpressS.mzML" /> | 686 <output name="output" file="small-numpressS.mzML" lines_diff="114" /> |
| 508 </test> | 687 </test> |
| 509 | 688 |
| 510 <test> | 689 <test> |
| 511 <param name="input" value="Rpal_01.mz5" /> | 690 <param name="input" value="Rpal_01.mz5" /> |
| 691 <param name="license_agreement" value="true" /> | |
| 512 <param name="output_type" value="mzML" /> | 692 <param name="output_type" value="mzML" /> |
| 513 <param name="binary_compression" value="numpressLinearPic" /> | 693 <param name="binary_compression" value="numpressLinearPic" /> |
| 514 <param name="use_mzrefinement" value="true" /> | 694 <param name="use_mzrefinement" value="true" /> |
| 515 <param name="input_ident" value="Rpal_01.pepXML" /> | 695 <param name="input_ident" value="Rpal_01.pepXML" /> |
| 516 <param name="thresholdScore" value="mvh" /> | 696 <param name="thresholdScore" value="mvh" /> |
| 519 <output name="output_refinement" file="Rpal_01.pepXML.mzRefinement.tsv" /> | 699 <output name="output_refinement" file="Rpal_01.pepXML.mzRefinement.tsv" /> |
| 520 </test> | 700 </test> |
| 521 | 701 |
| 522 <test> | 702 <test> |
| 523 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 703 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 704 <param name="license_agreement" value="true" /> | |
| 524 <param name="output_type" value="mzML" /> | 705 <param name="output_type" value="mzML" /> |
| 525 <param name="binary_compression" value="numpressLinearPic" /> | 706 <param name="binary_compression" value="numpressLinearPic" /> |
| 526 <param name="charge_state_calculation_method" value="predictor" /> | 707 <param name="charge_state_calculation_method" value="predictor" /> |
| 527 <param name="predictor_overrideExistingCharge" value="true" /> | 708 <param name="predictor_overrideExistingCharge" value="true" /> |
| 528 <param name="minMultipleCharge" value="2" /> | 709 <param name="minMultipleCharge" value="2" /> |
| 529 <param name="maxMultipleCharge" value="5" /> | 710 <param name="maxMultipleCharge" value="5" /> |
| 530 <param name="singleChargeFractionTIC" value="0.95" /> | 711 <param name="singleChargeFractionTIC" value="0.95" /> |
| 531 <param name="maxKnownCharge" value="8" /> | 712 <param name="maxKnownCharge" value="8" /> |
| 532 <output name="output" file="small-chargeStatePredictor.mzML" /> | 713 <output name="output" file="small-chargeStatePredictor.mzML" lines_diff="114" /> |
| 533 </test> | 714 </test> |
| 534 <test> | 715 <test> |
| 535 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 716 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 717 <param name="license_agreement" value="true" /> | |
| 536 <param name="output_type" value="mzML" /> | 718 <param name="output_type" value="mzML" /> |
| 537 <param name="binary_compression" value="numpressLinearPic" /> | 719 <param name="binary_compression" value="numpressLinearPic" /> |
| 538 <param name="charge_state_calculation_method" value="turbocharger" /> | 720 <param name="charge_state_calculation_method" value="turbocharger" /> |
| 539 <param name="minCharge" value="1" /> | 721 <param name="minCharge" value="1" /> |
| 540 <param name="maxCharge" value="5" /> | 722 <param name="maxCharge" value="5" /> |
| 541 <param name="precursorsBefore" value="1" /> | 723 <param name="precursorsBefore" value="1" /> |
| 542 <param name="precursorsAfter" value="1" /> | 724 <param name="precursorsAfter" value="1" /> |
| 543 <param name="halfIsoWidth" value="1.5" /> | 725 <param name="halfIsoWidth" value="1.5" /> |
| 544 <param name="defaultMinCharge" value="1" /> | 726 <param name="defaultMinCharge" value="1" /> |
| 545 <param name="defaultMaxCharge" value="5" /> | 727 <param name="defaultMaxCharge" value="5" /> |
| 546 <output name="output" file="small-turbocharger.mzML" /> | 728 <output name="output" file="small-turbocharger.mzML" lines_diff="114" /> |
| 547 </test> | 729 </test> |
| 548 <test> | 730 <test> |
| 549 <param name="input" value="D100930_yeast_SCX10S_rak_ft8E_pc_01.mz5" /> | 731 <param name="input" value="D100930_yeast_SCX10S_rak_ft8E_pc_01.mz5" /> |
| 732 <param name="license_agreement" value="true" /> | |
| 550 <param name="output_type" value="mzML" /> | 733 <param name="output_type" value="mzML" /> |
| 551 <param name="do_etd_filtering" value="true" /> | 734 <param name="do_etd_filtering" value="true" /> |
| 552 <param name="remove_precursor" value="true" /> | 735 <param name="remove_precursor" value="true" /> |
| 553 <param name="remove_charge_reduced" value="true" /> | 736 <param name="remove_charge_reduced" value="true" /> |
| 554 <param name="remove_neutral_loss" value="false" /> | 737 <param name="remove_neutral_loss" value="false" /> |
| 558 <param name="binary_compression" value="numpressLinearPic" /> | 741 <param name="binary_compression" value="numpressLinearPic" /> |
| 559 <output name="output" file="D100930_yeast_SCX10S_rak_ft8E_pc_01-etdfilter.mzML" /> | 742 <output name="output" file="D100930_yeast_SCX10S_rak_ft8E_pc_01-etdfilter.mzML" /> |
| 560 </test> | 743 </test> |
| 561 <test> | 744 <test> |
| 562 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 745 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 746 <param name="license_agreement" value="true" /> | |
| 563 <param name="output_type" value="mzML" /> | 747 <param name="output_type" value="mzML" /> |
| 564 <param name="thresholds_0|threshold_type" value="count" /> | 748 <param name="thresholds_0|threshold_type" value="count" /> |
| 565 <param name="thresholds_0|value" value="100" /> | 749 <param name="thresholds_0|value" value="100" /> |
| 566 <param name="thresholds_0|orientation" value="most-intense" /> | 750 <param name="thresholds_0|orientation" value="most-intense" /> |
| 567 <param name="thresholds_1|threshold_type" value="absolute" /> | 751 <param name="thresholds_1|threshold_type" value="absolute" /> |
| 568 <param name="thresholds_1|value" value="1" /> | 752 <param name="thresholds_1|value" value="1" /> |
| 569 <param name="thresholds_1|orientation" value="most-intense" /> | 753 <param name="thresholds_1|orientation" value="most-intense" /> |
| 570 <param name="binary_compression" value="numpressLinearPic" /> | 754 <param name="binary_compression" value="numpressLinearPic" /> |
| 571 <output name="output" file="small-threshold.mzML" /> | 755 <output name="output" file="small-threshold.mzML" lines_diff="114" /> |
| 572 </test> | 756 </test> |
| 573 <test> | 757 <test> |
| 574 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 758 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 759 <param name="license_agreement" value="true" /> | |
| 575 <param name="output_type" value="mzML" /> | 760 <param name="output_type" value="mzML" /> |
| 576 <param name="do_mzwindow_filter" value="true" /> | 761 <param name="do_mzwindow_filter" value="true" /> |
| 577 <param name="mz_window_from" value="420" /> | 762 <param name="mz_window_from" value="420" /> |
| 578 <param name="mz_window_to" value="840" /> | 763 <param name="mz_window_to" value="840" /> |
| 579 <param name="binary_compression" value="numpressLinearPic" /> | 764 <param name="binary_compression" value="numpressLinearPic" /> |
| 580 <output name="output" file="small-mzWindow.mzML" /> | 765 <output name="output" file="small-mzWindow.mzML" lines_diff="114" /> |
| 581 </test> | 766 </test> |
| 582 <test> | 767 <test> |
| 583 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 768 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 769 <param name="license_agreement" value="true" /> | |
| 584 <param name="output_type" value="mzML" /> | 770 <param name="output_type" value="mzML" /> |
| 585 <param name="denoise" value="true" /> | 771 <param name="denoise" value="true" /> |
| 586 <param name="num_peaks" value="10" /> | 772 <param name="num_peaks" value="10" /> |
| 587 <param name="window_width" value="40" /> | 773 <param name="window_width" value="40" /> |
| 588 <param name="relax" value="false" /> | 774 <param name="relax" value="false" /> |
| 589 <param name="binary_compression" value="numpressLinearPic" /> | 775 <param name="binary_compression" value="numpressLinearPic" /> |
| 590 <output name="output" file="small-denoise.mzML" /> | 776 <output name="output" file="small-denoise.mzML" lines_diff="114" /> |
| 591 </test> | 777 </test> |
| 592 <test> | 778 <test> |
| 593 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 779 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 780 <param name="license_agreement" value="true" /> | |
| 594 <param name="output_type" value="mzML" /> | 781 <param name="output_type" value="mzML" /> |
| 595 <param name="ms2deisotope" value="true" /> | 782 <param name="ms2deisotope" value="true" /> |
| 596 <param name="binary_compression" value="numpressLinearPic" /> | 783 <param name="binary_compression" value="numpressLinearPic" /> |
| 597 <output name="output" file="small-deisotope.mzML" /> | 784 <output name="output" file="small-deisotope.mzML" lines_diff="114" /> |
| 598 </test> | 785 </test> |
| 599 <test> | 786 <test> |
| 600 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 787 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 788 <param name="license_agreement" value="true" /> | |
| 601 <param name="output_type" value="mzML" /> | 789 <param name="output_type" value="mzML" /> |
| 602 <param name="activation" value="CID" /> | 790 <param name="activation" value="CID" /> |
| 603 <param name="binary_compression" value="numpressLinearPic" /> | 791 <param name="binary_compression" value="numpressLinearPic" /> |
| 604 <output name="output" file="small-activation.mzML" /> | 792 <output name="output" file="small-activation.mzML" lines_diff="114" /> |
| 605 </test> | 793 </test> |
| 606 <test> | 794 <test> |
| 607 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 795 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 796 <param name="license_agreement" value="true" /> | |
| 608 <param name="output_type" value="mzML" /> | 797 <param name="output_type" value="mzML" /> |
| 609 <param name="indices_0|from" value="2" /> | 798 <param name="indices_0|from" value="2" /> |
| 610 <param name="indices_0|to" value="4" /> | 799 <param name="indices_0|to" value="4" /> |
| 611 <param name="indices_1|from" value="10" /> | 800 <param name="indices_1|from" value="10" /> |
| 612 <param name="indices_1|to" value="10" /> | 801 <param name="indices_1|to" value="10" /> |
| 613 <param name="indices_2|from" value="13" /> | 802 <param name="indices_2|from" value="13" /> |
| 614 <param name="indices_2|to" value="15" /> | 803 <param name="indices_2|to" value="15" /> |
| 615 <param name="binary_compression" value="numpressLinearPic" /> | 804 <param name="binary_compression" value="numpressLinearPic" /> |
| 616 <output name="output" file="small-index-filter.mzML" /> | 805 <output name="output" file="small-index-filter.mzML" lines_diff="32" /> |
| 617 </test> | 806 </test> |
| 618 <test> | 807 <test> |
| 619 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 808 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 809 <param name="license_agreement" value="true" /> | |
| 620 <param name="output_type" value="mzML" /> | 810 <param name="output_type" value="mzML" /> |
| 621 <param name="strip_it" value="true" /> | 811 <param name="strip_it" value="true" /> |
| 622 <param name="binary_compression" value="numpressLinearPic" /> | 812 <param name="binary_compression" value="numpressLinearPic" /> |
| 623 <output name="output" file="small-strip-it.mzML" /> | 813 <output name="output" file="small-strip-it.mzML" lines_diff="100" /> |
| 624 </test> | 814 </test> |
| 625 <test> | 815 <test> |
| 626 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 816 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 817 <param name="license_agreement" value="true" /> | |
| 627 <param name="output_type" value="mzML" /> | 818 <param name="output_type" value="mzML" /> |
| 628 <param name="do_ms_level_filter" value="true" /> | 819 <param name="do_ms_level_filter" value="true" /> |
| 629 <param name="ms_level_from" value="2" /> | 820 <param name="ms_level_from" value="2" /> |
| 630 <param name="ms_level_to" value="2" /> | 821 <param name="ms_level_to" value="2" /> |
| 631 <param name="binary_compression" value="numpressLinearPic" /> | 822 <param name="binary_compression" value="numpressLinearPic" /> |
| 632 <output name="output" file="small-ms-level-filter.mzML" /> | 823 <output name="output" file="small-ms-level-filter.mzML" lines_diff="86" /> |
| 633 </test> | 824 </test> |
| 634 <test> | 825 <test> |
| 635 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 826 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 827 <param name="license_agreement" value="true" /> | |
| 636 <param name="output_type" value="mzML" /> | 828 <param name="output_type" value="mzML" /> |
| 637 <param name="polarity" value="positive" /> | 829 <param name="polarity" value="positive" /> |
| 638 <param name="binary_compression" value="numpressLinearPic" /> | 830 <param name="binary_compression" value="numpressLinearPic" /> |
| 639 <output name="output" file="small-polarity-filter.mzML" /> | 831 <output name="output" file="small-polarity-filter.mzML" lines_diff="114" /> |
| 640 </test> | 832 </test> |
| 641 <test> | 833 <test> |
| 642 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 834 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 835 <param name="license_agreement" value="true" /> | |
| 643 <param name="output_type" value="mzML" /> | 836 <param name="output_type" value="mzML" /> |
| 644 <param name="analyzer" value="IT" /> | 837 <param name="analyzer" value="IT" /> |
| 645 <param name="binary_compression" value="numpressLinearPic" /> | 838 <param name="binary_compression" value="numpressLinearPic" /> |
| 646 <output name="output" file="small-analyzer-filter.mzML" /> | 839 <output name="output" file="small-analyzer-filter.mzML" lines_diff="100" /> |
| 647 </test> | 840 </test> |
| 648 <test> | 841 <test> |
| 649 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> | 842 <param name="input" value="small-peakpicking-cwt-allMS.mzML" /> |
| 843 <param name="license_agreement" value="true" /> | |
| 650 <param name="output_type" value="mzML" /> | 844 <param name="output_type" value="mzML" /> |
| 651 <param name="scan_numbers_0|from" value="3" /> | 845 <param name="scan_numbers_0|from" value="3" /> |
| 652 <param name="scan_numbers_0|to" value="5" /> | 846 <param name="scan_numbers_0|to" value="5" /> |
| 653 <param name="scan_numbers_1|from" value="11" /> | 847 <param name="scan_numbers_1|from" value="11" /> |
| 654 <param name="scan_numbers_1|to" value="11" /> | 848 <param name="scan_numbers_1|to" value="11" /> |
| 655 <param name="scan_numbers_2|from" value="14" /> | 849 <param name="scan_numbers_2|from" value="14" /> |
| 656 <param name="scan_numbers_2|to" value="16" /> | 850 <param name="scan_numbers_2|to" value="16" /> |
| 657 <param name="binary_compression" value="numpressLinearPic" /> | 851 <param name="binary_compression" value="numpressLinearPic" /> |
| 658 <output name="output" file="small-index-filter.mzML" /> <!-- the scan numbers here produce the same output as the index test above --> | 852 <output name="output" file="small-index-filter.mzML" lines_diff="86"/> <!-- the scan numbers here produce the same output as the index test above --> |
| 659 </test> | 853 </test> |
| 660 <!--<test> | 854 <!--<test> |
| 661 <param name="input" value="small.mzML" /> | 855 <param name="input" value="small.mzML" /> |
| 662 <param name="output_type" value="mzML" /> | 856 <param name="output_type" value="mzML" /> |
| 663 <param name="binary_compression" value="numpressLinearPic" /> | 857 <param name="binary_compression" value="numpressLinearPic" /> |
| 665 </test>--> | 859 </test>--> |
| 666 </xml> | 860 </xml> |
| 667 <xml name="msconvert_help"> | 861 <xml name="msconvert_help"> |
| 668 **What it does** | 862 **What it does** |
| 669 | 863 |
| 670 Allows interconversion within various mass spectrometry peak list formats. Additional options such as filtering and/or precursor recalculation are available. | 864 Converts mass spectrometry (MS) files: proprietary MS vendor formats can be converted to open MS formats (mzML, mzXML, MGF, MS1/MS2) and open formats can be converted to other open formats. Additional options such as filtering and/or precursor recalculation are available. |
| 671 | 865 |
| 672 You can view the original documentation here_. | 866 You can view the original documentation here_. |
| 673 | 867 |
| 674 .. _here: http://proteowizard.sourceforge.net/tools/msconvert.html | 868 .. _here: http://proteowizard.sourceforge.net/tools/msconvert.html |
| 675 </xml> | 869 </xml> |
