annotate recetox_xmsannotator_advanced.xml @ 2:7807fbeb1388 draft

"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
author recetox
date Thu, 12 Aug 2021 11:12:59 +0000
parents 1c70b19b09eb
children 94209fea0a99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
1 <tool id="recetox_xmsannotator_advanced" name="RECETOX xMSannotator advanced" version="@TOOL_VERSION@+galaxy0">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
2 <description>annotate peak intensity table including scores and confidence levels</description>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
3 <macros>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
4 <import>macros.xml</import>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
5 </macros>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
6 <expand macro="requirements" />
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
7
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
8 <command detect_errors="aggressive"><![CDATA[
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
9 Rscript -e "n_workers <- \${GALAXY_SLOTS:-1}" -e "source('${wrapper}')"
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
10 ]]></command>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
11
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
12 <configfiles>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
13 <configfile name="wrapper"><![CDATA[
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
14 library(xmsannotator)
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
15
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
16 annotation <- advanced_annotation(
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
17 #if $peak_table.is_of_type("h5")
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
18 peak_table = load_peak_table_hdf("${peak_table}"),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
19 #elif $peak_table.is_of_type("parquet")
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
20 peak_table = load_peak_table_parquet("${peak_table}"),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
21 #end if
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
22 adduct_table = load_adduct_table_parquet("${adduct_table}"),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
23 compound_table = load_compound_table_parquet("${compound_table}"),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
24 mass_tolerance = 1e-6 * ${mass_tolerance_ppm},
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
25 time_tolerance = $time_tolerance,
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
26 correlation_threshold = as.double($clustering.correlation_threshold),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
27 min_cluster_size = as.integer($clustering.min_cluster_size),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
28 deep_split = as.integer($clustering.deep_split),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
29 network_type = "$clustering.network_type",
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
30 #if $scoring.expected_adducts
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
31 expected_adducts = load_expected_adducts_csv("${scoring.expected_adducts}"),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
32 #end if
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
33 #if $scoring.boost_compounds
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
34 boost_compounds = load_boost_compounds_csv("${scoring.boost_compounds}"),
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
35 #end if
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
36 redundancy_filtering = $scoring.redundancy_filtering,
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
37 n_workers = n_workers
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
38 )
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
39
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
40 save_parquet(data = annotation, file = "${annotation_parquet}")
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
41 ]]></configfile>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
42 </configfiles>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
43
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
44 <inputs>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
45 <expand macro="inputs"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
46 <expand macro="tolerance">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
47 <param name="time_tolerance" type="float" value="10" min="0">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
48 <label>Retention time tolerance [s]</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
49 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
50 Retention time tolerance in seconds for finding peaks derived from the same parent metabolite.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
51 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
52 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
53 </expand>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
54 <section name="clustering" title="Clustering">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
55 <param name="correlation_method" type="select" display="radio" label="Correlation method">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
56 <option value="pearson" selected="true"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
57 <option value="spearman"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
58 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
59 <param name="correlation_threshold" type="float" value="0.7">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
60 <label>Correlation threshold</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
61 <help>Correlation threshold between peaks to qualify as adducts/isotopes of the same metabolite.</help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
62 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
63 <param name="min_cluster_size" type="integer" value="10" min="1">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
64 <label>Minimum cluster size</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
65 <help>The minimum number of nodes to be considered as a cluster.</help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
66 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
67 <param name="deep_split" type="integer" value="2" min="0" max="4">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
68 <label>Deep split</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
69 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
70 Deep split provides a rough control over sensitivity to cluster splitting. The higher the value,
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
71 the more and smaller clusters will be produced (see WGCNA package documentation).
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
72 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
73 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
74 <param name="network_type" type="select" display="radio">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
75 <label>Network type</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
76 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
77 Network type parameter affects how the network's adjacency matrix is created from the correlation
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
78 matrix (see WGCNA package documentation).
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
79 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
80 <option value="signed"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
81 <option value="unsigned" selected="true"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
82 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
83 </section>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
84 <section name="scoring" title="Scoring" expanded="true">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
85 <param name="strict_boosting" type="boolean" checked="true" truevalue="TRUE" falsevalue="FALSE">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
86 <label>Strict boosting</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
87 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
88 Boost the scores of metabolites that not only belongs to the same pathway but also to the same
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
89 cluster. Otherwise, do not account for cluster membership.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
90 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
91 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
92 <param name="expected_adducts" type="data" format="csv" optional="true">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
93 <label>Expected adducts</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
94 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
95 Require the presence of certain adducts for a high confidence match. By default, at least the
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
96 presence of an M+H adduct is required for a high confidence match.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
97 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
98 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
99 <param name="boost_compounds" type="data" format="csv" optional="true">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
100 <label>Validated compounds score boosting (optional)</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
101 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
102 Table of previously validated compounds to boost their scores and confidence levels.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
103 The 1st column of the table must contain IDs of compounds.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
104 The optional 2nd and 3rd columns may contain mz values and retention times.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
105 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
106 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
107 <param name="min_isp" type="integer" min="0" value="1">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
108 <label>Minimum number of expected isotopes</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
109 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
110 Minimum number of adducts/isotopes to be present for a match to be considered as a high confidence match.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
111 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
112 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
113 <param name="max_isp" type="integer" min="0" value="5">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
114 <label>Maximum number of expected isotopes</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
115 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
116 Maximum number of adducts/isotopes to be present for a match to be considered as a high confidence match.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
117 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
118 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
119 <param name="redundancy_filtering" type="boolean" checked="true" truevalue="TRUE" falsevalue="FALSE">
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
120 <label>Redundancy filtering</label>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
121 <help>Whether to filter out low-scored multiple matcher or not.</help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
122 </param>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
123 </section>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
124 </inputs>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
125
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
126 <outputs>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
127 <expand macro="outputs"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
128 </outputs>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
129
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
130 <help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
131 <![CDATA[
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
132 @HELP@
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
133 Then, a score and a confidence level is assigned to each match based on peak correlation
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
134 clustering, metabolite pathway associations, adducts expectations, and isotope conformations.
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
135 ]]>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
136 </help>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
137
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
138 <citations>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
139 <expand macro="citations"/>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
140 </citations>
7807fbeb1388 "planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator commit e547915248546657de13b91f28e5f4488ae8f7e0"
recetox
parents: 1
diff changeset
141 </tool>