|
0
|
1 <?xml version='1.0' encoding='UTF-8'?>
|
|
|
2 <tool id="TextExporter" name="TextExporter" version="1.12.0">
|
|
|
3 <description>Exports various XML formats to a text file.</description>
|
|
|
4 <macros>
|
|
|
5 <token name="@EXECUTABLE@">TextExporter</token>
|
|
|
6 <import>macros.xml</import>
|
|
|
7 </macros>
|
|
|
8 <expand macro="stdio"/>
|
|
|
9 <expand macro="requirements"/>
|
|
|
10 <command>TextExporter
|
|
|
11
|
|
|
12 -in ${param_in}
|
|
|
13 -out ${param_out}
|
|
|
14 -separator ${param_separator}
|
|
|
15 -replacement ${param_replacement}
|
|
|
16 -quoting ${param_quoting}
|
|
|
17 ${param_no_ids}
|
|
|
18 -threads \${GALAXY_SLOTS:-24}
|
|
|
19 ${param_minimal}
|
|
|
20 ${param_proteins_only}
|
|
|
21 ${param_peptides_only}
|
|
|
22 ${param_first_dim_rt}
|
|
|
23 -consensus:centroids ${param_centroids}
|
|
|
24 -consensus:elements ${param_elements}
|
|
|
25 -consensus:features ${param_features}
|
|
|
26 -consensus:sorting_method ${param_sorting_method}
|
|
|
27 ${param_sort_by_maps}
|
|
|
28 ${param_sort_by_size}
|
|
|
29 </command>
|
|
|
30 <inputs>
|
|
|
31 <param name="param_in" type="data" format="featureXML,consensusXML,idXML,mzML" optional="False" label="Input file " help="(-in)"/>
|
|
|
32 <param name="param_separator" type="text" size="20" label="The used separator character(s); if not set the 'tab' character is used" help="(-separator)"/>
|
|
|
33 <param name="param_replacement" type="text" size="20" value="_" label="Used to replace occurrences of the separator in strings before writing, if 'quoting' is 'none'" help="(-replacement)"/>
|
|
|
34 <param name="param_quoting" type="select" optional="True" value="none" label="Method for quoting of strings: 'none' for no quoting, 'double' for quoting with doubling of embedded quotes,#br#'escape' for quoting with backslash-escaping of embedded quotes" help="(-quoting)">
|
|
|
35 <option value="none">none</option>
|
|
|
36 <option value="double">double</option>
|
|
|
37 <option value="escape">escape</option>
|
|
|
38 </param>
|
|
|
39 <param name="param_no_ids" type="boolean" truevalue="-no_ids true" falsevalue="-no_ids false" checked="false" optional="True" label="Supresses output of identification data." help="(-no_ids)"/>
|
|
|
40 <param name="param_minimal" type="boolean" truevalue="-feature:minimal true" falsevalue="-feature:minimal false" checked="false" optional="True" label="Set this flag to write only three attributes: RT, m/z, and intensity." help="(-minimal)"/>
|
|
|
41 <param name="param_proteins_only" type="boolean" truevalue="-id:proteins_only true" falsevalue="-id:proteins_only false" checked="false" optional="True" label="Set this flag if you want only protein information from an idXML file" help="(-proteins_only)"/>
|
|
|
42 <param name="param_peptides_only" type="boolean" truevalue="-id:peptides_only true" falsevalue="-id:peptides_only false" checked="false" optional="True" label="Set this flag if you want only peptide information from an idXML file" help="(-peptides_only)"/>
|
|
|
43 <param name="param_first_dim_rt" type="boolean" truevalue="-id:first_dim_rt true" falsevalue="-id:first_dim_rt false" checked="false" optional="True" label="If this flag is set the first_dim RT of the peptide hits will also be printed (if present)." help="(-first_dim_rt)"/>
|
|
|
44 <param name="param_sorting_method" type="select" optional="True" value="none" label="Sorting options can be combined. The precedence is: sort_by_size, sort_by_maps, sorting_method" help="(-sorting_method)">
|
|
|
45 <option value="none">none</option>
|
|
|
46 <option value="RT">RT</option>
|
|
|
47 <option value="MZ">MZ</option>
|
|
|
48 <option value="RT_then_MZ">RT_then_MZ</option>
|
|
|
49 <option value="intensity">intensity</option>
|
|
|
50 <option value="quality_decreasing">quality_decreasing</option>
|
|
|
51 <option value="quality_increasing">quality_increasing</option>
|
|
|
52 </param>
|
|
|
53 <param name="param_sort_by_maps" type="boolean" truevalue="-consensus:sort_by_maps true" falsevalue="-consensus:sort_by_maps false" checked="false" optional="True" label="Apply a stable sort by the covered maps, lexicographically" help="(-sort_by_maps)"/>
|
|
|
54 <param name="param_sort_by_size" type="boolean" truevalue="-consensus:sort_by_size true" falsevalue="-consensus:sort_by_size false" checked="false" optional="True" label="Apply a stable sort by decreasing size (i.e., the number of elements)" help="(-sort_by_size)"/>
|
|
|
55 </inputs>
|
|
|
56 <outputs>
|
|
|
57 <data name="param_out" label="Output file (mandatory for featureXML and idXML)" format="tabular"/>
|
|
|
58 <data name="param_centroids" label="Output file for centroids of consensus features" format="tabular"/>
|
|
|
59 <data name="param_elements" label="Output file for elements of consensus features" format="tabular"/>
|
|
|
60 <data name="param_features" label="Output file for consensus features and contained elements from all maps (writes 'nan's if elements are missing)" format="tabular"/>
|
|
|
61 </outputs>
|
|
|
62 <help>**What it does**
|
|
|
63
|
|
|
64 Exports various XML formats to a text file.
|
|
|
65
|
|
|
66
|
|
|
67 For more information, visit http://ftp.mi.fu-berlin.de/OpenMS/release-documentation/html/TOPP_TextExporter.html
|
|
|
68
|
|
|
69 @REFERENCES@
|
|
|
70 </help>
|
|
|
71 </tool>
|