annotate thermo_converter.xml @ 11:19e45916daf9 draft default tip

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 2d431b6ee383f3013d6de3cce64349d51642c33b"
author galaxyp
date Wed, 21 Apr 2021 12:23:27 +0000
parents b9b385097f13
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
1 <tool id="thermo_raw_file_converter" name="Thermo" version="@TOOL_VERSION@+galaxy0" profile="20.05">
4
344e10282449 planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit d570672a28e9603c044473e1278e48623a15e93e
galaxyp
parents: 3
diff changeset
2 <description>RAW file converter</description>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
3 <macros>
11
19e45916daf9 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 2d431b6ee383f3013d6de3cce64349d51642c33b"
galaxyp
parents: 10
diff changeset
4 <token name="@TOOL_VERSION@">1.3.4</token>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
5 </macros>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
6 <requirements>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
7 <requirement type="package" version="@TOOL_VERSION@">thermorawfileparser</requirement>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
8 </requirements>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
9 <stdio>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
10 <regex match="ERROR" source="both" level="fatal" description="Fatal error"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
11 </stdio>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
12 <version_command><![CDATA[ThermoRawFileParser.sh --version]]></version_command>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
13 <command>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
14 <![CDATA[
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
15 #import re
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
16
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
17 #set $input_name = re.sub('[^\w\-\.]', '_', $input_file.element_identifier.replace(".raw", "") + ".raw")
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
18 ln -s -f '$input_file' '$input_name' &&
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
19
6
2d80c8b2dfc2 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 51cb9a683762b514de76c1654e5e5cac3ff443f8"
galaxyp
parents: 5
diff changeset
20 ThermoRawFileParser.sh
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
21 --input='$input_name'
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
22 --output_file='$output'
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
23 -f=$format_cond.output_format
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
24 #if $output_metadata_selector != "off":
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
25 --metadata="$output_metadata_selector"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
26 --metadata_output_file='$output_metadata'
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
27 #end if
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
28 #if $format_cond.output_format == "0"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
29 $format_cond.mgfPrecursor
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
30 #end if
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
31 #if $format_cond.output_format in ['1', '2']
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
32 $format_cond.zlib_boolean
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
33 $format_cond.peakpicking_boolean
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
34 #end if
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
35 $ignore_instrument_errors_boolean
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
36 $allDetectors
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
37 $includeExceptionData
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
38 #if $msLevel != ''
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
39 --msLevel="$msLevel"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
40 #end if
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
41 ]]>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
42 </command>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
43 <inputs>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
44 <param argument="--input" name="input_file" type="data" format="thermo.raw" label="Thermo RAW file" help="" optional="False"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
45 <conditional name="format_cond">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
46 <param argument="--format" name="output_format" type="select" label="Output format">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
47 <option value="0">mgf</option>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
48 <option value="1" selected="True">mzml</option>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
49 <option value="2">Indexed mzml</option>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
50 <!-- <option value="3">Parquet</option> -->
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
51 </param>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
52 <when value="0">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
53 <param argument="--mgfPrecursor" type="boolean" truevalue="--mgfPrecursor" falsevalue="" label="Include precursor scan number in MGF file" help=""/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
54 </when>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
55 <when value="1">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
56 <param argument="--noZlibCompression" name="zlib_boolean" type="boolean" truevalue="" falsevalue="-z" checked="true"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
57 label="Use zlib compression for the m/z ratios and intensities" help=""/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
58 <param argument="--noPeakPicking" name="peakpicking_boolean" type="boolean" truevalue="" falsevalue="-p" checked="true"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
59 label="Use the peak picking provided by the native thermo library" help=""/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
60 </when>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
61 <when value="2">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
62 <param argument="--noZlibCompression" name="zlib_boolean" type="boolean" truevalue="" falsevalue="-z" checked="true"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
63 label="Use zlib compression for the m/z ratios and intensities" help=""/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
64 <param argument="--noPeakPicking" name="peakpicking_boolean" type="boolean" truevalue="" falsevalue="-p" checked="true"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
65 label="Use the peak picking provided by the native thermo library" help=""/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
66 </when>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
67 <when value="3"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
68 </conditional>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
69 <param argument="--metadata" name="output_metadata_selector" type="select" label="Output metadata">
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
70 <option value="off" selected="True">No</option>
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
71 <option value="0">json</option>
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
72 <option value="1">txt</option>
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
73 </param>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
74 <param argument="--ignoreInstrumentErrors" name="ignore_instrument_errors_boolean" type="boolean" truevalue="-e" falsevalue="" checked="true"
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
75 label="Ignore missing instrument properties" help="If false, it stops the conversion if instrument properties are missing"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
76 <param argument="--allDetectors" type="boolean" truevalue="--allDetectors" falsevalue="" checked="false" label="Extract additional detector data" help="UV/PDA etc"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
77 <param argument="--includeExceptionData" type="boolean" truevalue="--includeExceptionData" falsevalue="" label="Include reference and exception data"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
78 <param argument="--msLevel" type="text" value="" label="Select MS levels " help="(MS1, MS2, etc) included in the output, should be a comma-separated list of integers ( 1,2,3 ) and/or intervals ( 1-3 ), open-end intervals ( 1- ) are allowed">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
79 <sanitizer invalid_char="">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
80 <valid initial="string.digits">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
81 <add value="-"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
82 <add value=","/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
83 </valid>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
84 </sanitizer>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
85 </param>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
86 </inputs>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
87 <outputs>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
88 <data name="output" format="mzml" label="${tool.name} on ${on_string}">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
89 <change_format>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
90 <when input="format_cond.output_format" value="0" format="mgf"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
91 <!-- <when input="format_cond.output_format" value="3" format="parquet"/> -->
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
92 </change_format>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
93 </data>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
94 <data name="output_metadata" format="txt" label="${tool.name} on ${on_string}: metadata">
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
95 <filter>output_metadata_selector != "off"</filter>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
96 <change_format>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
97 <when input="output_metadata_selector" value="0" format="json"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
98 </change_format>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
99 </data>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
100 </outputs>
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
101
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
102 <tests>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
103 <!-- mgf test, no metadata -->
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
104 <test expect_num_outputs="1">
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
105 <param name="input_file" value="really_small.raw" ftype="thermo.raw"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
106 <conditional name="format_cond">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
107 <param name="output_format" value="0"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
108 <param name="mgfPrecursor" value="true"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
109 </conditional>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
110 <output name="output" ftype="mgf" value="really_small.mgf">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
111 <assert_contents>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
112 <has_text text="SCANS=36"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
113 <has_text text="RTINSECONDS=73.863181104"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
114 <has_text text="PEPMASS=675.248779296875"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
115 <has_text text="CHARGE=2+"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
116 <has_text text="121.3116455 920.2367553711"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
117 <has_text text="229.2241211 1137.6958007813"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
118 <has_text text="1577.8967285 1487.9519042969"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
119 </assert_contents>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
120 </output>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
121 <assert_command>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
122 <has_text text="--mgfPrecursor"></has_text>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
123 </assert_command>
8
26c6706bfb07 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit a502d3fbf1f1ecfca1c9b115beab9d9c0e358fb5"
galaxyp
parents: 7
diff changeset
124 </test>
26c6706bfb07 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit a502d3fbf1f1ecfca1c9b115beab9d9c0e358fb5"
galaxyp
parents: 7
diff changeset
125
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
126 <!-- mzml test and json metadata -->
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
127 <test expect_num_outputs="2">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
128 <param name="input_file" value="really_small.raw" ftype="thermo.raw"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
129 <conditional name="format_cond">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
130 <param name="output_format" value="1"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
131 </conditional>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
132 <param name="output_metadata_selector" value="0"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
133 <output name="output" file="really_small.mzml" ftype="mzml"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
134 <output name="output_metadata" value="really_small.json" ftype="json"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
135 <assert_command>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
136 <not_has_text text="--mgfPrecursor"></not_has_text>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
137 </assert_command>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
138 </test>
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
139
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
140 <!-- mzml test (wo zlib compression and peak picking) and json metadata -->
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
141 <test expect_num_outputs="2">
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
142 <param name="input_file" value="really_small.raw" ftype="thermo.raw"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
143 <conditional name="format_cond">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
144 <param name="output_format" value="1"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
145 <param name="zlib_boolean" value="false"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
146 <param name="peakpicking_boolean" value="false"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
147 </conditional>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
148 <param name="output_metadata_selector" value="0"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
149 <output name="output" file="really_small_ext.mzml" ftype="mzml"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
150 <output name="output_metadata" value="really_small.json" ftype="json"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
151 <assert_command>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
152 <not_has_text text="--mgfPrecursor"></not_has_text>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
153 <has_text text="-z "></has_text>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
154 <has_text text="-p "></has_text>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
155 </assert_command>
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
156 </test>
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
157
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
158 <!-- indexed mzml, txt metadata (+ extra options) -->
5
77a18a61aeed "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit 2c29e2fadeba9be11e81420f24e7a6429ef52aa7"
galaxyp
parents: 4
diff changeset
159 <test expect_num_outputs="2">
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
160 <param name="input_file" value="really_small.raw" ftype="thermo.raw"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
161 <conditional name="format_cond">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
162 <param name="output_format" value="2"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
163 </conditional>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
164 <param name="output_metadata_selector" value="1"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
165 <param name="ignore_instrument_errors_boolean" value="true"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
166 <param name="allDetectors" value="true"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
167 <param name="includeExceptionData" value="--includeExceptionData"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
168 <param name="msLevel" value="1"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
169 <output name="output" value="really_small.indexed_mzML" ftype="mzml"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
170 <output name="output_metadata" ftype="txt">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
171 <assert_contents>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
172 <has_text text="Instrument model=[MS, MS:1000494, Thermo Scientific instrument model, Orbitrap Fusion]"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
173 <has_text text="Instrument name=Orbitrap Fusion"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
174 <has_text text="Instrument serial number=[MS, MS:1000529, instrument serial number, FSN10188]"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
175 <has_text text="Software version=[NCIT, NCIT:C111093, Software Version, 3.1.2412.17]"/>
10
b9b385097f13 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 0f6ab8b5647a33b2b051d7aa808ef42546436b23"
galaxyp
parents: 9
diff changeset
176 <has_text text="Mass resolution=[MS, MS:1000011, mass resolution, 0.5]"/>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
177 <has_text text="Number of scans=101"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
178 <has_text text="Scan range=1;101"/>
10
b9b385097f13 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 0f6ab8b5647a33b2b051d7aa808ef42546436b23"
galaxyp
parents: 9
diff changeset
179 <has_text text="Scan start time=0.89"/>
b9b385097f13 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 0f6ab8b5647a33b2b051d7aa808ef42546436b23"
galaxyp
parents: 9
diff changeset
180 <has_text text="Time range=0.89"/>
b9b385097f13 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 0f6ab8b5647a33b2b051d7aa808ef42546436b23"
galaxyp
parents: 9
diff changeset
181 <has_text text="Mass range=120;2000"/>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
182 </assert_contents>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
183 </output>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
184 <assert_command>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
185 <not_has_text text="--mgfPrecursor"></not_has_text>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
186 <has_text text="-e "/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
187 <has_text text="--allDetectors"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
188 <has_text text="--includeExceptionData"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
189 <has_text text="--msLevel=&quot;1&quot;"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
190 </assert_command>
1
15d2a50acaeb planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit a9276f2d097976168059eb91e18cf280ef7a45bb
galaxyp
parents: 0
diff changeset
191 </test>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
192 <!-- parquet test, no metadata
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
193 <test expect_num_outputs="1">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
194 <param name="input_file" value="really_small.raw" ftype="thermo.raw"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
195 <conditional name="format_cond">
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
196 <param name="output_format" value="3"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
197 </conditional>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
198 <output name="output" ftype="parquet" value="really_small.parquet"/>
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
199 </test> -->
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
200 </tests>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
201 <help>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
202 <![CDATA[
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
203
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
204 Thermo RAW file converter based on the great `ThermoRawFileParser <https://github.com/compomics/ThermoRawFileParser>`_ project.
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
205
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
206 ]]>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
207 </help>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
208 <citations>
9
92ac8e086317 "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser commit 9bb883e027809047684fd6c45e9a6f1f3bf69351"
galaxyp
parents: 8
diff changeset
209 <citation type="doi">10.1021/acs.jproteome.9b00328</citation>
0
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
210 </citations>
00c4b28150bd planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawfileParser commit f211dc8467604ef106cc85b4c68aec5707a24c6d
galaxyp
parents:
diff changeset
211 </tool>